this is my result...
i'd like to have my page in the following way:
when i push the button on the right side, there will appear the sedcardinformation, or my gallery...
on (release) {
page.gotoAndStop('nameOfKeyFrameInPageMovieClip');
}
so first line - is easy. second line makes that MC page goes to specified kay rame and stops.
In each frame with text in page MC add action 'stop move' (press F8 to open actions dialog).
change text as you wish. Hope that will help.
P.S. next time attach archive with all graphics :] and i like your page. Its simply and elegant. I like pages like yours :]
Last edited by ant_Z; 08-19-2006 at 08:24 AM.
Reason: Ive forgot to attach file :)
just edit this like a normal movie.
you can add photos using Contentpane or Slideshow for example. if you want to add thumbnails, just make them, insert into MC, convert to button, add action get URL on _blank with target http://www.mroofka-z.yoyo.pl/2.jpg for example - this will open large image in new window.
MC is a shortcut from Movie Clip (eg. Media Clip).
It works, but youre trying to make black text on black background.
Ive added some effects to your file - just to show you. Feel free to delete them Try CTRL + A -> this will select all objects, even these not visible. To change color use "flood fill" button (it looks like a bucket) :]
2. The buttons are sending the page clip to frame names that do not exist. Instead of stopping the page clip on frame 1 I added a frame so you can stop it on frame 2 (notice the error reminder that pops up if you put a stop command on frame one when you do it. Although you can...sometimes flashplayer ignores frame 1 stops so that is why it is recommended to not do it. Always start on frame 2 if possible). Then I named the succeeding frames to match your button actions:
3. You had no stop commands on the frames inside the "page" clip. Although you tell the clip to stop with gotoAndStop, you should still hard code a stop for each frame in the actual clip.
You're getting the hang of....here is the problem in this one.
You have the impressium button sending the _root.page.imp clip to the frame named "IMPRESSUM"
but you forgot to name that frame in the imp clip. To name a frame you can do it a few ways...I do it this way.....highlight that frame in the top (the very top where it shows the frame numbers...10...20...etc) of the timeline of the imp clip and right click....then choose "rename":
Then type in the name you want (in this case IMPRESSUM):
Hit OK...back your way of the clip nest to the main timeline and test
No sweat! In earlier versions of Koolmoves we had trouble targeting frame numbers but Bob has since fixed that (correct me if I'm wrong Bob) so you can just target the number and not have to waste time naming frames if you don't want.....
on(press){
_root.page.imp.gotoAndStop(3);
}
Frame names have their uses so both ways have merit but the numbered value is quicker since you don't have to name anything
the numbered value is quicker since you don't have to name anything
quicker? huh.. add a frame somewhere in the middle and tell me it quicker! when i get KM i didnt know about naming frames and i always used numbers... and i wont ever use them again...
Lets say I want to stagger step down a ten frame clip with an individual pic in each like I do in one of my opensource files. For instance stop on a frame based on a rank number....an integer that is read in at runtime. You think I want to name 9 frames and then have a hellacious "for" loop?....lol
Numbered frames and named frames BOTH exist for a reason dude. You code how you like...I'll do the same
Last edited by Chris_Seahorn; 08-21-2006 at 05:49 PM.