ActionScript 2.0 :: Clearing And Reloading XML - New Data Comes Up Undefined

Jan 29, 2009

I can load the xml in the first time just fine but when i try to reload the xml to get the new data it comes up undefined. What do I need to do? Do i need to clear the xml object and then reload the data? Am i reloading it wrong? I call the code again using this function and the data comes up undefined

[Code]....

View 1 Replies


Similar Posts:


ActionScript 3.0 :: Clearing And Replacing XML Data?

Jul 24, 2009

I'm creating a gallery of thumbnails and main images from a loaded XML file.The initial load is fine and all is working, Thumbnails are produced in a masked movieclip and the first image is defaulted to display at start perfectly well. The gallery also has several categories in it which a user can view by clicking a button for each. eg Sites, Designs, Cards etc. Each of these categories information are held within different separate XML files. eg sites.xml, designs.xml and cards.xml etc.

Now here lies the problem. When a user clicks a new button the new XML loads the new information and the files display, but on top of the thumbnails/main images that were already present because the file that was initially open has not cleared. So what I want to do is simply remove the data that is currently being displayed, so in essence removes the images etc. Then replace those with the images from the new XML file.Is this at all possible because from searching the last week I haven't been able to find it. I guess I can't see the wood for the trees at the moment.

View 7 Replies

ActionScript 2.0 :: Clearing All Stored Data In An Array?

Apr 30, 2007

I was wondering... i thought this might be a dumb question to ask but ive been wondering if it is possible to remove all the data that was inserted into an array?

i.e.

ActionScript Code:
var loadAllThumbnails:Array = new Array("poop1", "poop2", "poop3", "poop4", "poop5");
someBtn.onRelease = function(){
//clears/emptys the array when released
}

View 4 Replies

Flash :: Accessing Shared Object Data Without Reloading Swf

Jun 24, 2011

I'm wondering if it's possible to access a shared object's data (once it's been changed) without reloading the swf. Specifically, I have two swfs: one changes the data in the so and lets the second swf "know" via a localconnection. I have a function in the second swf that fires via the local connection.[code]This function looks for the new value however it doesn't show the updated value in my textfield unless I refresh the browser. Thoughts?

View 1 Replies

ActionScript 3.0 :: Video Player - Clearing Data (Playlist) In URLloader

Jul 7, 2009

I am a fairly new as3 user and am working on a video player that loads an xml file into a URLloader as a playlist. I have everything working but I want to add a few buttons to change the content of the playlist. All of the data will come from the same xml document, so I don't think i have to reload the xml. I can get the content to load when the button is pushed, but it jsut adds to the previous content instead of replacing i. How to clear the content before adding?

Here is my code (that relates to this) so far....
public class playlist_controller extends MovieClip {
private var xml_loader:URLLoader;
public function playlist_controller():void {
////load the xml file
xml_loader = new URLLoader();
[Code] .....

View 2 Replies

Data Integration :: XML LoadMovie - Getting Undefined Error Message?

Jun 1, 2007

I am in the middle of making an xml driven menu. Each button has an image which loads from an external folder and 3 dynamic text fields. The content for the text fields is taken from an external XML file and I would also like the image to be defined in the XML file. The problem I am having is when I use the code attached below .I get the following error message; :

'Error opening URL
'file:///C|/Documents%20and%20Settings/barry.gee/Desktop/undefined'

However when I manually enter the image url as commented out in the attached code the image loads fine.

View 1 Replies

ActionScript 3.0 :: Undefined Resutl Tryng To Get Data To Flash With Php?

Mar 8, 2012

I cross with a problem that I do not understand why is happening. I a AS3 and php getting the results from the database. The php is working fine since I test it. but the request from the flash give me a result of "undefined" .I have a text area on the flash file in which is supposed to show the results from the php. This code so far:

AS3:
import flash.display.*;
import flash.events.*;
import flash.net.URLLoader;[code]....

This is most the code and I get a undefined result in the textarea in flash.

View 43 Replies

ActionScript 2.0 :: Loading Data From Txt File Shows Undefined?

Feb 2, 2009

I have this little code, just loading text from a file, but as the title says, the variable s seams to remain unchanged :S

Code:
var s:String;
var loadText:LoadVars = new LoadVars();

[code]......

View 9 Replies

ActionScript 2.0 :: Lading Data From Txt File Shows Undefined?

Feb 2, 2009

I have this little code, just loading text from a file, but as the title says, the variable s seams to remain unchanged :S

[Code]...

View 1 Replies

ActionScript 3.0 :: Undefined Property Flash.data:SQLStatement

Apr 20, 2011

Does anyone know why I'm getting this error on the code below?Scene 1, Layer 'Layer 1', Frame 1, Line 441119: Access of possibly undefined property result through a reference with static type flash.data:SQLStatement.[code]

View 1 Replies

Data Integration :: Undefined - If XML Attribute Contains German Special Chars

Nov 8, 2007

I found out that if XML file's attribute contains German special chars (chars with umlaut, like:..) then I get "undefined" answer when I try to read an attributes value. I tryed to change XML file encoding to: "UTF-8" and "iso-8859-1" but still no luck. "system.useCodepage = true;

View 2 Replies

ActionScript 2.0 :: Display The XML Data Once I Click The Button - Getting Undefined Error?

Dec 7, 2009

What I want to achieve is to display the XML data once I click the button. But I kept getting undefined error.Here's what I have:

t1.onRelease = function (){
xmlDoc = loadXMLDoc("bestofposts.xml");
x=xmlDoc.getElementsByTagName("message")[0].childNodes[0];[code].....

View 6 Replies

Professional :: Local Shared Object (undefined) - Retrieve Data From A SOL File

Mar 14, 2011

I am trying to write a piece of code to retreive data from a SOL file : this is my code :[CODE]//get External interfaceimport flash.external.*;

[Code]...

How can that be ? what can I do ? What am I doing wrong ?(bear with me, as I said, I'm kind AS newbie).

View 4 Replies

ActionScript 3.0 :: Load Data From Different Variables - The New Variables Come Back As Undefined?

Jun 15, 2010

I'm writing code that takes data from mysql that's processed by a PHP script. It's actually a bit bizarre, at least to me. Anyway, here's some basic AS3 code that's moving toward what I want to do:

var loader:URLLoader = new URLLoader();
var urlRequest:URLRequest=new URLRequest("receive.php");
urlRequest.method=URLRequestMethod.GET;[code]....

For some reason, the statement "trace(evt.target.data);" produces a whole pile of garbled text before the actual stuff that it's supposed to show Because of problem #1, I've had to include a throwaway variable at the beginning, otherwise the first variable I try to pass into AS3 comes back as undefined. This causes errors when I run my flash movie in the IDE, but when I run it from the browser it doesn't seem to have any effect.But this is the strangest thing of all whenever I make any changes to the database (and subsequently try to load data from different variables), the new variables come back as undefined. For example, let's say that I add another entry to the database, and decide to load students 2, 3, and 4 instead of 1, 2, and 3. When I do that, any new data I've added comes back as undefined, even though when I view the PHP output in my browser, it looks just fine.

And now for the REALLY bizarre part: I'll copy that output, paste it into my PHP script as an echo statement, comment everything else out, and my flash movie runs fine. Even though the output from the PHP script is exactly the same, it gives me errors.

View 9 Replies

Actionscript 3.0 :: Why The XML Is Not Reloading

Jan 30, 2009

I have build a simple flash application to try to make changes to an xml and save it. The application has two buttons: load xml - that loads the xml and write xml - that saves whatever is in the textbox to the xml. Then when pressing load xml again, it should load the modified xml.

You can see the file here: [URL]

It works fine on localhost, but as I uploaded it to the sever it doesn't work!

flash code:
Code: Select allvar myLoader:URLLoader = new URLLoader;
var xml:XML;
var myRequest:URLRequest;

[Code].....

View 2 Replies

ActionScript 3.0 :: SharedObject Data - Arrays - Error #1069: "Property Undefined Not Found On BaseScreen And There Is No Default Value"

Mar 5, 2012

The player buys engines these are added to an array called _model.purchasedEngines. During save i'm trying:

[Code]...

View 14 Replies

ActionScript 2.0 :: Loading Data From An Xml-file And Dynamically Create Movieclips With Textfields Inside Of Them Return "undefined"?

Oct 22, 2004

i'm loading some data from an xml-file and dynamically create movieclips with textfields inside of them, but I'm kinda stuck. I'm not up to the point where I completely understand how you can refer to a nested object using this syntax: _root[movieClipName]. If you want to nest something inside of that movieclip, you have to work like this:

[Code]...

View 1 Replies

ActionScript 3.0 :: Flash Error 1120: Access Of Undefined Pro: MovieclipAccess Of Undefined Property: Movieclip

Oct 12, 2010

im having problems getting some as3 generated (not drawn on stage) movie clips moving across the screen.

Code:
package {
import flash.geom.ColorTransform;
import flash.display.MovieClip;
import fl.motion.Color;
import flash.display.*;

[code]....

View 7 Replies

IDE :: Replacing "Undefined" Text When There Is No XML Data

Feb 16, 2010

A client has asked me to update the create for a flash widget, they have a problem with the widget displaying "Undefined" where there is no data being pulled in from the XML. What they have asked me to do is write a bit of actionscript to display "Sorry, there is no offers at the moment" instead of it dipslaying "Undefined".

[Code]....

View 1 Replies

ActionScript 2.0 :: MOVIECLIP Not Reloading?

Nov 5, 2009

I have frame 1 and frame 2 which are almost the same. Both have a movie clip TAB. This tab has buttons: button 1, button 2, button 3. When I click button 1, it will show a text, and so on..If I am at frame 1, and I click button 2, it is ok. But when I go to frame 2, TAB movieclip is still at button 2! I think it is not reloading.

View 2 Replies

AS3 :: Reloading A Tween Movieclip

Jun 16, 2011

URL...Once you get to my portfolio menu homepage, click on Print design. Everything there loads fine.The trouble is going back to the portfolio movieclip and having it display those menu buttons again.As you can see, if you try to click the view portfolio button at the top, it loads that movieclip to wherever you left off at.Basically, my question is: How can I have my "view portfolio" button reload/refresh the movieclip (page1) from the beginning in my pagecontainer_mc?

-page1 is a movieclip that shows my portfolio buttons.

-page2 is a movieclip that show the "about me" section.

-pagecontainer_mc is an empty movieclip that loads page1 or page2.[code]

View 5 Replies

Flex :: Reloading An Image?

Dec 29, 2009

I have an image that I am attempting to load, and then reload. Here is my code for the loading of the image:

public function loadImage(url:String, _w:int, _h:int):void
{
this._stwidth = _w;

[code].....

View 3 Replies

Actionscript 3 :: Loader Keeps Reloading Same Swf Over And Over

Feb 18, 2011

I have a flash animation made on the main timeline of the SWF with a couple of layers, some functions and some keyframe labels. For example, i have a movieclip of a star that come across the screen and then triggers a dispatchEvent for the main timeline to go to frame label "next".[code]That SWF alone works perfectly. Problem comes when I try to load this SWF into another one.What happens is the loader keeps reloading the SWF over and over, overlapping them and the actionscript that's on the main timeline of the loaded SWF is ignored, the timeline plays continuously. Here is the code i use to load the SWF:[code]I have found a workaround by putting the entire animation inside one main movieclip and put that movieclip on the main timeline (one keyframe, one layer, no actionscript) and then load it. That way it works fine but it feel more like a patch than a solution. I would really like to know why it's bugging when you try to load an external SWF that use the main timeline with multiple layers, keyframes and actionscript.

View 1 Replies

ActionScript 3.0 :: Reloading And External SWF?

Jun 26, 2009

I have an external SWF with some classes.I have a separate (main) SWF with the design and basic code that calls on the external SWF's classes.If I had to change code in the external swf and republish it, how do I use the updated SWF's class without having to republish the main SWF (the one with the design)?

View 0 Replies

ActionScript 2.0 :: Reloading MCs From Buttons?

May 26, 2009

I have 4 buttons on Layer 1. button_1 to button_4. On Layer 2 I have 4 movie clips each with a timeline span of 5 kf's and a second layer above with a Stop action on the 1st and 5th kf. Each button has a piece of AS on it as follows:

on (release) {
_root.slide_1.play();
}

Each movie clip has an instance name from slide_1 to slide_2. Now when I preview the SWF and click on each button each MC will load and play BUT I have to click on the same button again to make the MC disappear. If I click 1-4 in that order once I click the 4th button and the MC loads for slide_4 I cannot make any of the previous MCs load anymore.

Now I realize there are more advanced ways to make this happen and I am using Flash CS4 but I'm not much of a programmer and can't seem to figure out why this is happening.

View 13 Replies

ActionScript 3.0 :: LoadMovie Reloading Over And Over?

Jun 12, 2009

I created an external .swf that plays an mp3 and functions as a mute/unmute sound toggle.On its own it plays/toggles fine, but when I use loadMovie to load it into my main .swf it just starts reloading over and over until the song has started one after the next and it becomes a jumbled mess of overlapping songs.I'm going to keep searching through the forums, but does anyone have any clues? I use loadMovie for an animated gif .swf in the same main .swf and that doesn't give me any issues so I'm curious to know what my oversight is.

View 2 Replies

ActionScript 2.0 :: If Undefined Dont Show Text That Says Undefined?

Jul 12, 2007

i am using flash, .Net, and MySQL and have elements (text fields) posting in flash.Question is, if the table in the data base is not holding the var char how can I set the text field in flash to not show undefined and just be blank?

View 6 Replies

Uiloader - Reloading Same Content A Few Times?

Jan 26, 2011

I have to dynamically load an image in 2 separate places, but I don't want to have to load the same image twice (this consumes more bandwidth and makes the user wait longer than needed).Is there a way to, say, copy the contents of a UILoader into the contents of another? I am aware that flash performs caching, but I still see a slight loading delay on subsequent reloads.I am using as3, btw, on flash cs5.

View 1 Replies

Reloading Swfs Inside Movieclip In IE?

May 19, 2009

I have a website i'm working onnd it works fine in safari and firefox, but when I run it in explorer it doesn't  Whats going on is that when you go to the homes section of the site, each home's section is a swf that is loaded into the main movieclip.In explorer these swfs load fine the first time around, but when you return and want to load the swf/section and see it again, they get stuck and although they appear to load, i'm not sure if they have and are getting stuck on the first frame or they are not loading, or there is something going on with the cache.I am loading from the main movieclip using a container with the following code:

var homeLdr:Loader = new Loader();var homeURL:String = (MovieClip(root).gotoArea)+"Eng.swf";
//gotoArea names the swf to loadvar homeURLReq:URLRequest = new

[code].....

View 6 Replies

ActionScript 3.0 :: Reloading SWF A Second Time Gets An Error

May 15, 2011

I'm having an odd issue with reloading SWFS. I start of with loading my SWF:
 
var req:URLRequest = new URLRequest( "RegionalIntro.swf" ); introSWF = new Loader();introSWF.load(req);addChild(introSWF);Then once I'm finished I unload:
 
removeChild(introSWF);introSWF.unloadAndStop(true);Now when I want to reload the SWF I run the first bit of code again I get this error:
 
TypeError: Error #1009: Cannot access a property or method of a null object reference.I cant work out why I'd get that the second time it loads and not the first. It's supposed to just be the same? This is being done inside Windows Projector .exe file, it's going to run as a kiosk application. I can catch the error by surrounding all of the code in the function at the top of the stack trace with a try/catch block. I trace the error and its the same, the weird thing is all the code executes as expected. All works fine and then throws an error

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved