[Flashcoders] buttons not able to control movieclip's timeline

2009-08-13 Thread Isaac Alves
i have 2 buttons (prev and next) that should control the timeline of a moviclip called container but it just doesn't work. at first it moves to the second frame on this movieclip then the container shows always the same content ( it has different content for each frame), the content of the

Re: [Flashcoders] buttons not able to control movieclip's timeline

2009-08-13 Thread Jer Brand
Should if (e.target.name == btn_next) be if (e.currentTarget.name http://e.target.name/ == btn_next) It's just a guess as I can't see the fla. Jer On Thu, Aug 13, 2009 at 9:15 AM, Isaac Alves isaacal...@gmail.com wrote: if (e.target.name == btn_next)

RE: [Flashcoders] buttons not able to control movieclip's timeline

2009-08-13 Thread Keith Reinfeld
-Original Message- From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Isaac Alves Sent: Thursday, August 13, 2009 9:16 AM To: flashcoders@chattyfig.figleaf.com Subject: [Flashcoders] buttons not able to control movieclip's timeline i have 2

Re: [Flashcoders] buttons lined up next to each other- rollout not work

2008-01-16 Thread Andy Herrman
}); Tweener.addTween(target,{_alpha:0, delay:0, time:2}); }; } Date: Tue, 15 Jan 2008 21:32:41 -0800 To: flashcoders@chattyfig.figleaf.com From: [EMAIL PROTECTED] Subject: Re: [Flashcoders] buttons lined up next to each other- rollout not work No such problem

[Flashcoders] buttons lined up next to each other- rollout not work

2008-01-15 Thread Dwayne Neckles
This is probably a classic issue.. I have 5 buttons lined up next to each with no space between but they arent overlapping. I have rollover and rollout events.. but the rollout event doesnt work when i roll over to the next button.. the onrollout event works only when i rollout on to

Re: [Flashcoders] buttons lined up next to each other- rollout not work

2008-01-15 Thread Marc Hoffman
No such problem here with either adjacent or overlapping buttons. Please post your code. Here's mine for four buttons named btn1, btn2, etc.: for (i = 1; i 5; i++) { this[btn + i].onRollOut = function() { trace(this._name); }; } Marc At 09:06 PM 1/15/2008, you

RE: [Flashcoders] buttons lined up next to each other- rollout not work

2008-01-15 Thread Dwayne Neckles
, delay:0, time:1}); Tweener.addTween(target,{_alpha:0, delay:0, time:2}); }; } Date: Tue, 15 Jan 2008 21:32:41 -0800 To: flashcoders@chattyfig.figleaf.com From: [EMAIL PROTECTED] Subject: Re: [Flashcoders] buttons lined up next to each other- rollout not work

[Flashcoders] buttons not active on mac

2006-10-26 Thread Trevor Burton
I have a site at http://venues.or-media.com http://venues.or-media.com/ that doesn't work on a mac, you're supposed to be able to click on one those logos and the site loads the relevant xml document to build itself. You can drill straight to the main site by going to

Re: [Flashcoders] buttons not active on mac

2006-10-26 Thread Éric Thibault
On my PC (FireFox) I have two errors... maybe a symptome... it's a long shot! Erreur : invalid flag after regular expression Fichier source : http://venues.or-media.com/?venue=savoy Ligne : 45, Colonne : 10 Code source : bNotice/b: Undefined variable: currVenue in

[Flashcoders] Buttons

2006-02-09 Thread CARABUS plus
Good morning, There is two buttons on the same level wich launch a function : btn2.onRelease=btn1.onRelease =function () { play (); }; I put a button at the level40 and it doesnt work, do you ssee why ? _level40.btn2.onRelease=btn1.onRelease =function () { play (); }; Thank you

Re: [Flashcoders] Buttons

2006-02-09 Thread Danny Kodicek
Good morning, There is two buttons on the same level wich launch a function : btn2.onRelease=btn1.onRelease =function () { play (); }; I put a button at the level40 and it doesnt work, do you ssee why ? _level40.btn2.onRelease=btn1.onRelease =function () { play (); }; I'd imagine that