|
Next: audio problem
|
| Author |
Message |
External

Since: Apr 21, 2006 Posts: 6
|
(Msg. 1) Posted: Thu Apr 20, 2006 8:09 pm
Post subject: button issue Archived from groups: macromedia>flash (more info?)
|
|
|
hey all-
i have a simple site with some buttons going to indivisual keyframes using
frame labels.
on (release) {
gotoAndPlay ("framelabelname");
}
when i click the button it does the trick. click the button again and it goes
to the next frame label. ironically it always goes to the next keyframe and
plays whatever content i have in there. clcik the button agaqin and it plays
the correct targetm and so on and on.
any suggestions?
thanks! >> Stay informed about: button issue |
|
| Back to top |
|
 |  |
External

Since: Sep 30, 2005 Posts: 29
|
(Msg. 2) Posted: Thu Apr 20, 2006 8:09 pm
Post subject: Re: button issue [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
> on (release) {
> gotoAndPlay ("framelabelname");
> }
> any suggestions?
>
> thanks!
try it this way (add _root)
It needs that usually when the buttons are inside movieclips but I uses it all the time anyway.
on (release) {
_root.gotoAndPlay ("framelabelname");
}
tralfaz >> Stay informed about: button issue |
|
| Back to top |
|
 |  |
External

Since: Apr 21, 2006 Posts: 6
|
(Msg. 3) Posted: Fri Apr 21, 2006 2:43 pm
Post subject: Re: button issue [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
hey tralfaz-
that didnt seem to improve. if it helps, or makes a difference, i dont have the buttons within any movie clips. i dont even have any mc's in the movie, just buttons and bitmaps. >> Stay informed about: button issue |
|
| Back to top |
|
 |  |
External

Since: Sep 30, 2005 Posts: 29
|
(Msg. 4) Posted: Fri Apr 21, 2006 2:43 pm
Post subject: Re: button issue [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
"makapol" <webforumsuser.TakeThisOut@macromedia.com> wrote in message news:e2ar2p$ph5$1@forums.macromedia.com...
> hey tralfaz-
>
> that didnt seem to improve. if it helps, or makes a difference, i dont have the buttons within any movie clips. i dont even have
> any mc's in the movie, just buttons and bitmaps.
I dunno then. If the frame label matches exactly including capitol letters and the name is valid with no leading number or
punctuation characters and the frame being referenced is in scope (present) it should work. If you post a link to the file someone
can look at it.
tralfaz >> Stay informed about: button issue |
|
| Back to top |
|
 |  |
External

Since: Apr 21, 2006 Posts: 6
|
(Msg. 5) Posted: Fri Apr 21, 2006 7:07 pm
Post subject: Re: button issue [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
|
|
| Back to top |
|
 |  |
External

Since: Apr 21, 2006 Posts: 6
|
(Msg. 6) Posted: Fri Apr 21, 2006 7:08 pm
Post subject: Re: button issue [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
|
|
| Back to top |
|
 |  |
External

Since: Sep 30, 2005 Posts: 29
|
(Msg. 7) Posted: Fri Apr 21, 2006 7:08 pm
Post subject: Re: button issue [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
"makapol" <webforumsuser.TakeThisOut@macromedia.com> wrote in message news:e2bajm$ffo$1@forums.macromedia.com...
> sure thing.
>
> www.chollowaydesign.com/home.htm
>
> bobmelnyk suggested i make the whole left side an image and apply invisible
> buttons over the images. i havn't tried that yet, have to jet off to a wedding.
Everything seems to work. Which part isn't working? Is it the same with different browsers?
tralfaz >> Stay informed about: button issue |
|
| Back to top |
|
 |  |
External

Since: Apr 21, 2006 Posts: 6
|
(Msg. 8) Posted: Sun Apr 23, 2006 1:23 am
Post subject: Re: button issue [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
did you click on the same button twice ina row? when i do that it jumps to the
next keyframe ( i have all the artwork in indivisual keyframes), then when
clicked again it goes back. which platform are you on? im on a mac. i havn't
tred testing on a pc. regardless it nedds to work on both. thanks for help
through this so far! >> Stay informed about: button issue |
|
| Back to top |
|
 |  |
External

Since: Apr 21, 2006 Posts: 6
|
(Msg. 9) Posted: Sun Apr 23, 2006 1:53 am
Post subject: Re: button issue [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
|
|
| Back to top |
|
 |  |
External

Since: Sep 30, 2005 Posts: 29
|
(Msg. 10) Posted: Sun Apr 23, 2006 1:53 am
Post subject: Re: button issue [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
"makapol" <webforumsuser.DeleteThis@macromedia.com> wrote in message news:e2emm7$gc5$1@forums.macromedia.com...
> tralfaz-
>
> i seemed to figure it out. instead of the gotoAndPlay script i changed it to gotoAndStop. for some reason this works.
>
There must be some code on the frame that you are jumping to, but anyway, as long as it works!
tralfaz >> Stay informed about: button issue |
|
| Back to top |
|
 |  |