ActionScript 2.0 :: Boolean Not Working In A Function
Oct 29, 2009
I've been trying to get a flash map to zoom in and out but I can't seem to get it working, it'll zoom in fine, but not zoom out I'm zooming into a particular area of a map (Uganda in this example) with a function for a button, I'm using a boolean value to check if I am zoomed in and it registers whether it's true or false (checking with a dynamic textbox). [code]
View 8 Replies
Similar Posts:
Oct 29, 2009
Been trying to get a flash map to zoom in and out but I can't seem to get it working, it'll zoom in fine, but not zoom out.I'm zooming into a particular area of a map (Uganda in this example) with a function for a button, I'm using a boolean value to check if I am zoomed in and it registers whether it's true or false (checking with a dynamic textbox). [code]
View 1 Replies
Mar 6, 2011
I'm trying to do here, basically I need to check if a record exists in a database, so I call a function to do so, but I'm using the sqlrunner class wherein the result of a query is called as an event response and I don't know how to get that value out of the resulting function back to the parent.[code]...
View 1 Replies
Jul 20, 2010
How to pass boolean arguments to a function[code]On the stage i have all the MC - screenX, alarmsX, criticalX, majorX,warningX, redX, orangeX, greenX.But i get errors:Scene 1, Layer 'Layer 1', Frame 1, Line 171119: Access of possibly undefined property visible through a reference with static type Boolean.for each of the MC.
View 9 Replies
Jul 24, 2007
'm trying to do: I have a number of buttons on stage. When you rollover, a movie clip is attached. If you roll out, it disappears; if you click, it stays. Then you can drag it around. I'm using a boolean for the rollout disappearing trick. I've set these up in named functions.
[code]function attachBar(word) {
var showIt=false;
i++;
[code].....
View 2 Replies
Mar 13, 2010
I'm using String.split to parse a command line string into an array of strings. The result is then used to call a function using the Function.apply API.If apply(null, ["17"]) is called with this function:[code]does not work (expected output: false Boolean; actual output: true Boolean).Is there a way to make it recognize "true" and "false" (or anything else) as Boolean values, just like it does with numerical strings? Ideally "true" and "false" should also remain valid string values.
View 1 Replies
May 5, 2003
I'm using String.split to parse a command line string into an array of strings. The result is then used to call a function using the Function.apply API.
If apply(null, ["17"]) is called with this function:
static function test(foo:int):void
{
trace(foo, typeof(foo));
}
it works as expected (output: 17 number).
However, calling apply(null, ["false"]) or apply(null, ["0"]) with this function:
static function test(foo:Boolean):void
{
trace(foo, typeof(foo));
}
does not work (expected output: false Boolean; actual output: true Boolean). Is there a way to make it recognize "true" and "false" (or anything else) as Boolean values, just like it does with numerical strings? "true" and "false" should also remain valid string values.
View 1 Replies
Mar 14, 2011
I have a small question. I am probably misunderstanding something, but when I do :
[Code]....
View 1 Replies
Aug 29, 2010
I'm trying to make a custom ConfirmBox.I have this movie clip: http:[url].....and I'm trying to make a function confirm() which return a boolean value.Obviously true when the user press "SI" and false when he press "NO:.Something like this:
ActionScript Code:
public function confirm(msg:String):Boolean [code]....
View 8 Replies
Mar 5, 2009
find out error because mouse down and up function is not working.
View 4 Replies
Mar 14, 2009
I'm working on a pretty simple flash application which basically plays a music clip downloaded from a web URL, and makes a stick man dance. I have it all working fine, however, I've used the addChild function on the start button to add the mc onto the stage, however, when I applied the removeChild function to take it off again, I get an error telling me that it hasn't got a caller.Here's the script:[code]I've had my tutor look at it, and she can't work it out either, but I do get the feeling that she's not much wiser on Flash than I am.
View 17 Replies
Sep 8, 2009
I must admit I have struggled with this thing for a bit. It seems simple but for whatever reason I can't get it to work. I just want to make something move in AS 3 right now, and so far I've tried puzzling together two different tutorials, but both of them are missing either some source files or further explanation.
Anyway, here is the code (The bit I am having problems with)
Code:
//event listener checks for key presses
stage.addEventListener(KeyboardEvent.KEY_DOWN, checkkey);
//Create keyHandler function
[Code].....
The problem is the checkkey function in the update function. If I leave the parenthesis empty it tells me it needs an argument, if I leave it like that it tells me I need a right paren before colon.
View 2 Replies
Aug 20, 2009
i'm very new to Flash and AS3. I've created a clip and need to link some buttons to some pages on my site but they don't seem to work. Please let me know if nyone can help me...below is my code:
[Code]...
View 4 Replies
Sep 9, 2010
I'm having trouble getting a game to go to the end scene after a collison with a barrier.
Code:
function dead() {
clearInterval(ants); //stop spawning
[code].....
View 8 Replies
Oct 6, 2004
why is this working well:
Code:
with(mc){
_xscale = 160;
_yscale = 160;
[code]....
View 1 Replies
Oct 5, 2009
I can't seem to get the hitTest to work for my script shown below. I have tested using movieclips created on stage during design time and made to collide during run-time. hitTest works fine in this situation.
But if I use the attachmovie command and create a movie on stage during run-time, that clip cannot hitTest with other movieclips. The hitTest simply doesn't work.
The script below is basically, to create instances of enemymc, and it will fall vertically, hitting a movieclip target_mc which is placed during design-time.
var enemyTime:Number = 0;
var enemyLimit:Number = 20;
onEnterFrame = function()
{
[Code].....
View 3 Replies
Jan 5, 2009
Why is the function not working?This is my function:
function add_controll_pannel() {
this.attachMovie("controll_pannel","controll_panne lMC",10);
controll_pannelMC._x="157";
controll_pannelMC._y="186";
}
And this is my function call:
add_controll_pannel;
Nothing happens.
View 3 Replies
Jan 21, 2009
The code that is commented out will work, however, I'm trying to turn that code, since it's used multiple times, into a function.
Why isn't my function working when it's being called?
ActionScript Code:
function displayInfo(_ROLL:MovieClip,_MC:MovieClip, _NN:MovieClip) {
_ROLL.onRollOver = function() {
[Code]......
View 9 Replies
Sep 16, 2009
Code:
var abc:Number = 0
btn.visible = true
btn.buttonMode = true
btn.useHandCursor = true
btn.addEventListener("click", buildIron())
[Code] .....
I tried this code but it didn't remove the event listener.
View 4 Replies
Nov 2, 2009
I'm not getting errors but my program wont call my function.
Code:
this.onEnterFrame = function() {
if(wm == 10)[code].....
I want to change to my end game screen when my value of variable wm gets to 10. Sorry I cant figure out whats wrong with the if statement. It doesnt work outside a function either.
View 1 Replies
Jan 21, 2009
Ive got a problem with comparing the currentframe with the totalframes of a loaded movieclip.this is my code
Code: Select allpublic function adLoaded(evt:Event):void
{
ldr = new Loader();
[code].....
View 1 Replies
Oct 17, 2004
I'm trying to write a function that I can use for creating text fields - in this case: to make the labels for a navigation menu. But the function is not working and I don't know what's the problem. Vars are: n = name and l = depth.
[Code]....
View 1 Replies
Nov 9, 2005
I'm not getting any takers over in the Flash 8 forum.I am using the snow method wonderfully created here on Kirupa and have a quick question. Currently, the movie just starts with a screen full of snow. I'd like to get it to start off screen and fall in. Basically setting an initial state for the ._y of 0. I also can't seem to get a delay working for the function.[code]
View 4 Replies
Dec 26, 2005
I just created an image gallery that displays 3 images at a time. For some reason, it works (for the most part) in Opera, but it doesn't display the images properly in IE.
img1, img2,and img3 are blank movie clips that hold each of the photos. The links to the photos are retrieved from XML, and are displayed in a random order. The first picture shows how it looks in IE, and the 2nd is in Opera. It also seems that the clearInterval() function isn't working like it should. Once the pictures are loaded, they are resized using the resizeMe() function (called by setInterval) to fit in the rectangle.
IE: Opera:
Code:
img1._alpha = 0;
img2._alpha = 0;[code].....
View 9 Replies
Mar 21, 2007
Ok, I have a function that creates a button, it takes the paramaters
bX, bY, bcColor, bbColor, bHeight, bWidth, bHandle;
here is my function
Code:
function createButton(bX:Number, bY:Number, bcColor:Number, bbColor:Number, bHeight:Number, bWidth:Number, bHandle:MovieClip)
{
[Code]....
some reason when I try to hide Handle, it doesn't do it, & trace's dont do anything either it is suppost to create the button & store it in any handle I give it
View 3 Replies
Nov 28, 2007
Ok, the code below does get called when the mouse moves, but its like it doesnt re-run the tween until the the mouse stops moving. how to fix it? click on portfolio and select web or interactive from the drop down and you will see what I mean.
PHP Code:
mouseListener = new Object();mouseListener.onMouseMove = function() (mc_mask.hitTest(_root._xmouse, _root._ymouse, false)) mousePosX = (_root._
xmouse-mc_mask._x); mousePosY = (_root._ymouse-
[code]......
View 5 Replies
Sep 4, 2008
i have the following 2 functions.[code]when i called the first function it works... peopleOffBus(); but then when i call the other function to make p visible true, the function peopleOnBus(); doesn't work.it is calling the function but somehow my array is not working or something.
View 1 Replies
Nov 22, 2008
I'm just wondering it is that that .removeMovieClip() isn't working for me. I'm using the correct path to the object, and I've used this function many many times before. But it's not removing it now this time. I heard that there was some sort of bug in flash that you had to swap depths or something? Flash CS3
View 2 Replies
Sep 19, 2009
In actions in my .fla file I create a new object of a class (addChild) which is in an separate .as file. Now, in my .as file I want to call a function in the .fla file. This should be the parent right? So, I try parent.correct(); which does not work. I get the error #1061 (call to a possibly undefined method). However, when I do this:
var par:* = parent;
par.correct();
Everything works. Why is this?
View 3 Replies
May 26, 2011
I made a simple MOVIE which is hidden by default and will play only once the PORTFOLIO button is pressed.
PHP Code:
btn_portfolio.onRelease = function() {
subnavigation.gotoAndPlay("show");
};
I have checked and rechecked my MOVIE INSTANCE and still it's not working. I even tried adding "_root" and "this" before the "subnavigation" but still not working.
View 3 Replies