ActionScript 2.0 :: Trace A Radio Button Component Whether Its Set To True Or False?
Sep 6, 2005How do i trace a radio button component whether its set to true or false?
View 1 RepliesHow do i trace a radio button component whether its set to true or false?
View 1 RepliesSelectedcolor, true to the text true or false is false text into print.colorPicker component in, I select Export to a selected color, the color value myMC texte into summer, but accuracy can not control.
var myColorPicker:ColorPicker = new ColorPicker();myColorPicker.editable = false;myColorPicker.visible = false;myMC.visible= false;myColorPicker.addEventListener(MouseEvent.CLICK, clickHandler);myColorPicker.addEventListener(ColorPickerEvent.CHANGE, changeHandler);[code].........
Basically what i have is three buttons which can be pressed in a maximum of 7 different combinations. Each of these buttons has a movieclip underneath that advances to the next frame when the button is pressed. Each clip has two frames with actions, frame 1 has:
stop();
var option1:Boolean = false;
and then frame 2 has:
stop();
var option1:Boolean = true;
So when you press a button you have true, and false when the button is pushed again.
i already have a constant loop between frames 2 and 4. At frame 4 i think i need to have some code that detects which state the 3 boolean statements are in and then load a movie depending on which statements are true and which are false.
on frame 1 I've got 10 movieclips and each movieclip has a toggle button to make it visible true and false.
How do write the script to do the following on frame 10?
if only 1 movieclip is visible make one_mc visible true
if only 2 movieclips are visible make two_mc visible true
if only 3 movieclips are visible make three_mc visible true
... so on for all 10 hope this make sense.
How do I alternate a true/false state of a button, each time it is clicked?
View 1 RepliesI am making a quiz. When the user submits the wrong answer, I want to show them what the correct one was. I can get the correct selected data, but my data is A,B,C,D etc. which is why I need the label.
View 2 RepliesI'm trying to use the radio button component but I don't want to use the Library.Is there a way to import in the radio button using just AS3?
View 2 RepliesI have a pretty large quiz/survey with 60 questions (4 questions per page and 15 pages) and I get a deselection bug come up at pages 5, 10, 15 for no apparent reason! I have checked the code vigourously for any errors and I can't see anyWhat happens is that a particular question within those pages stated above - when the alternate radio button is selected, it does not deselect the other radio button in the group.
There was no real clear solution to this other than build the questions dynamically from an XML file. I would really love to do this but my AS3 skills are not advanced enough to be able to program everything dynamically and I currently don't have time to learn these skills as the flash file is due like yesterday
How can I have multiline labels on my radio buttoncomponents? I can't seem to find good documentation anywhere on howto do this. This is the best that I have found:[URL]
View 1 RepliesI am using the radio button component in Flash with a continue button. When the user clicks their option in the radio button and then clicks continue, I want it to go to a movieClips Specific frame. Here is the breakdown and the script I have so far is below.
The radio group os named RadioButtonGroup The instance names for each of the three options are noviceButton,intermediateButton,expertButton My continue button has an instance name of continueButton and my movie clip I am trying to target has an instance name of level_mc here is my code so far:
[Code].....
the problem starts with my varFrame line-I don't know how to get it to go to the movieClip and gotoAndStop at a specific frame, based on which radio button was clicked and after the continue button is clicked.
I never get the hang of these.'
Code:
_global.web_link_activate = (wArray[this.id]);
if (_global.web_link_active == "no"){
_root.load_area.zoomer.enabled = false;
_root.load_area.zoomer._alpha = 20;
[Code] .....
That should work but it does not. it always says "yes" wArray is a drawn from an xml document.
XML is
Code:
weblink="yes"
Can I set vars like true and false in xml kinda like weblink=false??
I have this code on a movie clip:
Code:
onClipEvent (enterFrame) {
this.gotoAndStop ()
if (Key.isDown(Key.DOWN)) {
this.gotoAndPlay ()
}
}
But the problem is, when I let go of the arrow key, the movie keeps on playing. How could I make this work, so that the movie clip would go to the first frame when you let go of the arrow key?
Because this code didn't work:
Code:
onClipEvent (enterFrame) {
this.gotoAndStop ()
if (Key.isDown(Key.DOWN)) {
[code]....
I just don't know how to set the true and false statements.
I have 6 radio buttons spilt into two groups of 3 and one normal button.The first group of radio buttons correspond to colour and the second to texture.My aim is for the user to be able to chose a colour, then chose a texture by use of the radio buttons, click on the normal button named 'create' which loads a corresponding jpg onto another part of the stage according to the colour & texture selection.I am totally stuck on how to code the buttons so this can happen.I'm sure there is an easy (ish) way for this to happen, but i'm no expert and haven't been able to find it or work it out.I've named each radio button individually, grouped the two sets of radio buttons for colour & texture and named the normal button.
View 6 RepliesI am having a problem with stage event listeners in Explorer 7 and up.I place an object, say a circle, on the stage in layer 1. I make it a symbol and give it an instant name of myBall_mc.I add a blank keyframe at frame 25 and create a motion tween moving the circle across the stage.I add a new layer, name it actions and place the following code in the first frame.
stop();
stage.addEventListener(MouseEvent.CLICK, onClick);
function onClick():void[code].....
Works perfectly when testing. Works perfectly when exported to a .swf in Firefox. Doesn't work at all in Explorer 7 and up.If I add a button to the stage and change the event listener to listen for a mouse click on the button, it works perfectly in all browsers.
Now here's the weird part. If I leave the script exactly like I have it above and place a box, the entire size of the stage, over the stage and set its alpha to zero. It works perfectly in all browsers. This is without even changing the event listener from stage to whatever I called the stage covering object.It registers as a stage level mouse click!
I've tried to add imports but this didn't change anything. I tried to add the parameters ,true and ,false to the stage event listener after the function name. Everthting I've tried comes up short. The only thing that works for Explorer browsers is covering the stage with an object.
How do you find a odd or even number using bytes instead of modulus op?
View 8 RepliesHow do you use config constants with values other than true or false? The only documentation examples I've found uses the syntax:
ActionScript Code:
CONFIG::CONSTANT_NAME {
//do stuff
}
But what if the constant is set to a value like "hello"? How can I set a block of code to only compile if the constant is set to "hello" but not "goodbye"? I tried:
ActionScript Code:
CONFIG::CONSTANT_NAME == "hello" {
}
Are you aware how to set a variable to true or false in AS3;
I tried
Code:
var flip:void = true;
But this is not recognized by AS3.
I've written a PHP-script that returns true/false.I use a URLVariables-object to send two variables to the PHP-script (actually a username and password).
View 1 RepliesI have a button that imports an mp3 and is supposed to load completely before playing. Problem is, when I set the loadSound to false it doesn�t play at all, but when I set it to true it does play. Here is the code:
Code:
carregarSons = function (som, numeroVolume) {
_root.som1.stop();
_root.som1 = new Sound()[code]....
What is the most simplified way to get flash to return True(1) if a variable is > 0, returns False(-1) if a variable is < 0, and returns nothing(0) if the variable is 0?
View 4 RepliesIm trying to pass values to a php. My problem is when I try to pass the value (true / false) of a checkbox. Its set to be false by default but the thing is that I have not found the way to pass the "selected" status to my php.
I have the ckbx inside a movieclip and on a button press I pass the variables (loadVariables) from the movieclip to php (POST) I would like to know how to obtain the current status of the ckbx and pass it to a variable in Flash to send it to php (the last i know how to do)
I tried using if(check1.selected == true) but it does not work one button called submit - does the obvious
check1 - instance name for the checkbox component ck1 - instance name for the var (dyn txt) i am using to get the value
Need regular expression that will verify if all the letters in the word "cat" were also in the word "coating" in the proper sequence? So for the word "coating", the RegEx will test true for "cat" but false for "act".
View 2 Replies[URL]
is the code. I'm trying to change the boolean value of bottomLeft to false or true in the appropriate if sections, but I'm not sure how to properly format it to actually work
Given this: if(myVar){}, what will pass as true or false?In JavaScript for example, false are values like null, undefined, 0, '' (empty string), false.
View 2 Repliesxml can only be parsed with actionscript if its from an external source true or false?
View 3 RepliesFrom my flash file I need to make a call to an external link, and retrieve a value which is either "true" or "false".This website will display either:<resp>false</resp> or <resp>true</resp>I have no influence on the external link - so I can't add anything to that file.Depending on the returned value, I want to do something simple like:
ActionScript Code:
if(true) {
//DO SOMETHING
[code].......
I was wondering whether anyone could explain to me the (false, 0, true) parameter of eventListeners. Its very basic I think!
View 6 RepliesSo I want to create a method that return a true or a false. The thing is I need to be able to change the true/false ratio in percentage as a parameter
So it'll go like this:
public function trueFalseRandomizer(percentOfTrue):Boolean
{
return(result)
}
So if (100) is passed in argument it will return a true for sure and a (0) would always return a false... (25) 1 on 4 chances to get a true... etc etc etc
Maybe I could have figured it out myself but I get confused with the math.anything As I don't feel I get good randomizer when I try to create one.
In Flash MX I have a movie clip that is 32 frames long and loops. Now, what I want to happen is: when you press a button in the file, the movie clip will stop at frame 22. I don't want it to "goto and stop", instead, I want it to continue playing through until it hits 22.
i.e. if you hit the button at frame 5 it will continue playing until 22. or if you hit it at 27 it plays through the cycle, but stops at 22 (if possible, it would be great if I could get it to reverse if it was past 22, but i don't want to be greedy).
Now, one way I thought of doing this was to have an "on open 'stop at 22' = false " and "on press button 'stop at 22' = true.
How do you get a True/False statement to be recognized inside a movie clip with a button on the main timeline as the control. I want my movie clip to stop at the last frame if the movie clip reaches the last frame. Otherwise gotoAndStop at the first frame of the clip. I was using
on (press) {
_root.m1.gotoAndPlay(2);
_root.m2.gotoAndPlay(1);
[code].....