ActionScript 2.0 :: Pass String To Variable

Mar 12, 2006

I'm creating a webpage where all the content is within the same swf. In order to get things to work I have all my different content in different MC's. Each of those separate MC's have two frames inside. One where it's empty and the other where the content is displayed. To make this work I have a variable name 'page'. My menu is supposed to pass a string to this variable and at the same time trigger a transition to be played ('doors' sliding over and hiding the stage).

Then the transition sets all my content MC's to the hide position. Then it checks what the page variable is and sets the corresponding content MC to show before the 'doors' open again. At least that's how it's supposed to work in theory. But I haven't figured out how to do all this. First off I don't know how to get my menu to pass that string to the 'page' variable. Here's my menu with the problem area marked:

[Code]...

View 6 Replies


Similar Posts:


IDE :: Pass A String To A Function And Use Its Value As The Variable Name?

Dec 21, 2009

Is there any way that you can pass a string to a function and use its value as the variable name you wish to change. For example.

Code:
var text:String = "Goodbye World";
function myfunction ( varToChange)
{
varToChange = "Hello World";
}
myfunction("text")

View 2 Replies

AS :: IDE - Pass A String To A Function And Use Its Value As The Variable Name

Mar 18, 2009

Is there any way that you can pass a string to a function and use its value as the variable name you wish to change. For example.

[Code]...

View 1 Replies

ActionScript 3.0 :: Pass A String Variable To A SWF So That Can Specify A XML File To Load

Jun 14, 2010

I want to pass a string variable to a SWF so that I can specify a XML file to load without republishing the SWF. When I assign the string variable to a textfield it is correct.But when I use that variable in the loader it does not display the XML from that file.You can see below that I commented out the string "lesson_11/images/0301_objectives.xml".If I put this string in the loader it works, if I use the string variable in its place it does not work.

Code:
var xmlFileToLoad:String;
var myQueryString:Object;

[code].....

View 1 Replies

ActionScript 2.0 :: Pass URL String From External File To AS Variable (dynamic File Names)

Nov 17, 2004

I have a movie player that works fine when i hard-code the url value in the video function, but when i try to pass that url/file path from an external file, the video doesn't load. I suspect that there is something i'm doing wrong with the quotes. What am i doing wrong?

[Code]...

View 5 Replies

ActionScript 2.0 :: Can't Pass String To Nc.connect (string)

Jan 2, 2008

I've got an XML file that I get the URL for my server from and also get the names of videos to populate a list.I can get the URL into a string in my program (it traces fine). when i try to pass that string in my nc.connect(string) it doesn't work. Everything loads fine, but when you click a video, it can't connect to it. If I manually enter the URL into the connect field like this:nc.connect("rtmp://url") it works fine.Why can it take the URL manually entered and not from a string?

View 9 Replies

ActionScript 2.0 :: Pass A Variable As Well And Can't Seem To Escape To Pass It?

Apr 6, 2008

Trying to pass a variable as well and cant seem to escape to pass it. How can I pass using window.open as such: Trying to pass (pid) all i get back is (pid) and not actual pid.How to on a jscommand?

Code:
something.onRelease = function () {
var jscommand:String = "window.open('http://www.someform.php?proj= + (pid)','win','height=200,width=300,toolbar=no,scrollbars=yes');"; getURL("javascript:" + jscommand + " void(0);"); }

I can do a standard getUrl("http://www.someform.php?proj=" + (pid), "_blank"); works fine but no control over window properties.

View 1 Replies

Javascript :: Pass The Variable So That The Resulting Line Of Code Doesn't Have The Quotes Around The Variable Value?

Oct 3, 2011

I'm trying to pass the contents of variable playnoyes to the long line of code below to decide whether or not to autoplay the flash movie, but doing it as I have below, the resultant line of code has the variable in quotes and therefore the code doesn't execute it as expected. My question is, how can I pass the variable so that the resulting line of code doesn't have the quotes around the variable value.

var playnoyes='true';
var testtext = "<script type='text/javascript'>AC_FL_RunContent ('codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.[code]....

View 3 Replies

ActionScript 2.0 :: Create A String Variable...and Then Use The Value Of That Variable To Declare Another Variable?

Jan 3, 2006

f you know PHP...then you know that you can create a string variable...and then use the value of that variable to declare another variable. like this:

PHP Code:

<?php$foo = "haha";$i{$foo} = "success";print $i{haha};?>

and it would display "success"...or like this:

PHP Code:

<?php$foo = "haha";$$foo = "success";print $haha;?>

and it would also display "success".

View 6 Replies

ActionScript 3.0 :: Declare A Variable In PHP And Pass That Variable To My Flash File?

Mar 5, 2010

I am trying to do is declare a variable in PHP and pass that variable to my flash file. Right now i am simply trying to do 1 easy variable, more will happen in the future but i need to figure this out first.I have used other forums and they say try this and that, but nothing i do seems to work. here is my code.

PHP Code:[code].....

View 8 Replies

String :: Flex - Download A String Variable As A File To The Local Machine?

Sep 21, 2011

I have a String variable in my flex (flash builder 4) application containing CSV data. I need to allow the user to download this data to a local file. For example, giving them a "csv" button to click and it might present them with a save file dialog (and I would be sending the contents of my string variable).Is this possible / how ?I am using the ResuableFX component for the datagrid to csv. This the code I ended up with that works to save the string to a text file for the user (in a web browser):

var dg2CSV:DataGrid2CSV = new DataGrid2CSV();
dg2CSV.includeHeader=true;
dg2CSV.target=adgEncounters;

[code]......

View 1 Replies

ActionScript 2.0 :: String Variables - Consentrate A String To Call That Variable?

Mar 16, 2002

If i have an ASP page that is returning variables (and I can see them in the debugger) how do i consentrate a string to call that variable?

ie:
variables being returned are named:
"res1", "res2", "res3"...etc
for (var i = 0; i < 10; i++) {

[Code]...

View 4 Replies

Regex :: Replace Portion Of String With A Variable String?

Feb 10, 2012

Trying to replace a portion of a string with a "-" if it matches a string variable in AS3.

var re:RegExp = new RegExp(imageArray[j][1],"gi"); trace(imageArray[jTemp][2].replace(re,"-"));

imageArray[jTemp][2] is a string imageArray[j][1] is a string as well I'm not getting the result I expect. I would like trace above to return 'permanentContainer-' Here are the traces for the above variables

permanentContainer-temporaryContainer- temporaryContainer

View 2 Replies

Flash :: Pass A String To It From PHP?

Jun 22, 2010

How can I pass a string from PHP to Flash?

I need to pass this to flash[code]...

View 2 Replies

Flash :: Pass A String From A SWF Into Another SWF

Aug 3, 2011

I am using Flash CS5, never touched Flex. Also the SWF that is doing the loading will be a client SWF, so hoping for a solution that could work with a simple couple of lines.

Basically inside the SWF I am working on contains just a simple string:

var theString = "theString";
trace("theString = "+theString);

Now I've been working on a test loader SWF that will load my String SWF and get the variable in the simplest way. Any thoughts? Below is my current broken code:

function loaderComplete(event:Event)
{
trace("... in loaderComplete");
getString = loader.content.toString();

[Code].....


I've searched on Stack and found similar questions, but none are exactly what I need:

tracking video files - embedding flv to swf

^ Basically what I'm trying to do as well, no answers yet

to pass variable from one swf to another swf in as3

^ sounded just like my problem, but answer was a Flex application example

pass var values from one swf to another swf who is loaded inside the firts one in AS3

^ This was close, but am not sure how to implement the chosen answer, also seems a bit more intricate then I need

View 2 Replies

Actionscript 2 :: Function's Local Variable Through A Concatenated Variable String?

Mar 7, 2012

how you would target a function's local variable through a concatenated variable string.For example:

var txt = "Hello World";
function testing(msg) {
var test1 = msg;[code].........

I'd expect the trace to be "Hello World" but rather is given "undefined". So if variables created outside functions are created on the main timeline, where are local function variables created and how would you access them?

View 2 Replies

ActionScript 3.0 :: Pass A String As A MovieClip Name?

Jan 27, 2010

I created 4  buttons with 4 animations each, one for each state (using tweens), so I  have that imense list of 16 "addEventListeners" (don't know if there's  another way to do it). But everything is working as I would like.
 
The  problem is that I'm trying to create only 4 functions to take care of  all the 4 buttons and those 16 eventListeners.
 
This is  part of my AS3 file (still with the "traces", 5 secs of animation to  check the animations and all).

[Code]....

View 10 Replies

ActionScript 3.0 :: Pass A String Var From Html Url?

Feb 13, 2010

So, I want to pass a string variable to a SWF so that I can specify a XML file to load without republishing the SWF. When I assign the string variable to a textfield it is correct. But when I use that variable in the loader it does not display the XML from that file. You can see below that I commented out the string "lesson_11/images/0301_objectives.xml". If I put this string in the loader it works, if I use the string variable in its place it does not work. Can anyone see what I am doing wrong

Code:
var xmlFileToLoad:String;
var myQueryString:Object;

[code].....

View 1 Replies

ActionScript 3.0 :: Pass A String As Function?

Oct 7, 2010

How to display the correct digits. For instance, if the answer is 97%, I want the display to show 97, not 11. Please feel free to view the SWF or look at the FLA file to see[code]...

View 5 Replies

ActionScript 3.0 :: Pass A String To An Array?

Feb 27, 2011

How can I pass a string to an array?

What is the difference from doing:

Code:
private var myArray:Array = [{option: "MAR11 100 C", contracts: "-10"},{option: "APR11 100 C", contracts: "10"},{option: "MAR11 90 P", contracts: "-10"},{option: "APR11 90 P", contracts: "10"}];

[Code]....

How can I assign that "text string" to another variable and then pass it into an array?

View 2 Replies

IDE :: How To Pass Query String In AS3 In Flash CS4

Sep 11, 2009

How do you pass Query String in AS3 in FLASh CS4?

View 1 Replies

As3.0 :: Append A String To A Variable So Flash Reads It As A Variable?

Sep 27, 2010

i'm getting a value from a class that gives me e.g "icon1" as data. i want to use this within a function to control the visibility of an item nested in a movieclip on the stage. the nested movie has the same name as the data being sent.

// here's what i want it to do:
mymenu.icon1.visible = true;
// but i cant append the 2 together as flash will see it as a string not read it as path.

[Code]....

View 1 Replies

ActionScript 3.0 :: Change String Variable To A MovieClip Variable?

Oct 10, 2008

I have been banging my head against a brick wall regarding the following problem which must be very simple to fix, just can't see the answer.I have a class assigned to a movieclip called canvas. The class is called drawClass. I have called the instance of canvas on the stage 'drawingCanvas'.When I trace "drawingCanvas" I get object drawClass] which is fine. Tracing drawingCanvas.name gets me the instance name 'drawingCanvas'.This is a String variable.Basically what I am trying to do is pass the MovieClip name to another class. In my example the class 'toolBar', which can then interact with the MovieClip.

The problem is passing 'drawingCanvas.name' results in a String, so I get an error saying :TypeError: Error #1034: Type Coercion failed: cannot convert "canvasArea" to flash.display.MovieClip.I can't for love or money find a way to convert a String variable to a MovieClip variable! I have the name of the MovieClip, I just need to tell the toolbar class. But I can't find a way of doing this as the instance on stage is an object of drawingClass, not a MovieClip (unless MovieClips with attached classes are not treated as standard MovieClips?).

View 9 Replies

Pass A Variable With Brackets In The Variable Name?

Nov 20, 2010

I am trying to pass a variable with brackets in the variable name. Example

productoption[]="value";

Whenever I publish the file flash gives me an unexpected "]" error code. Is it possible to have a variable name with brackets? I tried to use the escape codes %5B%5D to pass the brackets but that didn't work also.

View 1 Replies

ActionScript 2.0 :: Pass Php Variable To Variable?

Nov 28, 2009

i write my own code for php and actionscript...and i had a problem with it.. How to pass php variable to action script variable?

[Code]....

View 3 Replies

ActionScript 3.0 :: Pass Variables From Combobox To String Together An Url?

Jan 10, 2011

I'm a beginner that is stuck at the moment. I've made several comboboxes, and what I am trying to accomplish is add those values to an url and pass it.Example: In the first combobox I select year: 2009, second one I select genre: horror, third one I select language: us, which then should string those together and give me this url for example, "file.php?year=2009&genre=horror&language=us"I am working with an array, filling it with values and then stringing it together, but several problems arise, first one, I don't know how to skip the "&" for the first value. Also I do not know how to ignore undefined values in the array.Here is just one combobox I use and the handler:

Actionscript Code:
var seljaartal:Array = new Array({label:"Year", data:""}, {label:"1939", data:"jaar=1939"}, {label:"1940", data:"jaar=1940"},  

[code].....

View 7 Replies

ActionScript 3.0 :: Pass Variables Through Query String?

Mar 5, 2010

I've been searching ferociously and can't seem to find a solution that works for me. I am trying to pass variables via query string on a PHP page to Flash, and then have the swf add movie clips to the stage depending on the information it receives. Here is what the PHP outputs:

[Code]...

View 2 Replies

Php :: Flash - Pass UTF8 String Into HTML API?

May 13, 2010

so I have my php API (html Get api for Flash builder and C# apps). So if you want to submit data to it you use string like

[URL]

If there are english letters in it its ok. But what if I need to pass UTF-8 string like this &#1056;&#1091;&#1089;&#1089;&#1082;&#1086;&#1077; &#1048;&#1084;&#1103; to my api what shall I do?

View 1 Replies

Flash :: Pass A String Statement From A Class?

Aug 7, 2010

I want a way to pass a string statement from one base class to an other. The two classes are CLICK and READ.What's an easy way to do this? I haven't worked in classes that often to know some of the simple tricks.

[Code]...

View 2 Replies

Flex :: Pass Query String When Using The Debugger?

Sep 13, 2011

I cant pass the query string while using the debugger or else i cant debug when there is a query string. how to use the bothAm using a web application in flex using php for ex : [URL]

View 2 Replies







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