Link to home
Start Free TrialLog in
Avatar of Changi
Changi

asked on

Problem with editing an effect...

I have 30 frames for an image effect... the picture is spinning and placing in a corner...
When I want to add a new frame with other image (on 31-st frame) the other effect is disappearing.
What have I done wrong.
Avatar of negatyve
negatyve

Could you post your fla?
Avatar of Changi

ASKER

I got nowhere to post it...
if you give me a way to post it ... I will
Avatar of Changi

ASKER

One more thing... about this site ...
What these points represent? Do I have to earn points to put other questions?
Because I couldn't figure out how this site works...
Read here for how this site works: https://www.experts-exchange.com/help/

To post you fla, use a free webspace provider...
Avatar of Changi

ASKER

I have resolved this problem...
But now I have another one :)
In a window I have 16 images representing 16 buttons themselves ... I want that every image of them to increase its area until it fills the entire window, this must be done when I click the specific one. But when I am exporting the fla into a swf, the things are happening like this... all the images are increasing their areas one by one.
How can I stop the first frame until I press the click button on the specific image?
Write on the first frame of every movieclip:

this.stop();

or assign to each one:

onClipEvent(load){
        this.stop();
}
Avatar of Changi

ASKER

OK, this works fine... but this is not what I intentended to do.
This is what I really want:
1. when I click the first image... the movieclip from the scene 2 starts, after the movieclip is finished...the screen will stop on the last image of the movieclip, when I click again ... it will appear again the first window with those 16 choices (16 images-buttons)...
2. when I click the second image... the moviecliip from the scene 3 starts... and so on...
Avatar of Changi

ASKER

Check this out:
I assigned this script to every image-button :

on(press){
gotoAndPlay("Scene x", frame_number);
}

and at the first frame of every movieclip I have written

this.stop();

as you said...
But no clip does want to start.
Avatar of Changi

ASKER

I have found a solution...
I have deleted the
this.stop();
from every movieclip and I have written in the beggining of the Scene 1, frame 1
gotoAndStop("Scene 1", 1);
and now the buttons are starting the movieclips that I want...
but I don't know how can I return, after a movieclip ends, to the scene 1 , frame 1 (after waiting a click).

Avatar of Changi

ASKER

Thank you
I figured out by my self...
Avatar of Changi

ASKER

Maybe you can give me another tip :-)
Is there an option or something to make an image to turn like a real book page.
ASKER CERTIFIED SOLUTION
Avatar of negatyve
negatyve

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Changi

ASKER

Thanks a lot.