Actionscript 3 :: Condition Statements Involving Coordinates, Adobe Flash?
May 5, 2011
've been trying to make a code in actionscript that will set a function to true if an object is moved to a specific part of the screen. The confusing thing is making the rule apply to when it's between a specific four coordinates (in this case, 165 and231 as the X coordinates, and 295 and 330 as the y coordinates; "honey" is the instance name of the symbol).I was given this code:
bool IsBetweenInclusive(int value, int lower, int upper)
{
return value >= lower
[code]....
View 2 Replies
Similar Posts:
Mar 16, 2011
Having a problem with a little animation involving balloons floating in and then floating out again when a condition is met. There are two ways they can float in or out: from left to right, or completely randomly. I actually like it as coming in (left to right) and going out (random) but it's essentially up to the user.
Since I moved my Array sort code into the function that basically deals with telling the balloons to float off though, I've been having problems. Sometimes one or a couple of the balloons will not float off and I'm kind of boggled as to why. Because it works fine IF the Array sort part is outside this function, I'm wondering whether, when the for loop at the bottom starts running, the Array is still being sorted and that's why some balloons get left behind.
[Code]....
View 0 Replies
Jul 12, 2010
I'm having a problem with an if/elseif statement involving a 2 tilelists. I have 2 tilelists with two radio buttons. what's supposed to happen is when the original is selected then only one of the tilelists is visible and makes a image in all three movie clips when one is selected. when the other radio button is chosen then the both tilelists are visible and usable. the second tilelist changes the image on one of the movie clips independently. here is the code.
[Code]...
View 1 Replies
Apr 22, 2009
Edit: I'm Using CS4. I'm new to AS, but do have background in programming language. I can read and understand. So here is my problem. I'm working on TemplateMonster #16330. So I just want to add another page to the gallery section, and 3 is the default. Basically, button "3" has two version with slightly different code.
[Code]..
View 2 Replies
Jan 28, 2010
My project is about a header.swf that calls a nav.swf (with a menu and other stuff) and also inits a slideshow through a Slideshow class.This is in header.swf:[code]I renamed the XmlParser class to "XmlParser2.as" (as well as other references to it) and then...it worked...what the hell was going on here?
obs: I tried that also: I commented all the code inside the "initSlideShow" function, keeping the XmlParser instantiation, and the nav.swf didn't show as well.
obs2 : i didn't had XmlParser.as imported cause it was in the root directory. ( i explicitely imported it and tried to compile but same thing happened)
obs3: nav.swf uses the XmlParser.as to load two menus, however I don't believe it has anything to do it since it's a file that is already compiled, at the point I try to load it into header.swf, right?
View 2 Replies
Oct 8, 2010
I have a recursive call which includes an asyn operation (file copy) .. I want to find out when the recursive call finishes (along with all asyn operations).
private function copyInto(directoryToCopy:File, locationCopyingTo:File):void
{
var directory:Array = directoryToCopy.getDirectoryListing();
[Code]....
View 2 Replies
May 6, 2011
I have created a movie clip called mc_Border comprising of a rectangular border and an empty movie clip called mc_SpriteContainer.I am trying to dynamically add a sprite to mc_SpriteContainer.Everything works fine until I drag the mc_Border.mc_Border behaves as it should but the sprite remains in position when mc_Border is dragged.I know this can be solved by adding a line to move the mc_SpriteContainer, but I thought that as it has been added to a MovieClip, its position should remain relative to the movie clip.Just wondering if I'm missing something. Below is the code that I am using to add the MC and the Sprite to the stage.[code]
View 0 Replies
Dec 19, 2011
I was trying to convert global coordinates to local coordinates of a UIComplenent in my flex project using below code using below code
var gp:Point = new Point(e.stageX,e.stageY); //global point
var lp:Point = uic.globalToLocal(gp); //local point
uic is UIComponent in which I have subclass of Sprite for drawing something I have set the sprite's mouseEnabled and mouseChildren to false to not interrupt the mouse event. above code is within uic's mousemove event where I was tracing the gp and lp gp was giving correct value and suprisingly lp was giving negetive values. when I move the move to the top left corner of uic i expect lp to be 0,0 but it is giving the -width of of uic. I broke my head for hours and ended up finding an alternate by using offsets. Infact my original code was much simpler like this which was same issue
var lp:Point = new Point(e.localX,e.localY);
I am not sure what exactly is causing this problem. the workaround had lot of issues and it creating a mess in my rest of the algorithms.Just now I found even more interesting thing (which is actually weird). for some reason I went and create a new lp2
var lp2:Point = new Point(e.localX,e.localY);
now surprisingly it was giving correct values as expected and I went back and changed the code as
var gp:Point = new Point(e.stageX,e.stageY); //global point
var lp:Point = uic.globalToLocal(gp); //local point
var lp2:Point = new Point(e.localX,e.localY);
var lp2:Point = uic.globalToLocal(gp);
now it is expected to have all the lp, lp2 and lp3 variables to be same but weiredly lp two is giving wrong value and lp2 and lp3 were giving correct. I am suspecting using the variable lp has something to do. I am not sure about that but above proves it so right now I am using lp2.
View 1 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
Jun 19, 2009
I have to create an animation involving a big fast zoom with a little rotation and animating it on the timeline just doesn't cut it.I start with state 1 (see attached file state11.jpg) where there is an animation and then I want a fast smooth zoom until I reach State 2 (see attached file state2.jpg). In the first state the "map" occupies the entire screen, but when it reaches state 2 the map is inside a mask and the other elements will start appearing.how to create this zoom smoothly with actionscript? I am really lost here and I know somethings about actionscript but I just cannot do this and my timing is today...
Attachments:
state2.jpg
(149.0 K)
state11.jpg
(121.2 K)
View 2 Replies
May 21, 2007
I was reading the 'Isometric Transformations' tutorial by Danko Kozar and I have a few questions. I understand what all the code does, but not how it does it. First of all, how does the following code work:
transforms x,y,z coordinates into Flash x coordinate
xFla = function (x, y, z) {
// cartesian coordinates[code].....
I understand that it converts 3d coordinates to 2d coordinates, but I don't understand how. What numbers whould be punched into x, y, and z to acquire certain desired effects?Also, what's the difference between moveTo and lineTo:
red line
style(1, "0xFF0000", 100);
plot(0, 0, 0);
draw(200, 0, 0);
View 4 Replies
May 3, 2010
Im making a little app in flash using papervision I want to make a regular movieClip show up in the same place as a papervision object. The coordinates seem like perspective is affecting the number displayed.
View 2 Replies
Oct 7, 2004
If they get a question wrong in my quiz ( weakest link) the money clip goes to zero and it goes onto the next question. If they get it right the money clip advances and they go onto the next question. I want to include each time that it should only go onto the next question if all questions have been asked. SO i want an extra if clause in both sections, saying if current question is more than 11 go to '#game over"The questions are saved in the frame of the quiz
_root.qArray = new Array("question: A;B;C;D")
_root.qArray.push("Question?:A;B; C; D")
There are 11 questions.At the moment at the section with choosing answers I have
function selectAnswer(n) {
// correct
if (answers[n] == correctAnswer) {
_root.money.nextFrame();
[code].....
View 1 Replies
Aug 17, 2009
I want to check the RGB color of the object using actionscript in flash. The name of the object is object1. I checked like this but it didnt worked.[code]...
View 2 Replies
Feb 12, 2011
I need to loop a flv file in flash if a condition is true.
So I tryed to add a listener but id doesn't work.. Code below:
textBox.addEventListener(FocusEvent.FOCUS_IN, focusInListener);
var connection:NetConnection = new NetConnection();
var stream:NetStream;
var video:
Video = new Video(200, 200);
var metaObj:Object = new Object();
[Code]...
View 2 Replies
Jul 30, 2003
is it possiable to make a condition in the flash params like wmode = transparent, but I want to do something like playback = "option1" then in the flash file it will play the frame label "option1" and so on, so i could use the same flash on multiable pages in differnt states.
View 1 Replies
Apr 12, 2012
i have got a project im working on that requires if statements
basically im wanting to create 2 or more statements detailling if an answer is right, to move onto the next question but before it does that, to play an audio clip then move on. the next statement will be similar, but i cannot remember how to create them i.e. the syntax.
if i could get a response ASAP that would be gr8, as i have 2 weeks to get it done.
View 3 Replies
Dec 23, 2010
In my machine I have installed only Adobe Flash CS5 proffesional trial version. Now this installation is not supporting adobe.utils.Extension class in this version. I have tried with all latest updates from adobe site. My doubt is does adobe.utils.Extension class is available in licensed version of Adobe Flash CS5 proffesional?
View 12 Replies
Dec 28, 2011
I want to create a simple game (Adobe Air) based on 2 players using ActionScript 3.Let's assume I want to create online chess game.So that I can play with my friend at work, at home, from anywhere via internet.Should I use flash server? Or something similar for this purpose, or there is simpler way to connect 2 players and make fully functional interaction between them?
View 2 Replies
May 26, 2011
For example <s:TextInput id="sd" text="{if () {0} else if() {1} else {2}}"/>
Is it possible to do something like that?
View 2 Replies
Sep 28, 2010
When use the full path name and the identifier of a movie clip, my conditional statement works fine. However, when I swap the identifier out with "this", it no longer works. This script is contained within the movie clip I am trying to reference. I have found that, "this" works fine by itself on the timeline. It just stops working when I place it within a conditional statement.
Here is my script:
function functionOne() {
randomX = 550*Math.random();
randomY = 400*Math.random();
} functionOneInterval = setInterval(functionOne, 1000);
function functionTwo() {
[Code] .....
The reason I am trying to use "this" instead of the identifier name is because the movie clip it is referencing will be duplicated. This script here generates a random destination point for an enemy spaceship and tells it to constantly move to the changing points. This script is contained within the enemy spaceship movieclip, and I am planning on duplicating several of them at once.
View 1 Replies
Aug 30, 2010
Here's my question. Suppose I've written some AS3 code like:
statementOne;
statementTwo;
Is there any possibility that the garbage collector will run during or between my two statements, or does it only run after my "user" code has finished and returned control up to flash? We have an A-Star codeblock that's sometimes slow, and I'd like to eliminate the GC as a potential culprit. The codeblock is obviously more complex than my example above, but it doesn't involve any events or other asynchronous stuff.
View 6 Replies
Mar 14, 2012
Lets say i want to have a communication console for my game user, to communicate to them what is happeiong in terms of their game, particularly, anything that i have traced in my code? is it possible to have these traces output as dynamic text that opens up in another window, adjacent and smaller to the swf that has the game?
View 1 Replies
Sep 22, 2010
I am connected to the Flash Media Server Administration API via RTMPE on port 1111 and I'd like to monitor calls to trace() from the server side actionscript code.
View 2 Replies
May 22, 2007
the flash autoformat destroys my code... And i use it all the time .. my switch and for statements doesnt work anymore after autoformat, it adds ';' where it shouldnt..
View 14 Replies
Jan 27, 2011
How can i make the Augmented Reality applcation on Android mobile phone (HTC Nexus One) that i have developed using the flash platform faster, since flash doesnt support OpenGL for 3D graphics. Can I make it faster using GPU Acceleration? Or there is any way to combine Flash and OpenGL? Any online sources talking about this subject will be very useful..
View 1 Replies
Feb 24, 2010
I wanted to write a simple 3d image rotating around the y-axis as the Image carousel. I can place all the photo around the axis but I can't get the main image facing towards the screen. I mean the z-axis isn't pointing towards the screen. Instead, the z-axis is towards the top left corner. How do I make the z-axis pointing perpendicular to the screen?
View 1 Replies
Jul 21, 2010
I have a widget that looks like an equalizer, the scrubbing on the slider is working. When I relaunch the swf file everything resets.
What can I do to save the setting.
View 1 Replies
Jan 13, 2011
I'm trying to update a clients site and the original developer left almost no instructions.The code is all updated through XML.Here is a sample of the code
enter code here<FOLDER NAME="COMMERCIAL">
<GALLERY NAME="LOCANDA VERDE: New York">
<IMG HEIGHT="500" CAPTION="Some photo" WIDTH="393" SRC="locanda1.jpg" DX="60" DY="40"
[code].....
View 1 Replies
May 12, 2010
I know about Flash's localToGlobal and globalToLocal methods to transform coordinates from the local system to the global system, but is there a way to achieve the intermediate? To transform coordinates from an arbitrary system to any other arbitrary system?
I have a clickable object inside a Sprite, and the Sprite is a child of the stage. I want to retrieve the clicked point in the Sprite.
View 2 Replies