IDE :: Send Parameter In Flash?
Nov 23, 2009
basically, the ecard will start with 3 questions.each question has 3 answers.so user choses the answer e.g. B, B, C and clicks preview.it will play the movie clip assigned to B B C in sequence.then user can click send to sent to friend.so the URL needs to be able to identify the sequence maybe in parameters.so that when his friend receives the ecard and clicks on the flash it will play B B C sequence.then his frind can create his own ecard and maybe A C A etc...So how i created like that?
View 3 Replies
Similar Posts:
Jun 11, 2010
I want to send some parameter our of flash to some javascript code, that a nother developer has made. [code]...
View 2 Replies
May 10, 2010
I'm using a PHP script to read an RSS feed in my Flex 4 app. The script works when I put the URL of the feed in the actual script, but I can't get it to work when I try to send the URL as a parameter from a HTTPService in Flex. Can anyone tell me what I'm doing wrong? Here is the HTTPService from Flex 4 that I'm using:
[Code]....
View 1 Replies
Oct 18, 2008
I want to be able to send a second (or 3rd) parameter to a function that is called by an event listener, but I can't seem to get it to recognize the parameter - it gives me an error 1067 (implicit coercion of value) when I try the below code.
[Code]...
View 3 Replies
Nov 6, 2010
I'm trying to send a dynamic textbox instance name as a parameter, so I can use it in a function.
e.g.
btn_play.addEventListener(MouseEvent.MOUSE_DOWN, playVideo);
function playVideo(event.MouseEvent):void{
updateText(txt_inputbox);
}
[code]...
Is this actually possible if so what parameter type do I set textboxName as? I cannot use the event.currentTarget as the function is called after clicking on a different button.
View 3 Replies
Sep 22, 2011
i have a mission to deliver some SWF compiled in a third party application to iOS system. i install FMS 4 streaming edition and now try to send a path to my SFW like parameter to my player. but it doesn't want to play it.
View 2 Replies
Nov 16, 2010
I'm looking to send a list of variables (say 6 in total) from php to flash and for flash to pick a random one and send it back to php when clicking a button.
I would like it to appear in a dynamic text box. That randomly selected variable needs to be sent back to php on pressing a button.
View 2 Replies
Nov 16, 2010
I'm looking to send a list of variables (say 6 in total) from php to flash and for flash to pick a random one and send it back to php when clicking a button. I would like it to appear in a dynamic text box. That randomly selected variable needs to be sent back to php on pressing a button.
View 6 Replies
Dec 14, 2010
Can we skip an optional parameter and assign value to the parameter after the skipped one?
For example I have a function:
public function Dialog(message:String,title:String="Note",dialogsize:int=99):void
{
}
I can easily call the function with a message and a title:
Dialog("HELLO","Intro");
Is there a way to skip the title and just pass in the dialogsize? I've tried it but can't make it work:
Dialog("HELLO",,dialogsize);
Is it possible to skip some optional parameters without using (rest) parameter?
View 3 Replies
Dec 8, 2009
I am trying to read a XML file and check a parameter for duplicates of that parameter in the file. There could be up to 200 entries with this parameter which is a number. How can I check to see if there are any duplicates?
View 2 Replies
Aug 14, 2009
Forgive me for this stupid noob question but I want to call a function (loadList) that originally gets triggered after a mouseevent from another function (addToXML) that does not have an event.
The loadList function takes info from a XML var, sticks it into an array which then gets loaded into a tile list and that is working fine.
The addToXML function when called adds elements to the XML var after which I want to call the first function with the event parameter so it refreshes the items in the tile list.
I know it can do this by creating a new array and loading that into the tile list in the addToXML function, but it be much simpler to just recall the function.
I have tried things like
Code:
addToXML.addEventListener(Event.COMPLETE, loadList);
but all the event constants I have tried give me error messges like "1061: Call to a possibly undefined method addEventListener through a reference with static type Function."
View 3 Replies
Mar 11, 2004
I searched around and found some helpful things, but I am still missing something I think...
LoadVariables() won't work across domains, right, so, is it porrible to send data to a CGI script via getURL and not have a popup window on send?
View 3 Replies
Mar 18, 2010
I have a problem with shareobject. the Send method does not work. I work with AS3 My code
[Code]....
View 4 Replies
Aug 12, 2009
CS4 was working fine for a few weeks, then yesterday I opened an FLA and got an error pop-up that said "Parameter is Incorrect". The error happened for all FLA files. I could save changes but could not preveiw or publish (same Parameter is Incorrect error as on starting CS4). I even made a blank FLA and it wouldn't work either.
Relized today during more testing that this error only happens any time I open a file that is on my desktop (running XP). Same file moved into another folder (Even desktop ewfolder) works fine.
View 5 Replies
May 6, 2010
im having problems with the following code:
for (var i:Number=0; i<numFaces;i++){
var faceLoader:Loader = new Loader();
faceLoader.contentLoaderInfo.addEventListener( Event.INIT,
function(fle:Event){
[code]....
The problem is that im sending the variable i to the function LoadCara on every iteration, and its always called with the last value of i. I would like this function to be called with the appropiate index.
View 2 Replies
Nov 2, 2010
i am getting the Parameter url must be non-null error while trying to pass the path of an XML file to an Shockwave flash object.The javascript code is as follows
<script type="text/javascript">
var so = new SWFObject("preview.swf", "", "100%", "100%", "9", "#ffffff");
so.addParam("allowFullScreen", "true");
[code]......
View 1 Replies
Nov 24, 2005
I am actually discovering Classes.I try to make a class that reads out an XML file and than converts it into arrays.the array is well created in the class file, but I can't send it back to the swf correctly: it only duplicates the first item of the array in an infinite loop, but when I trace it into the class the output displays it right..
with this code I call the class:
Code:
var myProduct:Product = new Product("gallery.xml");
this.onEnterFrame = function() {
trace(myProduct.getArray());
[code]....
View 1 Replies
Nov 8, 2011
I have a flash file that has a movie clip in it. In this movie clip there are two movie clips. What I need to do is show a one movie clip and hide another. I basically only need help with setting up the reading of the flash parameter code in flash...
Code:
var imageToShow:String;
var paramObj:Object = LoaderInfo(this.root.loaderInfo).parameters;
This is basically what I have.I'm not sure what to go on to next or if this is even correct. I basically need to get to the point where I can say...
Code:
if (parameter == "image1") {
image.image1.alpha = 1;
image.image2.alpha = 0;
}[code].......
View 3 Replies
Feb 2, 2008
i have 1 PHP page in which i have a Flash animation. this flash swf file, display 2 fields and 1 button.
this php page is called "test.php".
i'm able to send data from Flash to a PHP page, but i would like to send the content of those 2 fields to the "test.php" and display them. however, i do not know how to do it.
i see that it works but i'm not able to display or refresh the PHp page to display the result.
as walkaround i was thinking to collect the webpage address where is executed the flash and to send it to another PHP page. and this 2nd PHP page, will reload the test.php with parameters...
how to get under flash, the address of the actual executed php page ?
View 10 Replies
Jan 9, 2010
I am trying to copy the pixels of a bitmap data. but I keep getting the following error
Parameter sourceBitmapData must be non-null.
it happens in the method drawImage. exact after my trace that says "got canvas data".
canvasData.copyPixels(image,tileRect,tilePoint);
Below is my code
package com.objects {
import flash.display.Sprite;
import flash.display.BitmapData;
[Code]....
View 1 Replies
Jul 13, 2010
What's the best way to pass a predefined argument to flash?
View 1 Replies
Mar 6, 2011
I'm trying to generate an embeded flash widget on a page with Python using a dynamic parameter. Here's the code I currently have.[code]...
The {{query}} parameter is passed through as a URL parameter. I'm not very technical, but I think the query value needs to be encoded for the flash to work. How do I encode the flash parameter?
View 1 Replies
Mar 9, 2012
Ive been using the 'event' parameter for my KeyboardEvents and MouseEvents in a recent project ive been working on for my course (VERY BASIC).Im not entirely sure on what the 'e' part of e:KeyboardEvent actually does, and ive been asked to find out what information the parameter 'e' can actually access when using it.
EDIT: If A method takes the parameter (e:KeyboardEvent). what information could we access through the use of the parameter e?
View 3 Replies
Mar 13, 2010
This is something simple, but yet it's killing me...here's my php file contents:
PHP Code:
<?php
$total_rows = 5;
[code]........
View 7 Replies
Sep 20, 2006
explain with 1 example how to pass parameter from ASP to FLASH..or otherwise direct me to the right tutorial site
View 3 Replies
May 10, 2007
I have a movie clip which has a function on it that loads some xml (actually xml that is created on the fly by php). The problem is that I have several different parameters - 3 in total which have to be tagged on to the URL so that the xml can display correctly.
I have no problem getting the first 2 parameters into the URL, but I cannot get the final one. On the _root I can trace it fine via another function however I can't get the parameter from the function that lies on the _root, into the URL that sits in another movie clip.
This is what I have for the code that sits in the movie clip:
//load vars for product info
var sendProduct_lv:LoadVars = new LoadVars();
var prodID:Number;
[code]....
What I am trying to do is get the URL that is declared in the first function after xmlData.load to have page=2 or 3 or whatever page I hppen to be on when the function floadPopup is invoked.
View 1 Replies
Apr 6, 2009
I am working as a teacher in Singapore and I am currently doing a project for our school. I am using the Adobe CS4 Design Premium. I am using Adobe Flash CS4 for the project I am doing. Adobe Flash CS4 crash often and after the latest crash and when I open up my project i got an error which is "parameter is incorrect" and when I press ctrl+enter, it didn't pulish the file and I have noticed that the swf file that was created before is gone after I press CTRL+enter.
View 5 Replies
Nov 15, 2009
I have a flash movie for drop down menus that is called by all flash/movie banner sections of my site. The banner movies use FlashVars to set the heading and an image. The trouble is that the flash menus also were set to use a flashvar to dictate the context of the menus and leave one top level menu highlighted to show the content to the user. I have not been able to get both of them to use the Flashvars functionality. The html page calls the banner movie directly and it can therefore access the Flashvars. The menu swf however - which is not called from the html page but instead is called from within the banner movie - cannot access the flashvars variables. That leaves me with two choices:
1. Either use a different method for passing the context variable to the menu movie.
2. HTML code calls the banner movie. I can continue using flashvars and get the context variable by reading it from within the banner movie - and then somehow pass the value down to the menu movie if that is possible.
View 20 Replies
Apr 15, 2010
im loading a child swf into my parent swf and I want to pass some parameters to the child swf.
Here is my code:
var req:URLRequest = new URLRequest( "test.swf" );
var loader:Loader = new Loader();
loader.contentLoaderInfo.addEventListener( Event.COMPLETE, loadComplete );
loader.load(req);
[Code]....
View 1 Replies
Nov 7, 2010
I want to first try to retrieve $_COOKIE[a],if it's not available then retrieve $_GET['a']
How to do this in actionscript?
View 2 Replies