Ask a Question related to Macromedia Director Lingo, Design and Development.
-
Justawceend #1
Fade in Fade out text
Is there an easy way to create a scripting to let a script fade in and out?
thx in advance
brian
Im dutch isnt that great!
Justawceend Guest
-
Image Fade! - doesnt want to fade!
Hi all, Hope someone can help me. I have found a piece of code from Codelifter.com (http://www.codelifter.com/main/javas...lideshow2.html)... -
How do I fade text in and out of movies?
That textfield "_alpha" property doesnt seem to work.. Anyone have some ideas. -
button: fade in/fade out
below are the actions i've been using to do a button fade in/fade out. action on frame 1: McName.onEnterFrame = function() { if (fade) {... -
fade dynamic text
hi i load a text from a xml file into flash and i would like to use transparancy on it. is there a way? i thought about embedding all characters... -
Fade out - fade in ....between pages
Hi, I just came across this and need help with something similar. I have four links to each section of my site (about us, portfolio, services,... -
distopiangirl webforumsuser@macromedia.com #2
Re: Fade in Fade out text
hi, i got the following info from a helpful tutorial. hope it helps you too!
Transitions, like tempos, palettes, sounds, and behaviors, have a channel set aside for them in the Score.
A transition always takes place between the end of the current frame and the beginning of the frame where the transition is set. If you want to create a dissolve between two scenes, set the transition in the first frame of the second scene, not in the last frame of the first scene.
To add a transition:
1
In the transition channel, select the frame in which you want the transition to occur.
2
Choose Modify > Frame > Transition or double-click the frame in the transition channel.
3
In the Frame Properties Transition dialog box, choose a category if desired, then select the transition you want. You can quickly scroll through transitions by typing the first letter of the transition's name.
Many transitions have default settings for Duration and Smoothness. You can adjust the sliders to change the settings.
For many transitions, you can also select whether the transition affects the entire Stage or just the area that's changing.
Xtra transitions may offer additional options provided by the developer. If the Options button is available when you choose an Xtra transition, click it to view and change the transition options.
4
Click OK.
Director displays the cast member number that corresponds to the transition in the transition channel. The transition also appears in the cast.
-heather
distopiangirl webforumsuser@macromedia.com Guest
-
Justawceend #3
Re: Fade in Fade out text
Well this isn`t exactly what i had in mind, cus you have to use multiple frames and id like to stay in one frame and let the Text fade in and out, by using some sort of blend script?
Im dutch isnt that great!
Justawceend Guest
-
James #4
Re: Fade in Fade out text
Here's something that might help. I wrote it as a simple rollover. I have my
text already set at 40% blend. When the mouse rolls over the text it blends
up to 100%. You should be able to change it to do whatever you need.
property speed
property _startBlend
on mouseEnter me
_startBlend = sprite(me.spriteNum).blend
repeat with i= _startBlend to 100
delay speed
sprite(5).blend = i
updatestage
end repeat
end mouseEnter
on mouseLeave me
repeat with i= 100 down to _startBlend
delay speed
sprite(5).blend = i
updatestage
end repeat
end mouseLeave
on getPropertyDescriptionList me
props=[]
props[#speed] = [#comment "How fast", #format #integer, #default 4, #range
[#min"1", #max"50"]]
return props
end getPropertyDescriptionList
"Justawceend" <justastranger@hotmail.com> wrote in message
news:bh804h$er0$1@forums.macromedia.com...out?> Is there an easy way to create a scripting to let a script fade in and> thx in advance
>
> brian
>
> Im dutch isnt that great!
James Guest
-
James #5
Re: Fade in Fade out text
Ooops, I left a bug in there. Where it says sprite(5) it should read
sprite(me.spriteNum)
Sorry 'bout that.
"James" <galej@xtra.co.nz> wrote in message
news:bh90v4$fj7$1@forums.macromedia.com...my> Here's something that might help. I wrote it as a simple rollover. I haveblends> text already set at 40% blend. When the mouse rolls over the text it> up to 100%. You should be able to change it to do whatever you need.
>
> property speed
>
> property _startBlend
>
>
>
> on mouseEnter me
>
>
> _startBlend = sprite(me.spriteNum).blend
>
> repeat with i= _startBlend to 100
>
> delay speed
>
> sprite(5).blend = i
>
> updatestage
>
> end repeat
>
>
> end mouseEnter
>
>
>
>
>
> on mouseLeave me
>
>
> repeat with i= 100 down to _startBlend
>
> delay speed
>
> sprite(5).blend = i
>
> updatestage
>
> end repeat
>
>
> end mouseLeave
>
> on getPropertyDescriptionList me
>
>
> props=[]
>
>
> props[#speed] = [#comment "How fast", #format #integer, #default 4, #range
> [#min"1", #max"50"]]
>
> return props
>
>
> end getPropertyDescriptionList
>
>
>
> "Justawceend" <justastranger@hotmail.com> wrote in message
> news:bh804h$er0$1@forums.macromedia.com...> out?> > Is there an easy way to create a scripting to let a script fade in and>> > thx in advance
> >
> > brian
> >
> > Im dutch isnt that great!
>
James Guest



Reply With Quote

