ActionScript 3.0 :: Getting Data From External File?
Jul 20, 2010
how to embed a value into a dynamically created MovieClip within an external file (.as) that I can access in my .fla file when the MovieClip is clicked.
I have created an external file (.as) that draws a series of adjacent boxes with a number in sequence on top of them. That much works OK, but I want to load it into a Flash file that will do math calculations based on the number of the box.
Here's my .as file.
Code:
package {
import flash.display.MovieClip;
import flash.events.MouseEvent;
import flash.text.TextField;
[Code]....
How, for example, can I get the "slide_number.text" box to say something like "The square of this number is ..." and the square of the figure?
View 1 Replies
Similar Posts:
Apr 9, 2007
I will be creating a program to use for data entry. I'll be studying zebras in kenya and I won't have the internet there as I'm recording the data. I'd like to be able to send the data I generate in flash to an external text file. I understand I need some sort of script to do that, but is this something I can run just on my machine? (I'll probably make the data into xml format).
View 1 Replies
Nov 22, 2010
I'm running it in actionscript 1 and 2 since 3 wouldn't work when getting data from external media. I'm trying to find out how to post data to a PHP file and getting from that file I'm trying to make the flash for something that works like a game but differently. Since I just found out how to make the HTML stuff show up but a lot of times, some of my text will not appear so I don't know what's going on.
how to send and get data both at the same time from a sample file?
The sample file is example.php
It has to sent information like ID and NAME and it has to get information like Description and userID
View 3 Replies
Nov 22, 2010
I'm running it in actionscript 1 and 2 since 3 wouldn't work when getting data from external media. I'm trying to find out how to post data to a PHP file and getting from that file I'm trying to make the flash for something that works like a game but differently. Since I just found out how to make the HTML stuff show up but a lot of times, some of my text will not appear so I don't know what's going on.
how to send and get data both at the same time from a sample file?
The sample file is example.php
It has to sent information like ID and NAME and it has to get information like Description and userID
View 8 Replies
Feb 15, 2011
i am new in this flash thing and in the learning stage. on the stage are four buttons. they will behave like map. now what i want to do is, that i want to use xml. when i click on button, it should display some text, like title, description, address etc below the map and the these details should come from an external xml file.
View 1 Replies
Mar 1, 2012
i have to create SWF that contains only specific parser and load text content from external file . How i can allow search engines to see this data under swf link ?
View 2 Replies
Feb 24, 2009
Is there a way where I can get data from an external text file like you can in other programming languages?
View 1 Replies
Oct 26, 2009
i have been given two sources for a weather data feed:
[URL]
i would like to 'load' the text similar to loading xml i have seen several articles on reading variables from .txt but they all suggest the .txt file needs more formatting - whilst this one is just seperated by lines.
View 1 Replies
Apr 12, 2005
it works fine, but i want the file data.txt, to be in a different domain than the swf. When i write loadText.load[URL] the swf doesn't work. How can i solve this problem?
View 5 Replies
Mar 1, 2009
I have a simple swf file which loads data from an external XML file.At present, the user types the filename of the XML file they wish to load.Is it possible for Flash to 'read' the filenames of all of the available XML files in the folder and then present these filenames in a drop down list for example? Then, instead of typing filenames, the user would just click on the XML file they wanted to load.
View 4 Replies
Jan 20, 2010
I am using Action Script 3.I have loaded some xml data using an external as file called importxml.as.If I put a trace statement in it to access the content it works perfectly.But how do I access the data from the Flash main timeline or from another as file?I am using the statement ïż½import xmlimportïż½ but if I then write:trace(xmldata.category[1].word[1].text); I get the message;
1120: Access of undefined property xmldata.
If I try this on the main timeline
var myXMLmlimport=new xmlimport();
I get the error message
TypeError: Error #1010: A term is undefined and has no properties.
View 2 Replies
Sep 30, 2010
import fl.controls.*;
var MyText:TextArea = info_txt;
var score:XML = new XML(<score/>);
score.PlayerName = "Maged";
trace(score);
Here I create a new XML date , I want to write these data to an external text file to use it by PHP but I don't have much information about it .
Note i want to append to the text field n't write .
View 1 Replies
Dec 11, 2009
Once the text file is assigned to a variable, spaces for example are replaced by %5F.My text file: bddtxt.txt Content of text file: 1_1_0,2 3_2 3 4_0,4_5_0,5_6 7_0,6_8_0,7 8_9 10_0,9_11_0 My script (Flash 6):
ActionScript Code:
var liens = new LoadVars();
liens.load(_global.url+"bddtxt.txt");
[code]....
View 1 Replies
Jan 20, 2010
I have loaded some xml data using an external as file called importxml.as.If I put a trace statement in it to access the content it works perfectly.But how do I access the data from the Flash main timeline or from another as file?I am using the statement import xmlimport but if I then write:trace(xmldata.category[1].word[1].text); I get the message[code]...
View 0 Replies
Jan 15, 2008
im loading an external swf from my parent swf:loadMovie("external.swf", 4);now, on external.swf i have a dynamic textfiled, which should be updated from the PARENT swf:
this is on PARENT swf file:
this.onRelease = function() {
_level4.mytextfield.htmlText = "some text";
[code].....
View 1 Replies
Sep 15, 2009
1. How could I make it where some images/text in a flash file is taken from another outside file. For example lets say I have a image and text that would need to change constantly. The image could probably be done by using a url and changing the image set to that url, but I would rather have it search for a images file name on my computer. For the text is there a way I could use a text document, and have it set up to take the text in that document and display it.
2. How can I make it so when I click a link to an outside url it doesn't confirm that I want to visit it.
View 2 Replies
Apr 8, 2006
Is it possible to build a flash programme that will create new files that can be accessed or edited. I would like to know all the possible ways.
View 17 Replies
Apr 15, 2010
We have a client who wants to share with us flash widgets whose contents can be updated using an external file. Our question is: Is it better to use a .txt file (such as notepad) or a .xml file to input data into Flash?
View 4 Replies
Feb 13, 2012
displaying an error after saving data to an external file:
var variables:URLVariables;
var fLoader:URLLoader;
var fData:URLRequest;
[Code]....
Where can I post a message to display if the file has been saved or not?
View 3 Replies
Jan 10, 2005
I'm loading text from an external file (a notepad). Now all I want is to be able to change the text by loading text from another external file when a certain button is pressed. Basically, I got this as my default text which loads automatically at the start:
loadText = new LoadVars();
loadText.load("data.txt");
loadText.onLoad = function() {
title.text = this.title;
info.text = this.info;
body.text = this.body;
};
But now I want to load text from a different file (data2.txt) by the press of a button. I also have a transition animation so work with me. It would be...
b3.onRelease = function() {
if (_root.section != "photos.swf") {
//I also got this pic (swf) that changes on the button release//
_root.section = "photos.swf";
_root.transition.gotoAndPlay("closing");
So what exactly do I add to be able to change the text source?
View 1 Replies
Mar 28, 2005
Im trying to make a class that loads in some external data, and then creates some arrays in the class, which names and content are based on the data that are loaded. What i have now, is something like like this:
[Code]...
View 4 Replies
Jan 10, 2005
just one last actionscript stub. I'm loading text from an external file (a notepad). Now all I want is to be able to change the text by loading text from another external file when a certain button is pressed. Basically, I got this as my default text which loads automatically at the start:
loadText = new LoadVars();
loadText.load("data.txt");
loadText.onLoad = function() {
[code].....
View 1 Replies
Sep 2, 2010
I have this Simple Flash banner, that loads text, colors, and entire banner hyperlink from external .txt file into flash.For importing text into dynamic text fields with ïż½varsïż½ set i use
loadVariables("http://www.mysite.com/DIR/data.txt","");
For importing hyperlink onto flash button i use two layers:On blank layer i use:
loadVariables("http://www.mysite.com/DIR/data.txt","");
On button itself i use:
on (release) {
getURL(link1, "_blank");
}
Button has instance set also.Everything works fine and nicely.I use this HTML script to use banner in any website i like:
<object classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://active.macromedia.com/flash4/cabs/swflash.cab#version=4,0,0,0"
id="name" width="468" height="60">
[code]....
Ok So everything works nicely. I load flash i load text, and i also load hyperlink. So after a happy job i went to sleep and other morning i tried to enter website with HTML code, that shows flash and i noticed:
1. Some times flash loads animation, but doesn't load my data.txt and places where dynamic text should be are blank, also hyperlink doesnt work, because it also seems to fail to load.
2. So i press "Refresh" on explorer and data loads perfectly.
3. So i keep pressing refresh some times try to turn of explorer and i noriced that some times it fails to load data and only non dynamic flash animation is played, and some times it loads it nicely.
View 4 Replies
Feb 21, 2007
I trying to load indivual strings of text from an external file. example: I have a movie that navigates from frame to frame. on each frame I'd like a line of text to load into the movie. When the user navigates to the next frame the text loaded vanishes and is replaced by another line of text. This can be done with separate txt files, right but I was wondering if and how it could be done using one external text file.
View 2 Replies
Mar 23, 2010
I have combed the Web and I can't seem to find the answer. All I want to do is display some html-formatted text, located within an external XML file, in a dynamic text field in Flash CS3.
I don't have any code to supply because at this point the only thing I'm trying to display in the text field is "<b>This</b> is a <a href="http://www.google.com">test</a>." For this hypothetical example, I could call the text field myTextField. I just need to know how to format the AS3 code to get the XML to display inside myTextField.
View 7 Replies
Sep 14, 2010
Can I Use data from external Text file for JavaScript alert message in flash? I wanted to change the alert message dynamically using the external text file.
1. I created the text file with data as: &Enter=Please Enter
2. And the flash action script i used is as below..
var message1;
message1 = trace(Enter);
loadVariables("temp.txt", "");
getURL("javascript:alert('"+message1+"')");
But this is not working properly. It showing me the alert window but the message it showing as 'undefined'
View 5 Replies
Aug 23, 2011
How can I save data to a text file and also append a record to data in an existing text file? I've used Authowrware previously and it was quite easy to create a large string of data (a comma separated list) and export that to a text file (and create the text file if it didn't already exist). I could then easily append additional rows of data (records) to the text file. We want to build a questionnaire that will store the data locally on the computer in a text file. Each record may have a few hundred data points in a comma separated list.
View 8 Replies
May 18, 2005
I have been working on a Flash movie that loads variable data from an external XML file and dynamically displays the item names in a menu which may then be clicked to display other dynamically-loaded content that corresponds to the menu item that was clicked. I have now come to a standstill in the project as there is something I'd like to achieve but simply cannot work out how. This is my first attempt at working with XML in Flash and one of my early attempts at using variables. What I'm trying to achieve is; once the user has viewed the item's content, they can simply click "next" and "previous" buttons to display all of the content for the next or previous items in the XML document.
I know it probably sounds simple and I'm sure some of you could achieve this in 5 minutes (!) but I can't get my head around some of the coding. I assume previousSibling and nextSibling would come into play here as well as some sort of functions which access arrays of data for the previous and next items, but I'm just not sure how to correctly put these things to use. Rather than post my code and example images of the stage up here on the forums, I've created an html page here: [URL]
View 2 Replies
Feb 13, 2008
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 Replies
Mar 14, 2011
I'm trying to read some data in from a sql source, some of which contains double quotes embedded in the text. I know I can strip the doublequotes, but don't want to go that route if I can avoid it. I've tried replacing to double quotes with hex codes before passing the text via parameter to my flash file, but the text string always cuts off at the hex code, the same as if the double quote were present in the string. For example:This is a "text" stringreplace double quotes with hex: This is a x22textx22 stringesults when read into flash: This is a <remainder is dropped>Yet if I type the same text string in a variable in flash, the string displays the double quotes properly:
View 1 Replies