I don't know what did i miss...and I am new to actionscript. I have 5 bottuns to trace 5 set of data from xml. when but when i press, i get this message:
TypeError: Error #1010: A term is undefined and has no properties.at MethodInfo-1()
menas: I can't access the XML data by myXML.member[i].@mname. What I don't understand is, I can access XML by myXML.member[2].@mname, and I have for loop the length of XML data. why I still access by member[i]?
So, you have a sprite, you draw some graphics, you set cacheasbitmap=true... I can't seem to access the newly created bitmap data, to access the dispose() method.
How to store the data text in Access databases using flash form and to search into the database. It is possible to work without server because I don't want to put this flash file on the net. how to make databases and to connect with flash and to have possibility to search the database, but to work database in the local computer.
Is it possible to read/write data to and from Access with Flash in a offline format? I need to create a stand alone system that users can log into and pull information from - but it will not be networked or have any sort of internet connection.
I have a simple microsoft access database (table with a handful of fields).I want to make a flash form that operators can use on mac and pc to enter information into the database.I know little about databases and although I've worked as a designer with flash for years, i know little about the latest scripting too.
I know this one might be easy but I couldn't figure out.I have a List control that retrieve multiply data from Mysql. When a use clicks the data on List, The datagrid will display the data and the product image will show.I can see the multiply data shown in my dataGrid, but I don't know how to get the individual data shown.
I've got a job for a client that includes creating a flash movie that will contain a number of thumbnails that represents links to avi movies, powerpoint presentation etc. The thumbnails need to be updated and added to on a regular basis. Is it best to call the thumbnails from an xml doc so the client can update easily?In the flash movie the thumbnails will be presented as a horizontal slideshow that needs to scroll horizintally on mouseover, and the thumbnails will also display a caption on mouseover. Is this all possible if the images are coming from an external source such as an XML doc.
I'm creating an application that will run on users computers rather than online. In the app users will have the option to save certain preferences as xml, and load their preferences using FileReference.browse() to locate the saved xml on their HD next time they use the app.
I'm using the FileReference class to save the xml out which works perfectly, but I'm struggling with how to access the data of the xml once I've browsed to it and clicked 'select' in the dialog box.
Here's some simplified code:
ActionScript Code: import flash.net.FileReference; var fr:FileReference = new FileReference();
I want to create an array and fill it with a bunch of stuff, but its getting too crowded in my document class..can I just create a class of 'data', ie variable declarations and arrays, and then reference that from the document class?
I am developing movie with AS 3.0. I want to send a big array of data to MS Access using asp. Normally we were doing it with sendAndLoad method for the old action script versions. But now using with CS 5 and AS 3.0. so I have to use sendToURL or NavigateToURL or loader.Load.
But in this case i need to send large data so I can't send it as QueryString, and not want to use navigateToURL since i found that it carry data on its URL.
How could I retrieve the data from asp page and send to MS Access if I am using sendToURL or loader.load method?
I have a quote reader where a quote is loaded from an access database through asp. First quote is animated in, waits for 6 seconds then replaced by the next. It is not working properly as it sometimes loads the first quote, but sometimes doesnt! None of the other quotes load in either......not used to doing this sorta stuff in flash so any help/guidance would be appreciated. Heres the code:
Code: //Import the filter class import flash.filters.DropShadowFilter; //Create the dropShadow filter
But it only works if you put your swf in server (www.yourswflocation.com). In my case, my swf is desktop application. I dont put it in any server. How can i access the data from internet?
I have created a NetConnection to a Coldfusion component and the responder is tracing the fact that I have some data being returned.
My question is: How do I access the data that is contained within the responder?The coldfusion component is returning a recordset and with actionscript 3, I have no idea how to get to the data contained within the reposnse.
I am running CS3. I want to access and update a MS SQL database through ASP but I could not find data components to download for CS3. I found Phil Heinz's tutorial[URL] but it is for MX Pro 2004. Should I be using Flex to do this or will the Flash 8 data components work on CS3?
I have a class LoadXML which loads and extracts data from an XML file. I am using this data for my Main class by creating a new LoadXML class. I now want to use this data for my other classes but without having to create another new instance of LoadXML. Since global variables dont exist in A3, I tried creating get methods in LoadXML and then returning these values into variables in the desired classes.[code]
Is it possible to read numbers and names from a Flash page before they are rendered by the browser ? The webpage is changing dynamically and I would like to capture the data every about 60 minutes. I have no access to the Flash website but I might be able to modify an open source browser. OS is Win 7 and I can speak a little C++.
What are the options (or is it possible at all) for a web page (running on a remote server, not localhost) to access a data stream (not video) coming in via the USB port of the local computer?
Ideally this would work cross-platform (Windows, Unix, Mac anyway) and the local computer would not have to download/install anything to make it work (beyond what you can reasonably expect a computer to have)
An embedded Java applet seems the only way, but I'm wondering if there's any other technologies that could do it. If the restriction is lifted so that the user can install something (basic for non-techies, not setting up a local server running node.js for example) does that make more things possible (Flash?)
I'm developing an application "with Flex Adobe Builder, AS3" that will add contacts in the user contacts and may retrieve some and add events and get from the user calender.
Flex didn't provide and API to do such a thing yet, so, can I access the contacts data base by it's uri and select and insert into it directly ?
I'm having a real difficulty in action script 3 using my xml data from an external source. I have no difficulties importing or manipulating the xml data, the difficulty lies in accessing the information in a different function.
I have two frames, and I would like to set the textfield's text on frame #2 of the textfield's content on frame #1. How can I do this? Here are the codes: Frame #1(I've got an input textfield(bemenet) and a button(gonb) on it):
I used this call: "dataXML.APARTADO.APARTADO1.text()[j]" to acces the second level items in a XML loaded file in a for loop.Is there a way to substitute the APARTADO1 level for a variable?What I want is to access APARTADO1, APARTADO2... in the XML file with a variable. I have tried to substitute it by a variable string but it returns "null". I don't know why. If you need more information I can attach my code.
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.
Just when I think I understand something! How come, when I load an xml file as follows, I can't access the data from outside of the loading function? This code returns a null object reference error.
Code: var instituteList_XML:XML; var xmlLoader:URLLoader = new URLLoader(); xmlLoader.load(new URLRequest("instituteList.xml")); xmlLoader.addEventListener(Event.COMPLETE, xmlLoaded);