ActionScript 3.0 :: 'if' Condition To Work Out If A Certain Button Has Been Selected
Sep 11, 2009
I've got a simple flash website with two buttons and I want them to link to two different URLs. Is there a way I can use the same for function to handle the hyperlinks. For instance...
[Code]...
What would I put in the 'if' condition? At the moment I've got 2 separate functions for each button hyperlink...just seems like a bit of a long winded way of doing it.
View 3 Replies
Similar Posts:
Feb 10, 2012
I have a button on which an effect will play (_root.loc.gotoAndPlay part) but i only want this to happen once (the first time you roll or dragover the button)So i thought i'd do this by making a variable on the root (the lettlook variable, which by default is "no") and then on the rollover, dragover first play the loc movieclip and then set the variable to "yes" (so it'll never trigger again after the first time)so this is the script i made
Code:
on (rollOver, dragOver) {
if (_root.lettlook == "no") {
_root.loc.gotoAndPlay(2);
[code]....
Problem is, of course, that it doesn't work. It doesn't play the loc movieclip and it doesn't change the lettlook variable to yes.
View 2 Replies
May 19, 2010
I have a menu with many sub menus. I need to change the color of the selected button and then move on to the sub menu. My menu is horizontal and now it's not obvious the path that you follow.
View 2 Replies
Mar 16, 2009
i want to put a condition on the button event on (release) to check which frame of the movie symbol is stopped. something like if(frame 3 is stoped) gotoAndPlay(14).
View 3 Replies
Nov 18, 2009
I created some movieclip buttons, set a statement to disable it, but I can't enable them again when another button is selected how can i resolve this?
[Code]....
View 1 Replies
Oct 19, 2009
I curenttly making a simple online portfolio using flash (as3). Each piece of work i'm displaying resides within a mc on the main time line, and within that each piece of my work lives in its own keyframe, so the site has a basic 'mc.gotoandstop("label")' navigation. I can get my images to fade in using a AS tween, but I want to get the previous image/piece of work to fade out before jumping to the selected key frame and fading in the selected work. Currently, the innards of my button function reads something like:
tween (fadeout)
gotoandstop
tween (fade in)
but this clearly not the right way to go about it? Is there a way of putting slight delay after the fade out tween in the function? To let it fully fade out before fading in the new work?
View 3 Replies
Sep 12, 2009
I have a BD return by PHP without problem : I have "all_good" and "no_good" If the variable change my condition don't change ..... why
[Code]....
View 3 Replies
Nov 21, 2009
I have buttons with black text. The buttons (not the text) change colour to red when you rollover them. I can't seem to work out how to get the colour to stay red when it's clicked to show that it's selected. Do I make a duplicate symbol which is already red to replace it when clicked? And I'm also unsure of the actions I'm supposed to use if any??Another thing, when I click on a different button, I don't want the previous button to still be selected.
View 1 Replies
Dec 10, 2008
I am trying to build my first website and I follow the instructions of a videotutorial of flash 8. But in the second step (Making it work the buttons) when I had tried to add action to my selected button, appear a message like this....Cannot add actions to this selection (translated from spanish) Why?...Is a conflict between versions 8 and CS3?
View 5 Replies
Aug 9, 2010
I placed 2 radio buttons - each of them has groupName = rg1. And when I write[code]...
View 1 Replies
Oct 13, 2011
Is it possible to change button state from AS3?
View 3 Replies
May 24, 2011
I'm doing a simple 2 button menu. Each button is a movie clip with 3 labels for the states "none" "selected" and "hover". smartBtn needs to be set to "selected" on enter frame. When cinemaBtn gets clicked, smartBtn should go to its "none" state. But I'm not sure why smartBtn keeps on being selected.
import flash.display.MovieClip;
import flash.events.Event;
import flash.events.MouseEvent;[code].............
View 1 Replies
Oct 1, 2009
I have a menu consist of many button and it have a rollover state of being colored and highlighted i want any button i selct to keep highlighted as it slected and when another button be selected the new one become highlighted here is thew cide i have and that' doesn't work.[code]...
View 1 Replies
Aug 14, 2006
I will try to explain my problem (I'm swedish...); If you look at the fla posted here and the trace information in the output panel when published, you see what the button is called. What I need is a way to use this info to create a code that makes the button blacked when clicked on and back to grey when some other btn is clicked.
View 4 Replies
Jul 12, 2007
how to get my magic buttons to stay 'selected' or highlighted until the next button is clicked. The highlighted state is 'released' (weird - but that's the case)
I've done an all-nighter & and am having a mind-blank.
Code:
myButton.onRelease = onClick;
myButton.onRollOver = overOut;
myButton.onRollOut = overOut;
[Code].....
View 1 Replies
Sep 22, 2010
I know how to select radio button, but hte question is - how to check if this radio has been selected?[code]...
View 5 Replies
Jan 13, 2010
I have a very simple DataGrid with 2 columns, some thing like this[code]...
What Im trying to do is to activate the edition of the selected row when the user clicks a button. So far I've been unable to find any example of how to do this. I already tried 6 or 7 different approaches but non works.
How do you get the selected row (NOT selectedItem) of a DataGrid and how can you:
Change the ItemRenderEditor or ItemRenderer on the fly of just that row.
Or enable the edition of that specific row without clicking it.
View 1 Replies
Apr 27, 2011
I have 3 buttons(say b1,b2,b3) in my app which are under the controlbaron clicking those buttons it will open new view(components)suppose if button b1 is clicked it should highlight the button b1(bg color change).how to go about this sorry if it is noob question as am new to this
View 3 Replies
Aug 5, 2011
I have a script from a template I purchased that I need to edit.I have buttons that I want to stay active (ie, they still link back to the same page) once it's selected.Right now, when that button is the main button, it has no link attached to it.The portion of the script that I'm referring to is
onClipEvent (load) {
num = 2;
}[code]..............
View 3 Replies
Feb 10, 2009
So.. all I want to do is to have a toggle button which changes label color to #999999 when selected. But for some reason i cant get it to work
This is my code for the button:
Code:
package components.main_content.submenu.submenu_link
{
import components.NoTruncationUITextField;
[Code]....
I tried assigning it with CSS (text-selected-color) and failed, i tried putting <mx:SetProperty target="{textField}" name="textColor" value="0x999999" /> in my skin class in all "selected" states but it worked only when run (one of the buttons starts as selected).. as soon as i ran my mouse over it or clicked another button it reverted back to the original color.
View 1 Replies
Nov 6, 2009
Is there any way to disable a few columns for a particular row in flex datagrid?
I have a datagrid with about 10 or more columns, say for example a few column names are: Item Id, Item Name, Item Status and VerifiedState. Initially I want the column Verified State to be disabled.
Now When the value of the column, Item Status is Review Passed for a particular row, I want the column VerifiedState to be enabled and editable. Is that possible in Flex datagrid.
View 2 Replies
Nov 19, 2009
I have several groups of radio button. And I want to track which radio button on each group was selected, and I will get the data and pass it to a loadVariablesNum function.
View 10 Replies
Nov 13, 2009
I was able to set the text color of a selected LinkBar button by "disabledColor" style of LinkBar.Accordingly, I expect to set the background color of the selected button by "backgroundDisabledColor" style, however, it didn't work; and except "backgroundDisabledColor", I didn't see any other style that could possibly achieve this.
View 3 Replies
Nov 5, 2011
I have a Spark ButtonBar and I got it hooked up correctly with a ViewStack. Currently, when I run the application (AIR), the first button in the ButtonBar is selected by default. How can I make the second button selected by default?
<mx:ViewStack id="viewStack">
<s:NavigatorContent id="Page 1">
<!-- Other stuff in here -->[code]............
View 2 Replies
Feb 27, 2012
I can't retrieve an equivalent to selected button on spark .
A bit of code:
_selectedBtn.selected=false;
View 2 Replies
Jun 11, 2009
Well, title explains all. I'm trying to get rid of the highlight that comes around of the selected button in a ToggleButtonBar
View 2 Replies
Oct 7, 2009
I'm working on a multiple choice question. Giving hints for each possible answer. So far, I've been able to do that on all but the selected radio button. For some reason, once I select it, the rollOver state no longer applies. Does anyone know of another way to turn on a function when a selected radiobutton is rolled over? By the way, I'm using AS2.
View 0 Replies
May 21, 2009
Its an image gallery and I want to trace the id of the photo. I can do this fine when the photo is selected, but I also want to be able to click a button and have it trace which photo is selected. When I try it always says 9 which is the last one, no matter which photo I pick.
[Code]....
View 2 Replies
Apr 26, 2010
I have an ordinary button and I have a little movie of an axe crashing down on the button when it is released. Once released what I want it to do is FINISH the axe chopping down THEN start the specified scene. the problem? the movie of the axe doesn't complete before the selected scene starts.
[Code]....
View 13 Replies
Feb 13, 2012
I've got a relatively simple problem with controlling the appearance of a radio button after it's selected. I'm using Flash CS5.5 and AS2. I've got a radio button set up as a two-frame mc, the first frame labeled "on", the second "off". When put on the stage with this code on it, it functions properly:
onClipEvent (load) {
answer = false;
}
Whenever I add additional code to the radio button mc (in this instance, telling an invisible mc in the same frame to gotoAndStop (2)), the radio button stops changing appearance. I've been using the syntax
on (press) {
tellTarget ("_root.OtherMC.OtherMC_2") {
gotoAndStop (2);
View 7 Replies