The "Freeola Customer Forum" forum, which includes Retro Game Reviews, has been archived and is now read-only. You cannot post here or create a new thread or review on this forum.
anyway, i've made all the pages, but......how do I make it in one movie clip???? I want to be able to use it offline if you know what I mean, so i can click on a button and it takes the user to another page????
can someone tell me how to fade an image? with text i've chosen the hard way and made seperate frames with the text changing colour (which i did manually) there must be an easier way i'm sure, but with images, how do I fade them without using another software program and saving the faded images, um, ok? thanks.
[email protected]
Send me your .fla file, and I'll have a look for you.
i've done all that, I tried:
on(press)
goandplay
but it's a three stage button, so I tried: on(release) too
I put stop(); all around the script, but yet again it didn't stop, well, it did, but on the last frame.
so far, i've got:
frame1:
buttons, music, background images, text...etc
frame2:
some text
TEST MOVIE:
all I get is the music and the second frame text, I don't see anything from the first frame.
I also get this when debugging: Scene=Scene 1, Layer=button-home, Frame=1: Line 1: Statement must appear within on handler stop();
not surpringly I have no idea what it means, but thanks for your help.
Put this command at the very bottom of your actionscript on each frame you would like it to stop;
stop();
It was really that easy :D
Put all the seperate pages into different frames, any gap between them or whatever, then simply make buttons on each page which link to the other frames. The syntax you need is.....
on (Press) {
gotoAndPlay(2);
}
The 2 in the above syntax can be changed to any frame number required. Obviously you would need to put this onto every button...........
all the frames and layers are linked together, with blank keyframes, so when I test it, it's played like a movie, therefore not giving me enough time to click on the button, I would slow it down but that ruins the animations...etc
:D
It shouldn't be difficult to create a new layer, then copy and paste the only frames you need into that layer. For the buttons and banner, make sure that the frames go right to the end of the whole movie so that you see them all the time, but your actual "pages" should be in the middle of the movie.
Does that make sense?