ActionScript 3.0 :: Call Multiple FlashVars Values?
Mar 20, 2009In HTML:
<object id="myId" classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000" width="100%" height="410">
<param name="movie" value="swf/navbar.swf" />
[Code]....
In HTML:
<object id="myId" classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000" width="100%" height="410">
<param name="movie" value="swf/navbar.swf" />
[Code]....
I need to call some flashvars in to my video file. I know it's probably an easy fix, but I need to convert this as 2.0 script to as 3.0:
ctionScript Code:
var rtmp_url:String ;
rtmp_url = _root.server_url ;
myVideo.source = rtmp_url;
I m passing variable/ file name in html/ php like this
[Code]...
I m creating custom player and want to use flashvars in AS2 in my file and call it dynamically in PHP. this is how i m calling the mp3 file
[Code]...
I'm using AS3 and FlashVars to pass info from the page into the SWF to write content into a TextField. The whole process is actually using ASP to pull info from the URL and write it into the FlashVars field which in turn gets put into the TextField.I'ts working great.I've got the formatting and positioning and everything looking and functioning just how I want.My only problem is I'm a bit of an AS3 newbie and for the life of me I can't figure out how to use 2 different Variables to create 2 different TextFields.
View 11 Repliesi`m using flashvars to send data from php to flash.. here my flashvars code
HTML Code:
<Param Name="FlashVars" Value="userName=<?php echo $user?>&userID=<?php echo $session_username ?>"/>
<embed src="../flash_php_ch10/cart_02.swf?userName=<?php echo $user?>&userID=<?php echo $session_username ?>" type="application/x-shockwave-flash" width="710" height="660"></embed>
so i send to variable userName and userID in flash i can print all the variable with this
ActionScript Code:
var tf:TextField = new TextField();
tf.autoSize = TextFieldAutoSize.LEFT;
[code]....
my problem is how can if i only want to print only 1 variable.. not all.. like only userName or only userID i try to change this
ActionScript Code:
var paramObj:Object = LoaderInfo(this.root.loaderInfo).parameters.UserName;
but it print nothing..
I am working on a project where I am getting some data back into my .swf via FlashVars. They are being sent back in a HTML Code: <param name = "FlashVars value ="resultstring=&username=value&userfirstname=value&userlocation=value" I am not sure how to target the resultstring in actionscript to retrieve all of the different variables?
View 9 RepliesI am sending a complex flashVar sequence where a shell swf gets the URL for a SWF to load via flash vars. The URL for this loaded swf has flashVars appended to it. I need to pass in two flashVars to the loaded swf, but can't get it to work. I think it might have to do with escaping the "&" -- I've tried & but no dice -- in both cases it just ignores the & and everything following it. I can't post sample code as the forum won't let me post what it considers 'links' -- but basically the flash var string passed to the loading swf is something like [code]...
View 1 RepliesI'm rebuilding this embedable player for a client of mine, the video file URL and a couple of other variables are in the HTML as Flashvars. I suspect something is wrong with the code that looks for the flashvars.
The top part showing the green box is where the player didn't load because it was unable to obtain the Flashvars form the HTML. The player below has the Flashvars string hardcoded into the player so it works.
I believe the problem lies somewhere below Perhaps something wrong with the way I'm trying to pull in the Flashvars?
// LIVE Embedded
//vidURL = stage.loaderInfo.parameters.fvar;
vidURL = this.loaderInfo.parameters.fvar;
[Code].....
This code is giving me undefined. I have 3 flashvars in the swfobject embed code in the HTML document. How do I fix this?[code]
View 3 RepliesIm new to placing external data into Flash. I just got CS3 and Im trying to use Flash to dynamically load XML data via a FlashVars call in the HTML.
The problem is I have followed the very straight forward AS2 Help files for using FlashVars and URL variables.I have placed the code directly from the Help file into the Html between
<noscript> <noscript>and i keep getting undefined.I have tried saving the file as flash 8 and i am publish flash 8.
Checked out the kirupa easy random color code, but is it possible to call random values from an array of colors? these examples don't seem to be working.. Code:
[Code]...
[Code]...
I am adding a mc to the stage (linkage name: SavedTopic) via mouse click calling this function. There will be a random number of these clips, based on user decisions. How can I set the 'savedTitle' and 'savedText' as variables unique to this specific MC, that can be accessed later via textbox inside the 'topic' movie clip. I've tried:
[Code]...
I want to put multiple inputtext values into an array, but code below wont work.
This is the inputTextFields:
output1.text
output2.text
Simply dont know how to write it, tried:
output +i+ "." +text;
output +i+ ".text";
[Code]...
When you want to split a string in to an array, seperated by the letter "e" for example. So string: 0e5e8e7 would become 0,5,8,7..[code]Is there a way you could split a string by multiple values? So instead of it splitting the string when it comes across "e", could you have it split when it comes across "e", or another character.
View 5 RepliesI'm afraid I know the answer but I wanted to check first.
I want to run a single function based on multiple values.
[Code].....
I am working on an RPG-type game, and in this game I've defined multiple objects for characters, named char1, char2, etc, then assigned the objects values such as Health, Magic, Strength, etc. I then created a dummy object with all of these same values, except every value is set to zero. There are some 30 values in every object.
I would like to see if I could do something like:
Code:
dummychar = char1;
to transfer all of the values from char1 to dummychar instantly without having to define every value transfer, however, I can't seem to find the correct bit of code, because doing the above seems to erase all the values from the dummychar object completely.
The point of this excersize is the make the dummychar object a placeholder so I can switch char1 with char2, meaning char1 would take char2's place, and vice versa. The dummychar object will hold the values for char1, then char2's values will overwrite char1's values, then the dummychar's values will overwrite char2's.
So, in pseudocode:
Code:
dummychar = char1;
char1 = char2;
char2 = dummychar;
My current way of doing this includes telling every single value in the char objects to transfer, but that takes up quite a bit of coding space, and I was wondering if there is an easier way.
Is there a way to make a statement where if the slider is >=30 and <=40?
View 3 RepliesI'm pulling info from an XML file... there are three variables (year, month, day) that I need to process further in another function, but I can't figure out how to send them out of the function and into the next for processing.
Is it possible to make their values globally accessible?[code]...
Is there a way to parse a single XML attribute into an array?
Something like
<images>
<image index="0,1,2"></image>
</images>
and somehow parse it into an array like
indexArray[0]=0, indexArray[1]=1, indexArray[2]=2?
What I have is two buttons that when clicked they add an input text field and a third button that puts a text field and gives you the total value of the two input fields after the user inputs some numbers, the problem is that the buttons adding the input fields can be clicked multiple times and of course adding a new input field each time they are clicked and as you can imagine when I try to add the values I only get the result of the last two fields added.
How can I tweak my code so it adds-up the total value of all input fields on the stage?
I didnt test my code it may have some errors, I just put it together to show the concept.
ActionScript Code:
button1.addEventListener(MouseEvent.CLICK, addField);
button2.addEventListener(MouseEvent.CLICK, addField2);
button3.addEventListener(MouseEvent.CLICK, addTotal);
[Code].....
right way to solving this problem, the truth is im not even sure how to structure it before Ive even got down to coding...the scene
Code:
values = new Array("v1", "v2", "v3", "v4", "v5");
I have 100+ records in this array. v1 - v5 all contain number values.
[code].....
for (var s = 0; s<mainSections.length; s++) {//grabbing the fabric types Handblocks,Screenprints,and Wovens
for (var i = 0; i<subSection.length; i++) { //grabbing each fabric design of the fabric
[code]....
I want to have each text identified as marketLocation1, marketLocation2, etc up to 150 and I wanted to use a 'for loop' to place the value of that XML node into each labeled textfieldHowever, the only issue is... each individual text field is buried inside a button so that the button displays on mouseover an associated XML fields data.Meaning, I mouse over a dot on a map (button) and it pulls up a statistics balloon about that location specific to our companies needs. I'm a total AS3 noob, so I'm not sure if I should be calling to the XMLdata loaded for a specific set of values on entry to that mouseover, or if I can preload the data for that button into it's specific text fields.Specifics are for the xml/flash file
Code:
<market MarketID=1>
<marketLocation>Raleigh-Durham-Chapel Hill, NC</marketLocation>
[code].....
I am currently using this AS to randomize an array:
Code:
function shuffle(wordtestmix,b):Number {
var num : Number = Math.round(Math.random()*2)-1;
return num;
[Code]....
and would still like to randomize the array without splitting the two values up.
What is the best way to declare this type of array and also adjust the randomize code in order to mix it correctly.
How can i update multiple cells of the same row changing the value of a single cell of the same row ??
Example: id, height, weight, fat percentage, corporal mass. When i change one of the values in a row (except id of course) the corporal mass cell value must change using a formula like: (height/weight2)*fat percentage*100. Is this posible with Datagrid or AdvancedDatagrid in Flex ??
I tried using custom item renders and inserting actionscript code inside the datagrid with no good result.
I am creating a card game application in that dynamic movieclips created on stage and inside those movieclips different cards can drop, which have some values.
If one movieclip contains one card and another movieclip contained two cards and all the other movieclips 3rd,4th,5th.. etc contains some cards then, if i want to go back and want to drop another card at the top of the old one, than how i can do this, because when i go back and drop a new card inside movieclip than it replaces the old one. i don't want to create a new array for each movieclip.
I have an arbitrary number of object instances on the stage. At any one given time the number of objects may be between 10 and 50. Each object instance can move, but the movement is gradual, the current coordinates are not predictable and at any given moment I may need to retrieve the coordinates of a specific object instance. Is there a common best-practice method to use in this case to track object instance coordinates? I can think of two approaches:
I write a function within the object class that, upon arbitrary event execution, is called on an object instance and returns that object instances coordinates.
Within the object class I declare global static variables that represent x and y values and, upon arbitrary event execution, the variables are updated with the latest values for that object instance.
[Code]...
I'm trying to create a simple ripple effect made of circles created using the drawCircle() method. Afterwards I animate the circle by changing it's size and alpha value. The final radius of the circle and the position is random.
How do I create multiple circles/ripples?[code]...
someThin.text = String(value1) I'm using the above code to pass an integer to a dynamic textBox.The problem is I'd like to post a second variable (value2) in the same textBox as well as a '/' between them. I could use multiple textboxes but that just seems sooooo inefficient.
I've tried the following permutations and none have worked.
someThin.text = String(value1 ' ' value2) ;
someThin.text = String(value1) '/' (value2);
someThin.text = String(value1) '/' String(value2);
If you have two textareas, one has a rotation value besides 0 and the other has no rotation value or a value of 0 and you 'tab' focus from the one w/rotation to the one w/out. The border around the textArea w/out rotation will be rotated. If you set the rotation value of the non-rotated text field to a non-zero number, even 0.01, it fixes the problem, this causes tons of other problems in text rendering though so its not a solution.
I found setting the focusThickness style to 0 removes the border, which is a good solution but not a great one, anybody got a better one? Here is some sample code:
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
<mx:VBox width="100%" height="100%">
<mx:TextArea id="source" width="100%" fontWeight="bold" fontSize="20" height="50" rotation="5" />
<mx:TextArea id="dest" width="100%" height="50" />
</mx:VBox>