Posted by Gaden 208.236.224.57 using Mozilla/4.0 (compatible; MSIE 4.01; Windows 98) on April 05, 2000 at 14:38:34:
In Reply to: Re: How can I create tile animation for a board ? posted by Martin on April 05, 2000 at 14:29:45:
: First, create an item (with no graphics) called for example "none.itm" then Set it on the board
: In the "item properties" you choose a "MultiTask program" to lauch, like this:
: :loop
: #Put("tilered.gph",10,5)
: #Delay(1)
: #Put("tileblue.gph",10,5)
: #Delay(1)
: #Put("tilegreen.gph",10,5)
: #Delay(1)
: #Put("tileyellow.gph",10,5)
: #Branch(:loop)
: You can edit this as you wish...
: For a disco floor, try like this i.e.:
: :loop
: #Random(19,tilx!)
: #Random(11,tily!)
: #Put("tilered.gph",tilx!,tily!)
: #Random(19,tilx!)
: #Random(11,tily!)
: #Put("tileblue.gph",tilx!,tily!)
: #Random(19,tilx!)
: #Random(11,tily!)
: #Put("tilegreen.gph",tilx!,tily!)
: #Random(19,tilx!)
: #Random(11,tily!)
: #Put("tileyellow.gph",tilx!,tily!)
: #Branch(:loop)
:
: But I'm sure there's many other ways...Just try and have fun!
: -Martin