ActionScript 2.0 :: Send A Link To The File?
Feb 25, 2010I can't understand why some of my links don't work. How can I upload the file on here or do I have to send a link to the file?
[URL]
I can't understand why some of my links don't work. How can I upload the file on here or do I have to send a link to the file?
[URL]
send me AS3 video chat source file or link
View 1 RepliesMy question is simple, in de ios sdk you can create a custom url scheme for your application, simply illustrated in the docs as so:
NSURL *myURL = [NSURL URLWithString:@"todolist://www.acme.com?Quarterly%20Report#200806231300"];
[[UIApplication sharedApplication] openURL:myURL];
My native application has this such a scheme system set up, however, the app is going to have to be called from an air for ios (flash) application. My question to the stack is this, how would I call this url from actionscript, and (if this is not possible), is there anyway I can do this natively from inside the air for ios application?
I would like to make an input text field in flash as2. What I need is when the user write down an answer it will direct him to an html page I created. There are 3 answers and 3 pages, so they will write down one of the answer and when they will click "enter" they will be redirected. I understand you can do it with "if" statement but I don't know how!
View 1 Replieshow or where i could learn about embeded links. In other word, i want to generate a link that will send the user to a page where my swf will be, therefore nobody can come and get the source of my file or even decomplile it.
View 6 Repliesi have created a flash animation for my homepage, i want to make part of that flash animation a "enter" button so when clicked would go to my page 2 on my website.
i have never done any script before and only used dreamweaver on a mac. is there an easy way to create this button to link to my next page and to stop my file to stop looping?
I need to find a way to detect keystrokes when the flash file is not selected and send that information to an .swf file. The file would be stored locally (not on the internet).
View 3 RepliesIm pretty new with the flash -> php -> mysql thing .. And I have made a script that sends some variables (that a user inserts in some input forms) with some var names, and then php handles it and insert it into my MySQL database its kinda ugly that a page pops up and opens the php page.So I was wonderin' if there is some way to send the variables to the php file and process them inside the flash file. without openin' some fancy browser window ?
View 3 RepliesI am trying to send a function to my SWF file via a HTML file, and every browser works fine except for Internet Explorer.The test file is supposed to animate the graph when you mouse over the word click, and come to a halt upon mousing off of it.Here is the example URL:[URL]
*** begin ***
<script type="text/javascript"> function sendToActionScript(str) { document["accelachart"].sendToActionScript(str); }</script>
<a href = "#" onmouseover="sendToActionScript('fast')" onmouseout="sendToActionScript('slow')">click</a>
[code]....
Like I said before, it works on all browsers I tested (Chrome, FireFox, Safari) except for IE (7 or 8).
I have a task to upgrade a web site. I have a map of ND with some cities on it. I needed to add a new city to the SWF which did not seem to be hard (asuming I did it correct). The action on all the buttons for each city look like this except the name after the # is the city selected.
on (release){ getURL("locations_info.html#minot", "location_content");}
In HTML code snip that controls this looked like this :
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
[Code]....
I have flash file on right side of i make 4 link for example:
-state 1
-state 2
-state 3
Now i want to send some value to php file by clicking any one of these state if anyone click on state 1 value should be send 1 and onclick on state 2 value should be send 2 and so on.how can i do this in flash .
How to edit flash file (.swf) without .fla file ? I got banner in swf file and a need to make something like that:
when user click on that banner he will be redirected to an url (for example [URL]
I am the fan of kirupa but this is my first thread in forum. I have some problem with sendAndLoad method with actionscript 2.0. I am developing a online game with flash mx , MS SQL 2000 and asp. The problem is I send the data using sendAndLoad method to asp file and get data back from asp file. But when the internet connection is not good there is a problem like jam or lost packets. How can I prevent the lost of packets. Some of the data are important. Is there any way to solve this?
View 1 RepliesI made a christmas card using the fabulous snow fall animation tutorial using Flash CS4, AS3. I have a swf file sent it to several people. Unfortunately some could not view it as they did not have FlashPlayer 10 installed.Is there something I can do that will let everyone watch it whether they have Flash Player 10 or not.
View 1 RepliesI would like to send an email with a swf file made using Flash CS4, AS3...not as an attchment but in the body of the email. I have sent a link and that works...but want to send so everyone can view when they open the email.
View 3 RepliesHow can I send a photo for example to mount a virtual catalog and preview my album?I use a simple form with 5 fields of transmission and viewed the small image after submission.
View 1 RepliesI have a html form and when submit is clicked, my php processes the data. At the moment its simple, just one field displayed to the screen <?php echo htmlspecialchars($_POST['name']); ?>.Instead of doing this, I want to send the variable name to a swf file, and load the swf file with the name. I will use flashvars to do this. I have seen examples, and I think this one is used to display the swf onto the webpage, and pass the data to the swf.
<object width="540" height="240" title="sample">
<param name="movie" value="card.swf" />
<param name="flashvars" value="var1=here&var2=are&var3=my&var4=flashvars" />
<embed src="card.swf" flashvars="var1=here&var2=are&var3=my&var4=flashvars" type="application/x-shockwave-flash" width="540" height="240" ></embed>
I am not sure what it is really doing, and what I should change the value to in order for my name variable to be passed.
I have two input text areas, for example - name and age.
When user will fill in his name and age, these data should be sent to some external file. Whats more, when you will fill again the same text areas (name, age) these new data should be also send to external file (the same one or different one - these data should not be overwritten).
*Later i should have access to this external file (when I will open it, I will see all the data that has been sent to it)
I'm using AlivePDF in a project, and this is actually the first time I've used it. I've gotten it to work just fine except for when I send the PDF file to a server. The problem is the save() function makes a few assumptions:
1. it assumes I don't need to send any other information along with the PDF file.
2. It assumes I want to pop open another page.
3. It assumes that Flash doesn't need to know what's happened to the file after it was sent.
What I want to do is send the PDF file along with some other data with a URLRequest, and then get the response back from the server, and depending on the response move on. AlivePDF seems to have this "one size fits all" function for sending the PDF to the server. has anyone dealt with this before? Any resources I can look at? I've been all over Google trying to find answers, but I'm kind of at a loss.
I've searched everywhere, but can't find one thread/result that suits my situation.I'm trying to post data into a database, through php. I don't want to reload the page, so I want this to happen through Flash. I thought about using the LoadVars() class, but it just simply isn't working.How would I about doing this? Say I have three variables, blah1, blah2, and blah3, all of which are strings. How do I send these variables to a php page with the POST method?
View 4 RepliesI need to send the String value from .asc file to Flash AS3 in Application.rejectConnection();
[Code]...
How can I send a photo for example to mount a virtual catalog and preview my album?I use a simple form with 5 fields of transmission and viewed the small image after submission.
View 1 Replieswhen we create a flash file with xml loaded data, do we need to supply that xml file all the time with the main file? Cant we just send main file to the client?
View 2 RepliesI'm working on an Android Air app made in CS5.5 where user data is saved in the app's applicationStorageDirectory as a text file.
Is there a way to send this saved text file to another device's applicationStorageDirectory via Bluetooth/email/text e.g?
The idea is that the app "game" is saved on each person's device. When the game is over, I want the users to be able to compare their results. (I'll write some code to compute who the winner is via comparing the two results)
I'm trying to create a file that shows data from a database depending on an id number the user inputs in Flash. I am having trouble sending to PHP the id so it sends back the appropriate data from the db.
This is the AS3 code that tries to send the value of the idNumber to PHP[code]...
With URLLoader I can read vars from a file. How can I send the same files , new vars values?
View 3 RepliesI'm trying to send some data from a .php file to FLASH, then to print them on the screen, but the result is "undefined" and I find this message
[Code]....
Can i put ACTIONSCRIPT inside a xml file and make it work inside a swf?Since is not basic, where can i learn more about xml processing instructions?Other thing....Can a php file that send variables to flash WITHOUT the swf ask for it?
View 1 Repliesi m using as3 for my project
URLRequest("new.swf?abc="+1);
im sending my varaiable like this call a swf and sending variable... and i dont konw hoe to get the sent variable from file 1.
When requesting data with:
<param value="data-file=http://url-to-my/json.script" name="flashvars">
via an SWF file, what request type would "http://url-to-my/json.script" receive. It doesn't seem to be a "xmlhttprequest". Is it the same as a request from a browser?