Embedding videos, audios and blog entries etc
Using Jamroom
The jrCore_list is the main way of getting item data in Jamroom templates, so that is the best way to do it. In this instance though you could get all three Action items in one jrCore_list call, but you would first need to assertain the _item_id of each action item. If they were x, y and z the single call would be -
{jrCore_list module="jrAction" search="_item_id IN x, y, z"}
Then in the list template you'd need to loop round the $_items array to show all three.
This would be a more effecient way of doing it.
Hope that helps