Ask a Question related to Macromedia Director Lingo, Design and Development.
-
Lutz Westermann #1
sprite with lingo into score
i want to create a text member an put it into a sprite to display it onto the stage. the script that i wrote makes a member in the castlib but dont put it into the score. please help if you can.
on preparemovie me
welt=new(#text)
welt.name="text"
s=sprite(1)
s.locH=160
s.locV=120
s.member=member("3D") -- <<< this step does not work <<<
end
thanks a lot
Lutz Westermann Guest
-
Unlock sprite through Lingo?
I could not find any way to do it, I searched the dirapi.dll for anything with lock, but nothing worked in lingo. Perhaps write an xtra that could... -
Create a sprite w/lingo?
I am experienced Flash user (since it was FutureSplash) and now developing with Director (just a day or so). I have been able to create complex... -
Sprite Colour in Score
Hi, I want to script the colour of sprites in the score. What I'm talking about is not the colour of sprites on the stage, but rather in the... -
how to find a member in score by lingo
just like the menu function-->find in score? -
Manipulate an sprite in the score?
with score recording it is possible to reconstruct the sprite on a new channel, but I don't recall a move channel function. to temporarily change... -
Arturo Toledo #2
Re: sprite with lingo into score
s.member=member("3D") -- <<< this step does not work <<<
I thought you named your new Member as "text"...
welt.name="text"
So... you should use the same name... not 3D....
you can also refer to that member with your variable welt or by a member number...
Another thing is...
You NEED an existent sprite in channel number one for this script to work. Remember that it is not the same SPRITE and SPRITE CHANNEL.... so will need to place a sprite in channel 1... u can place 1 x 1 pixel or u can place that sprite out of stage so it will look like you are "creating" it...
Let us know how is it going on...
Arturo
___________________________
Arturo Toledo
Milton Frank Studios!
044 (55) 5432 1833
MSN : [email]toledoarch@hotmail.com[/email]
[url]www.miltonfrank.tv[/url]
"Lutz Westermann" <lutz@kisd.de> escribió en el mensaje news:bqm098$5v3$1@forums.macromedia.com...
i want to create a text member an put it into a sprite to display it onto the stage. the script that i wrote makes a member in the castlib but dont put it into the score. please help if you can.
on preparemovie me
welt=new(#text)
welt.name="text"
s=sprite(1)
s.locH=160
s.locV=120
s.member=member("3D") -- <<< this step does not work <<<
end
thanks a lot
Arturo Toledo Guest



Reply With Quote

