|
User Details |
message
|
|
Steve
post date:
2007-07-10 15:46:24
|
|
I can't seem to figure out how to go directly to a new web page after the FX movie. Usually I would place an action script code on the time line to execute this action. How would I do this within Movie FX?
|
|
|
Catalin Serban [Extend Studio]
post date:
2007-07-11 10:17:54
|
Hello,
In order to trigger an action after an animation with Creative MovieFX you should use the event on EffectFinished?. More about how to use Creative MovieFX with AS can be found in the Flash HELP Panel under the Creative MovieFX book.
Sample:
I have created a movieclip directy on the stage and applied an effect using MovieFX. I have named the component instance "my_effect" and I have added the following code on the first frame from the time line (not on the component instance):
my_effect.onEffectFinished = function() {
trace('effect finished!');
}
Here is the FLA file that I have worked on. http://www.extendstudio.com/demo/moviefx_event_test.fla
If you have any other questions, please feel free to reply to this post
Best regards,
Catalin Serban
|
|
|
Steve
post date:
2007-07-11 11:49:43
|
|
I still can't get the movie to go to another page. Basically I am Using Movie FX to create a intro to a website. After the intro is finished I would like the page of the site to open in its place. I have copy FX and Movie FX on different layers to keep things organized. If needed I can send the Flash file.
|
|
|
Catalin Serban [Extend Studio]
post date:
2007-07-12 05:50:32
|
You can send the .FLA file at support ( @ ) extendstudio (.) com
Best Regards,
Catalin Serban
|
|
|
Steve
post date:
2007-07-12 10:52:09
|
|
|
Catalin Serban [Extend Studio]
post date:
2007-07-13 07:53:53
|
Problem solved, I sent you an email with the file attached.
Kind Regards,
Catalin Serban
|
|
|
Steve
post date:
2007-07-13 09:50:56
|
Received the file. Thanks. More simple of a solution than I thought. Thanks Again.
Steve
|
|
|
Greg Fry
post date:
2007-08-07 19:07:59
|
Wait - what was the simple solution? I would like to do the same thing. (no .fla file to send yet)
Please share - thanks!
|
|
|
Catalin Serban [Extend Studio]
post date:
2007-08-10 02:16:51
|
If you want to trigger an action at the end of an effect you should use the event onEffectFinished?, when you are using AnimateIn effects (Start), or the event onReverseFinished? when you are using AnimateOut effects (Reverse). More can be found in the Flash HELP Panel under the Creative MovieFX book.
Sample:
I have created a movieclip directly on the stage and applied an effect using MovieFX. I have named the component instance "my_effect" and I have added the following code on the first frame from the time line (not on the component instance):
my_effect.onEffectFinished = function() {
getURL("http://www.extendstudio.com ","_self")
}
If the effect is reversing you can use:
my_effect. onReverseFinished = function() {
getURL("http://www.extendstudio.com ","_self")
}
Best regards,
Catalin Serban
|
|