ActionScript 2.0 :: Join Variables To Return A Third?
Oct 12, 2008
I've got 3 variables called pSize1 = 15, pSize2 = 16, pSize3 = 17. I have some radio buttons that have the data: 1, 2, 3. depending on what radio button is pressed, I need to trace the data in either pSize1, pSize2, or pSize3.if they user presses the first radio button, it returns data 1, how can I combine that with "pSize" to return 15, and not "pSize1". What i have tried so far:
Code:
var listenerObject:Object = new Object();
listenerObject.click = function(eventObj:Object):Void {
thisSize = eventObj.target.selectedRadio.data[code]......
View 2 Replies
Similar Posts:
Jan 26, 2011
I want to assign an existing Object all the vars of a prototype Object, without a direct reference. One way to do this is:
[Code]...
This way both Object's values for .nom and .age can be independently changed, but it's tedious. Is there an automated way to assign all of protoObject's vars to enObj?
View 9 Replies
Aug 14, 2009
I have a class to load some XML and build the data into an array but I can't get the timeline to see the array. [code]...
View 4 Replies
Jul 21, 2011
As seen below, I tried to return more then one variable from a function but , I think I have some syntax problem..
function hesapla3(parametre1,parametre2):(Number&&Boolean) // PROBLEM IS HERE, I NEED TWO VARIABLES TO RETURN{var yenideger2:Number=new Number();var bol2:Boolean=new Boolean();yenideger2=parametre1+parametre2;if(yenideger2>80){bol2=false;}return yenideger2;return bol2;trace(yenideger2);trace(bol2);}
View 3 Replies
Jan 22, 2009
First of all sorry im not very familiar with the flash lingo, im still new to all this actionscript stuff
ok so i wrote this on a frame in the timeline[code]...
now i need to check which one from all these has a value of zero. then when it finds it i need it to tell me which one it is (s1x or s2x or s3x) so i can do stuff with it.
View 4 Replies
Feb 13, 2011
I have the maximum possible reduced cod of an xml accessing data:
Code: Select allvar myLoader:URLLoader;
var myURL:URLRequest;
var myXML:XML;
[code]....
How i could make a CORRECT RETURN of these myLoader.data possible values so i could have "in the end" some EXTERNAL variables:
var myName:String = new String()
myName == .....the result from function "readXML": ....trace(myXML.product.name[2])
or
var myNumber:Number = new Number()
myNumber == .....the result from function "readXML": ....trace(myXML.product.length())
View 3 Replies
May 15, 2004
I am using Freddy Thunder's tutorial on how to make a login script with php/mySQL The problem is that the button doesn't do anything when I click it. I can't tell if it goes to the php script, but it sure doesn't return the correct variables like it is supposed to.
View 3 Replies
May 15, 2004
I am using Freddy Thunder's tutorial on how to make a login script with php/mySQL
The problem is that the button doesn't do anything when I click it. I can't tell if it goes to the php script, but it sure doesn't return the correct variables like it is supposed to.
[URL]
View 3 Replies
Jul 29, 2008
I'm using a class that I converted from AS2 to AS3 using Patrick Mineault's converter: [URL]
The original AS2 class:
Code:
/**
* Colour handling routines
* Culled from many places:
* - http://www.actionscript.org/forums/s...d.php3?t=15155
[Code]....
Is the AS2 to AS3 conversion part of the problem (aside from my ignorance of how to use it)?
View 3 Replies
Nov 9, 2011
I'm new to Actionscript programming. I'm trying to figure out what is the best way to return multiple variables, each having a different data type, from a function. For example, if a function needs to return variable aa ( a string) and variable bb (a number).
The function I'm using just crunches a lot of math, and doesn't relate to an object in a GUI. One method I got from a Google search used an Object, but as (I think) this requires me to create a class, I wondered if there was a simpler way. Since an array can hold elements of different data types, perhaps this is a simpler approach (?). [code]...
View 2 Replies
Nov 28, 2010
I'm trying to develop a simple as3 flash program that passes a collection a variables and returns a result based on the filtered results of a mysql table. Here is my as3 file:
[Code]...
No value is returned. If I replace with '$test4' and '$test5' with numbers such as 1 and 17, a value is returned. Where am I making a mistake?
View 1 Replies
Dec 3, 2006
I want to join two if statements together and I'm unsure of the syntax. This is what I have but it is obviously wrong. if (Key.isDown(Key.RIGHT) or if (moveRight_btn.onPress){
View 7 Replies
Feb 9, 2010
We are a group of beginners flash developers, and we are making a first game, but we are working in a part each one. So we need to know how we can join the differents files .fla that we are making in only one file .fla is it possible
View 2 Replies
Sep 24, 2010
I have 2 movieclip on the stage:movie1 and movie2so i need to join these 2 movieclips in just one called movie3 in way that when i call the movie3 it displays me movie1+movie2.
View 6 Replies
Sep 24, 2010
I have 2 movieclip on the stage:
movie1 and movie2
so i need to join these 2 movieclips in just one called movie3 in way that when i call the movie3 it displays me movie1+movie2.
View 5 Replies
Aug 25, 2010
I want to ask how do you join two points with a line using actionscript? The points would be constantly moving.
View 9 Replies
Jan 26, 2011
I need to delivery a proyect on friday and I need to join several swf files. I create buttons like for example ENTER when I click on it I place the function
[Code]...
and it works itload the new file but I can see the other file so what to do is to delete, erase or anything to not see the previews swf i will have back and foward buttons
View 3 Replies
Dec 6, 2008
I want to develop a "Join the Dots" game. I am anewbie in flash. I want to let the users join the dots to form alphabetical letters. If they do it correctly, they gain scores.
View 1 Replies
Jan 13, 2011
I need to add one array to another (only care about saving the joined one). Which is the preferred way of doing this? Speed is the primary concern followed by readability (I consider Option 1 to be a cleaner option). I assume it might also depend on the length of the arrays, but are there any good guidelines?
[Code]...
View 2 Replies
Oct 11, 2005
this should be easy but cannot get it to work:
[Code]...
have tried a number of methods including concat(), & etc. I know I'll kick myself.
View 2 Replies
Aug 14, 2010
How can I join 2 different movie clips (Panle_mc, Text_mc) so that they can move together if I move one clip?
View 5 Replies
Jun 4, 2011
I'm currently testing Flex/AIR for a new software that we have to design to display data received from the network and I'm very excited about all possibilities Flash offers in terms of UI and how easy it is to quickly develop a nice-looking, portable application, compared to other technologies (like Java, though richer in terms of API but harder to write code reusable for desktop, Internet and mobile apps, and not so good looking ).
The application itself gets data from a multicast group and formats it on the screen (images, graphs, ...).
So I'm really willing to use Flash to build this app and after a few benchmarking/prototyping I'm using a DatagramSocket (AIR-only, that's fine) to read UDP datagrams and it's working fine except for two tiny things on which I couldn't find any answer: I can't have the socket join a multicast groupI can't set the send/receive buffer size for the socket I have a lot of code in C and Java for that and both are just a single call to "setsockopt" function: In C: setsockopt(sock, IPPROTO_IP, IP_ADD_MEMBERSHIP, &group, sizeof(struct ip_mreq)) - where "group" describe the multicast group to joinsetsockopt(sock, SOL_SOCKET, SO_RCVBUF, &sz, sizeof(sz)) - where "sz" is the number of byte to use for the receive bufferIn Java it's even simpler, using a MulticastSocket: sock.joinGroup(group)sock.setReceiveBufferSize(sz) I tried to use Alchemy to write simple functions to create an UDP socket and have it join a multicast group but alas, the "socket" call returns -1, as it seems that sockets cannot be created in Alchemy environment (though compilation works without problem...).
I find it hard to believe that I'm the only one needing these two tiny "setsockopt" calls... I found on Adobe forums people trying to set the TCP_NODELAY option on a socket (also using setsockopt in the end) but without success...
By the way, the data come from an electronic board and is somehow coded in VHDL so I can't use RTMFP on that, though it seems to implement the functionnalities I need (or at least the multicast group part, the receive buffer size would be a bonus).
Well, I'm rather disapointed by this as Flash fills remarkably 99.9% of the application needs but this tiny 0.1% makes it impossible for it to get the data, thus making it useless...
And we don't want that I turn to Silverlight, do we?
View 4 Replies
Jun 21, 2011
I am wondering if any one can point me in the right direction. I have a number of sound objects. I am wondering if there is any way I can pull out the byte arrays and stitch them together into as one bytearray.
View 1 Replies
Jul 21, 2011
There's an array, lets called it arr1. There is a switch, that pushes argument to this array, but after the switch ends, I'm stuck at join("").split("");
var arr1 = [];
switch (myString) {
case "apple": {
arr1.push("apple");
break;
}}}
arr1 = arr1.join("").split("");
I know is simple, but I never had experience with arrays in flash before, I just realized join("") was used to convert the Array to string, but isn't split reversing this?
View 2 Replies
Jul 3, 2009
Ok, I am new to Flash and I am using CS3. I just learned about creating lines and choosing their end cap styles and joint style. I created 2 lines that were connected, highlighted both with the selection tool and tried to change the join style to miter. It would not work. I also tried round and bevel but they would not work either. I did this over and over with many different sets of lines, and I could not change the join style. What am I doing wrong?
View 2 Replies
Aug 13, 2009
I know there is a way to determine how many users can connect or "join"( in a manner of speach) per second, and how to set a maximum number of users in the queue to join, this does not mean though, that the server will reject all or any petitions after a certain number of players are connected or viewing a stream, which is what we need to do. anyone know if its possible to do this and how?
in other words,we need to set a limit on how many users can be watching a stream at any given time, be it by stream or by server, it matters little, we just need to get it set..
View 2 Replies
Sep 29, 2010
For the life of me I can't work out how to replace a "/" character in a string!? Using the standard myString.split("/").join("-"); does absolutly nothing to the string. I've heard the odd story of adding double slash ie. split("//") but that has no effect either.
View 1 Replies
Nov 26, 2009
I know there is a way to determine how many users can connect or "join"( in a manner of speach) per second, and how to set a maximum number of users in the queue to join, this does not mean though, that the server will reject all or any petitions after a certain number of players are connected or viewing a stream, which is what we need to do. anyone know if its possible to do this and how?in other words,we need to set a limit on how many users can be watching a stream at any given time, be it by stream or by server, it matters little, we just need to get it set...
View 3 Replies
May 11, 2004
The prblem i am having is that i have:
1, a main interface screen
2, a multiple choice test
they are two seperate files i am wondering if there is a way i can join them together so that once the "Test" button on the interface is pressed the quiz is started,
View 6 Replies
Aug 4, 2009
I'm having some troubles with the use of interface and inheritance in AS3. I've done lots of OOP in the past and what I'm trying to do seems obvious to me, but doesn't work in AS3. The question is : Is it possible to override a function that return an Object of class A, and make it return an Object of Class B which extends A ? It seems not to be possible, since I'm getting a signature error in Flash, when compiling. For example, the following set of class do not compile (the code in function definition doesn't matter):
[Code].....
View 3 Replies