ActionScript 2.0 :: [FMX] Giving And Reading A Variable?

Jun 15, 2003

On this moment I have a menu and six windows, every item on the menu has his own window. What I would like to do is that when the item 'home' is viewable and the visitor has pressed on another item, the window of 'home' goes away and the item were is clicked on comes up.

But how can I do that the best?I think I must give every window a variable so when there is pressed on a item flash will go search for the window that is shown and let that one play the animation to go away, so the window that is shown must have variable '1' all the others are '0' and when pressed on a item flash search for '1'...But how do I do all this, and is this a good way of working??

View 1 Replies


Similar Posts:


ActionScript 3.0 :: Giving Each Duplicate A Variable?

Feb 27, 2009

PHP Code:

stage.addEventListener (Event.ENTER_FRAME, lala);
function lala (event:Event) {
var object = new object_mc;

[code]...

How do I correctly declare a variable for each duplicate? The final line doesn't work in AS3 but it does in AS2. I want the same variable for each duplicate that I can individually change. Also how do I make a function for each duplicate? In AS2 I can do it by:

PHP Code:

object = duplicateMovieClip(........);
object.onEnterFrame = function () {
.........
}

View 7 Replies

ActionScript 2.0 :: Delay Giving Value To Variable?

Aug 23, 2009

I'm running a function equivalent to onEnterFrame. The function is checking variable values to see where on the playhead to play a particular video. The problem I'm running into is where the first conditional is passing a value of 2 to seqTotal and checking for the value at the same time. The conditional for seqTotal being equal 2 runs before it should. How can I delay giving a value to a variable so this doesn't happen?

[Code]...

View 3 Replies

ActionScript 1/2 :: Reading Variable From Php?

Nov 4, 2009

I know there is a way to read variables from PHP, i have seen the many tutorials. What I want to do is slightly different. I need to load the flash file with a variable.I want the user to have a url containing a variable, the PHP will then get the posted variable and load it into the flash file on the page. Is there a way to load the variable into the flash file?URLtest.php?var="list.xml"Inside PHPget posted variableload flash file and load the var into the actionscriptFlash embeded on page or on a redirect pageActionscript uses variable which was originally embedded in the URL

View 3 Replies

ActionScript 3.0 :: Reading In Variable From .txt?

Jan 15, 2010

Does AS3 have a Class that can read in lines from a .txt file and assign values to variables. For example, say I have a Player class with three int variables health, armor and damage. I also have a corresponding player.txt file that holds the variables.

health = 3
armor = 4
damage = 5

What code can i use to assign these variables their correct values in Flash.IMPORTANT It must be a txt file. XML is not applicable.

View 2 Replies

ActionScript 3.0 :: SWF Reading An XML With Variable Name

Jan 20, 2011

I have a SWF reading a XML for text and stuff. I'm trying to make the SWF reading a XML whith the same name of the SWF, even if I change the SWF name. Is that possible? Wow!... In other words: I want to duplicate the SWF (renaming it, lets say, to MyDuplicate.swf) but I want the new one to read another XML (called MyDuplicate.xml). It means that the inside as3 code must have a variable name for the XML to load depending on the swf actual name... It may sound odd but it's perfect if you need to multiply your swf for an undefined number of copys whithin an application.

View 0 Replies

ActionScript 2.0 :: Reading A Php Variable?

Oct 7, 2005

I am trying trying to read ONE SIMPLE variable from a PHP page using actionscript's LoadVariables command. I keep getting NOTHING back. I have read through all the articles here and none of them are talking about the right thing - os there an easy way to do this?

View 2 Replies

Xml :: Reading Variable From File In Flex?

Jan 15, 2011

I'm trying to read the address of a flv file from an xml file and then put it in the "source" property of a videodisplay tag .

[Code]...

View 1 Replies

ActionScript 3 :: Flash S5 - Reading Variable From Different Class

Jan 30, 2012

I have already set a variable in my document class "Main.as". I am now trying to access that variable and read its value from a different Class and Function, take that value and email it. For example in my "Main.as" file I have this function:
public var _myVar:String;
function create() {
_myVar = "hello";
}

Now from my other class "EmailtoFriend.as" I have a new function to try and get the value of that pre set variable:
function getVar() {
trace(_myVar);
}

Why will it not output "hello"? Instead I get an error saying: Access of undefined property _myVar.

View 4 Replies

ActionScript 2.0 :: Number Variable Gets Converted To String When Reading From Textfield Of Numbers

Aug 20, 2010

I have the input textfield with instance name vIn, and the variable _vIn. (The textfield is empty.)[code]i have five other variable/textfield pairs were this works ok. I don't get why this pair doesn't work also, my textfields won't accept the subtraction operator, - , even though they're all set to vIn.restrict = "0123456789.-";It doesn't even work in the output textfields were there's no restriction (Negative results are displayed positive)

View 3 Replies

ActionScript 3.0 :: Reading LoaderInfo Flashvars Then Chaning Them And Reading Them Again Fails

Oct 24, 2011

I am changing the flashvars variables v1=value&v2=value ect then after the flash movie runs I am changing the variables externally by javascript, so far so good.when flash first loads it reads the vars correctly.when I try to read them ( after the change ) it keeps reading the old values.[code]everything works except I cannot seem to read the changed FlashVars.

View 1 Replies

Actionscript 3 :: Class - Reading All Classes Under A Package Or Reading Classes With Same Metadata

Jun 19, 2011

I am doing an Actionscript 3.0 project which involves introspection. I am wondering if there is a way to get all the classes within a given package structure.

[Code]....

View 3 Replies

Professional :: Way To Use Flash Without Giving Up SEO?

Nov 5, 2010

Does a Flash CMS site give you the best of both worlds? I want asite but I need it to be searchable. Does a Flash CMS site rank well enough to do the job? If it does not rank well, is it because the Flash portions would get no SEO but the HTML portions would?OR is it something inherently missing in the software that will keep it low on the rankings, no matter what the ratio of Flash versus HTML there is on that site? Would an HTML site with Flash plugins hurt my rankings much? Could I solve my problem best by having an HTML based landing page that gives access to 2 sites, one strictly HTML and one either Flash or Flash CMS based? Assuming the landing page and HTML portions are optimized properly, is the content that is on the HTML landing page and HTML site going to give me good SEO results, even though one of the options to choose is a Flash site?

View 3 Replies

ActionScript 2.0 :: F8 Giving Variables A Unique ID

Feb 28, 2010

[code]i know about arrays and the code above isn't what i got its just a way to try and explain it a bit better.I would like to know for a TD game i am trying to make

View 2 Replies

AS2 - Giving A Movieclip A Specific Depth

Feb 15, 2011

I want to give a movieclip a specific depth number, but i cant found a method for this.

View 2 Replies

Flex :: Giving Border To Canvas?

Jul 26, 2010

In flex, I am using

canvasEdit.setStyle("borderColor", 0x0134FF);
canvasEdit.setStyle("borderThickness", 3);
note: canvasEdit is of type Canvas.

But I am not able to put border on the sides of canvas.

View 1 Replies

ActionScript 3.0 :: Giving A Button An Instance Name Via Xml?

Sep 27, 2009

I am creating my first AS3 flash site and i am using a menu which gets links from a .xml file

[Code]...

View 4 Replies

Actionscript 2.0 :: Giving Clarity To XML In Flash?

Apr 16, 2009

Giving clarity to XML in Flash?

View 1 Replies

ActionScript 2.0 :: Giving An Object Two Actions?

Jul 31, 2005

I have a flashslideshow with three buttons.

1.slideshow play(which is a mc with frame labels open and closed)

2. next button

3. prev button.

My problem is that when either button 2 or 3 are pressed during the slideshow it doesnt reset my slideshow mc button to frame label "closed".

View 8 Replies

ActionScript 2.0 :: Prototype Giving Error In It

Jan 4, 2006

Following prototype is running fine for action action script 1.0 but its giving error in action script 2.0.[code]...

View 2 Replies

ActionScript 2.0 :: Giving Event Functions To A MC?

Oct 11, 2006

I have a myFile MC that loads a JPG using my_mc.loadClip(run_url, "myFile");.then, I want to add some interaction, like:

myFile.onEnterFrame = function () {
trace ("bap");
}

but it doesn't work. Why is that? Does the loadClip code disables the MC's main commands?

Code:
import mx.utils.Delegate; //helps to manage scope issues within callback functions
var streamingID:Number;
var fileLoaded:Boolean;

[Code].....

View 6 Replies

ActionScript 3.0 :: Preload Class Giving Odd Results?

Mar 5, 2009

I believe I've got this set up to where you can test it out of the box. (Just add photo.jpg)

If you're getting the same results I am, there's a few things that aren't right. One, the main movieclip looks to be duplicated. The other is it's tracing something that shouldn't be traced, a percentage value and some weird random fraction (1.180283....etc). I've removed all the trace statements, which leads me to ask, is there a Flash cache of some sort? I know in past versions the file size would stay the same unless you renamed the fla file.. there something like that for classes?

I know there's a lot of video keywords, it will eventually load video.

View 8 Replies

ActionScript 2.0 :: Giving An Array Like Reference To A Movieclip?

Jun 14, 2009

If n=1,b1.gotoAndStop(2); is to happen.n=2,b2.gotoAndStop(2); is to happen.But i don't want to put conditions like this.I want to putting something like this:b[n].gotoAndStop(2); or something.Is it possible.Is there any other alternate logic.

View 2 Replies

ActionScript 3.0 :: LocalToGlobal Giving Me Doubled Values

Nov 3, 2010

I have a movieclip A inside a movieclip B. A has a coords (10, 0) and B has a coords (0, 0). So technically the global point for A should be (10, 0) right? Well it's giving me (20, 0). I put A at (10, 10) and I get (20, 20). This is just the weirdest thing ever.

View 2 Replies

ActionScript 3.0 :: Loading SWF Giving Instance Name As TimeLine?

Jan 21, 2009

I'm Loading swf into a movieclip name main_mc. After successfully loading it into main_mc. I had written a function to get all children present in that movieclip(main_mc). It is getting Children present in that, but every time it give [Object MainTimeLine] as instance3 or sometime instance10. How can i control instance name of maintimeline as it is randomly getting its name.... I'm attaching code use in getting child and loading it...

quote:

Clip=new Loader();
var urlRequest:URLRequest=new URLRequest("test.swf");
Clip.contentLoaderInfo.addEventListener(Event.COMPLETE,LoadingDone);
Clip.load(urlRequest);

[Code].....

View 1 Replies

ActionScript 3.0 :: OnComplete On End Of Array Giving Errors

Aug 11, 2011

I'm having a problem with onComplete at the end of the array. It gives me the following error:
1084: Syntax error: expecting rightparen before colon.

import com.greensock.*;
import com.greensock.easing.*;
import com.greensock.easing.CustomEase;
CustomEase.create("myCustomEase", [{s:0,cp:1.14999,e:1.4},{s:1.4,cp:1.65,e:1}]);
var timeline:TimelineLite = new TimelineLite();
[Code] .....

View 1 Replies

Flash :: TextInput Component Not Giving Up Focus?

Jan 31, 2010

I have a project where a big part of the UI a notebook, where the user enters text in a number of fields, for which it uses a series of TextInput components.Once the notebook is filled in the user switches to a screen where the inputs are disabled and they compare what they wrote to a 'model answer'.The problem is that the last TextInput to have focus at the time of disabling retains it - it appears disabled (greyed out etc) but if you type the letters appear in the field.I have tried variations on Selection.setFocus(null), and it seems that Selection.getFocus() returns null/undefined, but can still type into it. I can't select any of the other textfields, and clicking on other interactive elements - bottons etc doesn't seem to want to remove focus either.

UPDATE - Just to make sure there wasn't something crazy happening particular to this project, if I make a nude flash movie with a textInput and a button, then make the button set theTextInput.enabled = false, I can still type into the field. I can't see any way that's a feature.

View 2 Replies

Flex :: HitTestPoint Not Giving Correct Results

Sep 27, 2010

I have a movie clip on which I have added a MouseEvent.MOUSE_OUT listener.[code]...

Now the logic is to remove the movie clip on MOUSE_OUT and add it back to stage on MouseOver of another button. The intended functionality is like a slider showing some info

The MouseEvent.MOUSE_OUT firing in this case is not functioning always as expected. When I move the mouse out of the moveclip fast it fires. If I moveout very slowly it does not fire and consequently the movieclip remains on the stage. [code]...

View 4 Replies

Flex - Giving NumericStepper's TextField A Unique Id?

Sep 1, 2011

I am trying to use the NumericStepper component in Flex and would like to give its textField (not just the whole thing) an id but not sure how. I have already given an id to the NumericStepper itself but would like to give an id to its textInput field.

View 1 Replies

Flash :: Class Giving Me And Import Error?

Jan 26, 2012

Here is the code I wrote. It is a flash class based upon a generic object.

package{
import flash.events
import flash.ui

[code].....

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved