Ask a Question related to Macromedia Director Lingo, Design and Development.
-
Jason Hunter #1
changing text foreColor through Lingo
Ideally using a "on mouseOver me" command.
This is what I've got so far with no results:
on mouseOver me
sprite(5).forecolor = #FFFFFF
end
What am I missing? Thanks
-jasonhunter-
Jason Hunter Guest
-
Changing text without changing frames.
I have a small flash movie that is basically a color chooser. Rather than changing the color of an item by putting the color in a frame I change... -
Lingo checking cuepoints, changing members
If I'm reading this correctly, you want to have a sprite display a member based on where the play head is in a digital video file. If that's what... -
changing a text members text content with lingo
Is there a way of setting the content of a text member through lingo, specifying where there should be Carriage Return. I have a director movie... -
prepare new forecolor
Hey there, I am attempting to setup a small animation as part of a much larger interactive, but I have run into a problem involving assigning... -
Changing the Font of a text char w/ lingo
change Wingding to Wingdings missing s is causing problems otherwise your just fine ;) hope this helps gabriel -
Rob Dillon #2
Re: changing text foreColor through Lingo
Hi Jason,
If this is a text member's sprite then:
on mouseEnter me
sprite(5).member.foreColor = #FFFFFF
end
if this is a field member's sprite then:
on mouseEnter me
the foreColor of the member of sprite 5 = #FFFFFF
end
FIrst, there is no built in mouseOver function. So if you are in fact
trying to use a function called mouseOver, you'll need to define it.
Each sprite carries a foreColor and a backColor property. These
properties hold values based on the current color depth of the frame in
use. Text and field members also use foreColor and backColor
properties. These member properties are used to set the color for the
text and the background of that member. While each charactor in a field
or text member may have a unique foreColor, the whole member can have
only one backColor.
--
Rob
_______
Rob Dillon
Team Macromedia
[url]http://www.ddg-designs.com[/url]
412-243-9119
[url]http://www.macromedia.com/software/trial/[/url]
Rob Dillon Guest



Reply With Quote

