ActionScript 3.0 :: Read Variables From A Class?
Sep 4, 2011[code]...
how can i trace xox from my fla file ?(or how can i edit the variable from my fla file)
[code]...
how can i trace xox from my fla file ?(or how can i edit the variable from my fla file)
So if I have defined _root.something="&var1=2&var2=3&var4=5";How would I get for var1 value for example in flash?
View 4 Repliesis there any way to read variables from a projector?? I mean, i am making a cracker type some thing, which reads a particular variable from the projector.. So far, i've got it working for swf.. I mean, my so called cracker reads the value from an swf file using loadMovie.. But i cant get it working for my exe..
View 1 RepliesI need to read some variables into a flash movie. Can I do this with javascript or the <param> tags?
View 3 RepliesI was wondering if anyone knows wether it's possible to create variables from text inside an inputText.Example -> if I put the text "bDead = false" inside an inputBox, and I press some button, the variable bDead is created and initialized with "false".I tried loadVariables with the box.text as a parameter, but I guess it expects a link to some file instead of a text...
View 5 RepliesI am going to make a flash music player. I need it to be able to read variables from the PHP file that it's placed in. Example variables include: path to the MP3, length of the song, etc... These variables are stored in a MySQL database, not in XML files.
So how do I do this? Can you point me to a good tutorial?
I need to read the variables from a URL:[url]....I tried all sorts of info from google and i coudn't make it work.I'm interested in the option when i don't need to do any modifications to the html file, but just do all the coding in flash.I found several examples that are using ExternalInterface and could not make any single one of them work.
View 3 RepliesHow would I go about reading/writing variables to a file? I would like to be able to have my program remember all of its settings from the last run.
View 4 RepliesI need to read some variables into a flash movie. Can I do this with javascript or the <param> tags?
View 3 Replieshey, im just wondering for the best way to read variables of a .php page into flash
the page output looks like this array[0,0]=1&array[0,1]=3&....
i tried load(http://urlhere); but that dident work =p
then i tried
Code:
myVars = new LoadVars();
myVars.load("http://xev.mine.nu/nyheter/news.php?search=des","0");
myVars.onLoad = function() {
[code]....
the real problem is, i guess that i need it to read in the variable array[0,0]=1
just like that and not use sumthingrather=(myVars.varname)
because there will be a hell of alot of variables , and the variable ammounts will switch and i cant do a sumthingrather=(myVars.varname)for all of em
i want to do is read variables from a php file on a remote server. i have the php file on the server and im echoing back a result. all i need in plain english is the AS3 to intercept read and display this variable in a text box.
View 21 RepliesHow I can save data to a .txt file. This .txt file will be stored on the same server that the flash file is stored on and is executing from. I want to, later, be able to access the data previously stored on the .txt file from my flash movie.
View 6 RepliesI used a movieClip to store the attach movieclip, but How to get back the variable from that movieClip container, such as a I set a array in the exiting movieClip
var m_click:Array = new Array();
for (var f=0; f<=this[mc_name+"_qty"]._totalframes-1; f++)
{ m_click[f] = 0; }
I want the attached movieClip "y_qty" with a button inside to get the m_click for changing each m_click[0]..m_click[1]..value, how to do it?
I have these movies already existing in my actionscript code: inner_mc AND gallery_mc.So - I attach my library movie clip: called "link_box", and name it link_box0 and so on through the loop.
-->
for (i=0; i<numimages; i++) {
inner_mc.gallery_mc.attachMovie("link_box", "link_box"+i, i);
Now I want to create a new movieclip called thumbnail0 and so on, to the newly attached movieclip.
This is my attempt: this.movieHolder = inner_mc.gallery_mc.link_box+i.createEmptyMovieClip("thumbnail"+1, i+1);
When i try:trace(this.movieHolder ) it says undefined for all times it loops through.
Whats the syntax to combine strings and variables so that the result is seen as an object name ?
im just wondering for the best way to read variables of a .php page into flash
[Code]...
but that dident work either the real problem is, i guess that i need it to read in the variable array[0,0]=1 just like that and not use sumthingrather=(myVars.varname) because there will be a hell of alot of variables, and the variable ammounts will switch and i cant do a sumthingrather=(myVars.varname)
I used a movieClip to store the attach movieclip, but How to get back the variable from that movieClip container,such as a I set a array in the exiting movieClip [code]I want the attached movieClip "y_qty" with a button inside to get the m_click for changing each m_click[0]..m_click[1].. value, how to do it?
View 1 Repliesuse loadVars to read variables from .txt files on a different server with flash, do any of you know because I'm getting really annoyed?
View 14 RepliesI have written some code to read and compare variables and then to jump to a particular frame based on the results (pretty simple stuff). It works fine when I use a button to trigger the code but I want it to happen automatically.
I have tried using the OnEnterFrame thingy but it doesn't work and I tried just placing the code on frame 1 and letting it do its thang but that didn't work either....
I'm using the .swf in a third party program and using the API for that program to supply the values.
here is the code:
_parent.InitializeExternalVars();
var m_varStrEndSlide;
function display(){
[Code]....
Basically, imagine two classes, for simplicities sake I'll call them classA and classB they are in the same folder, same project, and all variables have been called as public.
In classA there's a variable, for this example I'll call it speed (its called something else obviously as speed alone turns blue so its a reserved word). It is made and updated in classA for it's current value
classB handles the array to move things, and needs to reference what speed is so it knows how much to move each object each tick.
How do I allow classB to look in classA and see what the current value of speed is?
I have a initApp.as which instantiates a class which needs to access the "currentState" property and the States array as well. However we cannot get this to work as we cannot see how we can access this information.
Within initApp.as currentState is accessed via "this.currentState". This does not work in the class which is instatiated within initApp.as. The following error is thrown:
"Access of undefined property currentState."
I am creating a Weapon class for a game and the weapons itself will be the sub classes. The sub classes will hard code some values (such as max ammo and the weapon name).
I trying to access this declared data in the base class constructor, at the moment it's not outputting the values. Is this possible?
I've broken my Weapon class for simplicity:
ActionScript Code:
package
{
import flash.display.MovieClip;
[Code]....
My current workaround is creating a protected method in the base class to trace the information and calling that method in the sub class's constructor, this works fine but this doesn't seem like the most efficient technique?
How can NetStreamInfo class's parameters be read. I mean, I have an application to perform live streaming. I have used 'nc' as my Netconnection object & 'ns' as NetStream object and nsi as NetStreamInfo object. When I Type 'nsi.' I see lot of attributes but when I try to print it using
[Code]...
Is there a way to make a property read only from outside of the class?
View 5 RepliesIn my emptyMC, i'm calling a newsticker, that needs an external .as class to works propertly. But when it opens, it doesn't read my _x and _y coordinates and neither the .as.
My code to it, is in a frame:
Code:
this.createEmptyMovieClip ("noticias", 2);
loadMovie("newsticker.swf", noticias);
noticias._y = -50;
noticias._x = 0;
In my first frame I have locked the root with:
this._lockroot = true and i has been working perfectly.
Also in the root in a frame i'm loading a music.swf.
for further doubts, just ask.
I'm working with Flash CS5 and AS2, Flash Player 8.0. It's a TM template.
Now I would like to use the variable out of class1 in class2 and change the value there.Afterwords use class2 in the main, but I get an error message. Why?
ActionScript Code:
//class No. 1 "MyClass1.as"
package MyPackage
[code].....
What is the correct syntax to initiate a function in a class similar to constructing an associative array? I have a function that's custom variables is ballooning out and I'd like to label them in the call for sanity sake.
currently:
myClass.myClassFunction("hello world",999,0xff0000);
desired:
myClass.myClassFunction(myText:"hello world",myNumber:999,myColor:0xff0000);
and the class itself for reference:
class com.myClass {
public var myText:String;
public var myNumber:Number;
[code]....
Is it "better" to initialize AS3 class variables in the class constructor? Or can I just initialize them to their default value when I declare them at the top of my class? I ask because when there's a lot of class variables, it appears inefficient to declare them in one place and then initialize them in another when I could easily do both in the same place. It one option is better than the other,
[Code]...
I would like to read the source of the flash.net.FileReference class. Is this possible?Where can I find the source files, do the come with the Adobe Flash or Flash Builder?
View 4 RepliesAs the title says, suppose I have an hypothetical XML containing this:
[Code]....
I can check if a certain speech has a bg change by simply doing this:
if(bgs[i])
{
//true!
}
what should I compare in the case of sounds, I've tried many, like:
[Code]....
I have a child class that is loaded into the parent class when the swf begins, like so: var myvar = 'hello'; public function Parent() { this.child = new Child(); }; How can I retrieve the variable 'myvar' from within child?
View 1 Replies