Attract-Mode Support Forum
Attract-Mode Support => Scripting => Topic started by: liquid8d on December 07, 2016, 08:56:28 PM
-
I swear you used to be able to update the type of artwork used for an artwork object by just setting file_name. Has this changed? I've tried numerous things including catching FromOldSelection transition and setting it there, but it just seems to look for a file instead of setting the dynamic artwork type.
Any ideas or am I crazy?
-
So the answer is... use get_art in transition:
local snap = fe.add_artwork("snap", 50, 50, 320, 240)
local flyer = fe.add_artwork("snap", 300, 300, 320, 240)
fe.add_transition_callback(this, "on_transition")
function on_transition(ttype, var, ttime) {
if ( ttype == Transition.StartLayout || ttype == Transition.FromOldSelection || ttype == Transition.ToNewList )
flyer.file_name = fe.get_art("flyer", 0)
}