Data Integration :: Loading And Parsing XML?

Jan 5, 2007

what is the best method for loading external XML (with inherent HTML) content into Flash and into the TextArea component?i have an image loader and a TextArea together on the screen. a "story" is loaded which will present a series of images (in the image loading) associated with a corresponding text (in the TextArea). a "story" has multiple image/text sections that are navigatied through with FRWD/BACK buttons. any given section can also have multiple sub-sections or "frames".

[URL]

below is my proposed sample XML structure. i want Flash to recognize how many sections and frames within sections there are in each story XML document - in order to generate a corresponding navigation structure (a tab for each section). HTML content will be immediate availble to loadinto TextArea as user move forward in sequence with nav. and images references can also be preloaded into available MC containers to be swapped into place as user navigates forward in sequence. also need to read and store attributes for each node in the XML to come up in MCs in sequence. and must also be able to parse XML in a way to place simple HTML formatted content (within XML) into the TextArea.would Arrays be used?

<story title = "Story Title">
<section num = "1" title = "Section One Title" >
<frame image = "1.jpg" caption = "caption text
here"><b>Content</b><br><br>content

[code]....

View 1 Replies


Similar Posts:


Data Integration :: PHP And Flash Parsing ?

Jul 14, 2006

I have a flash application which contains a "dynamic text"with a var name "myVar" and an instance name "dt_txt".I have a button to which I attached the code:
____________________________________
on (release) {
var lv = new LoadVars();
lv.load ("[code].............

View 2 Replies

Data Integration :: <br> Break A XML Parsing?

Oct 25, 2006

I make a XML connector component parse a XML document.In a node, there is a "<br />" (return to line in HTML)

<book>
<page>

Here some text and a <br /> here ! the code s broken up here

</page>
</book>

My XML connector considere the <br /> as the beginning or the end of a node !...How to avoid this <br /> or other any HTML element when parsing some XML ?

View 1 Replies

Data Integration :: Getting Strange "," Characters When Parsing XML

Nov 29, 2007

Im parsing content to my Flash document using XML. I did this so many times but this never happened to me before..

i get strange "," characters for each paragraph.

Even in the same document i parse another 3 XML and they dont do this :s

here is the xml:

<pag1 nome="Eu, Antão Veríssimo e a mosca">
<p>Eu tive um condiscípulo
amantíssimo,</p>

[Code]....

View 1 Replies

ActionScript 2.0 :: Parsing Data From Mysql To Xml And Loading To Listbox?

Apr 7, 2009

im trying to load data from a mysql table to a listbox. ive figured out how to get the data from an XML file using this code:

Code:
var options:XML = new XML();
options.ignoreWhitespace = true;

[code].....

View 1 Replies

Data Integration :: Loading Data From Php Page Into StartLoading();

Aug 10, 2008

Loading data from the test.php into the startLoading();

How do I load the data from test.php "echo $photo_out;" into the startLoading();

loadVariables("test.php", this, "POST");
infoField._visible = true;
startLoading(test.jpg);

[Code]....

View 16 Replies

Data Integration :: Loading Data From Xml File?

Jan 26, 2008

I am attempting to get data from an xml file load in flash. I followed a tutorial in a new fla and it seemed to work fine, I then tried to adapt it to my own needs which worked fine. But then when trying to implement this into my news section it doesn't seem to work. I am trying to make a news section, that displays the date and news article. This is in within a movie clip, I even tried putting it in the timeline of the scene but still nothing.

- I have 2 dynamic text boxes, date_txt and news_txt

- The xml file is named news.xml,

- both the fla and the xml are in the same folder


This is the actionscript I am using:

function loadXML(loaded) {
if (loaded) {
_root.thedate =

[Code]....

View 1 Replies

Data Integration :: Loading FLV Via PHP

Jul 25, 2007

I've built a custom FLV player that needs to rely on a PHP script to serve it FLV files in order to control access to those files. My player uses the FLVPlayback component.My actionscript makes a call like this to the PHP script:[code]When tested, the FLVPlayback component simply won't accept the FLV served up to it in this way. It WILL work if loading directly from the file system, so I know my actionscript works. I can load just about any other type of file into Flash this way,including JPG and SWF. FLV is the only format that doesn't work.I've added the video/x-flv MIME Type to all test servers I've tried this on, so the server should recognize the file.

View 1 Replies

Data Integration :: Loading Some Variables From PHP Doc?

Nov 6, 2007

I am using loadvariablesnum to load some variables from my php doc, is there a way i can test to see if its loaded or not to jump to the next frame..? Right now I am having it load into a string.text to test if there is text in it, but I don't want to use a string.text

View 1 Replies

Data Integration :: Loading New Image From Xml?

May 3, 2007

i have an image carousel, images being pulled from xml..right now, when you click the image, it slides over and some text appears also comming from the same xml file.. xml set up like this

<?xml version="1.0"?>
<icons>
<icon image="image/Dunne_Lexan.crushed.png" content="Test"
/>

[Code]....

what I would like to happen, is when the user clicks the image, and it slides over, I want a new image to appear from the same xml file here is my AS

View 1 Replies

Data Integration :: Loading An External XML

Jul 21, 2006

Is there a way to load an XML file if it's on a differen server/domain than the html/swf file? I already set allowScriptAccess="all" but it didn't seem to help.

View 1 Replies

Data Integration :: Loading XML Into Flash?

Sep 29, 2008

in loading an XML List intoFlash CS3.

View 1 Replies

Data Integration :: Loading Rss Feed Into Flash?

Apr 3, 2008

I want to load an RSS feed into flash so it is selectable if that is possible

View 2 Replies

Data Integration :: My_FLVPlybk.contentPath - Loading URL From DB ?

May 3, 2007

I am trying to use the FLV Playback component to load FLV's dynamiclly into the flash movie.What I have is a asp page with a Recordset pulling the URL from the DB into the page using Dreamweaver. This is all fine.Now I have one instance of the FLVPlayback on the stage with flash .I am trying to load the url for the FLV file into the movie, via ASP, MsSQL and a url parameter. What I am trying to accomplish is to have a link on a page with a url that will open a popup window. In this window I will have the Flash file that will load the FLV based on the URL, and play it.

View 1 Replies

Data Integration :: Loading Bunch Of Swf (movies) With XML

Mar 28, 2007

I used a sample of macromedia to get a XML file with the names to the swf files i want to import in the stage. That works (for now). But now i also want to at a link (using getURL();) to the movieclip where the swf file is placed.

PS. i used gallery_tween.fla from the sample folder if someone wants to know...

View 1 Replies

Data Integration :: Error On Loading Crossdomain.xml Over In IE?

Mar 15, 2007

The flash movie in my server (www.mydomain.com) is trying to access data from a different domain (www.otherdomain.com). I've placed the crossdomain.xml in the webroot of the otherdomain. I am getting flash error on accessing the data from otherdomain. When I tracked the HTTP request sent, it shows only one request with URL: https:[url]....

INET_E_SECURITY_PROBLEM.Its clear from this result that IE is not able to load crossdomain.xml file from otherdomain.The same application works in Mozilla Firefox and failing in IE6.

View 6 Replies

Data Integration :: Loading Local XML File?

Jan 3, 2007

In my Flash application, the SWF file is located on a serverand is downloaded to clients in a controlled network. I want to beable to load XML data located on the client machines into the SWFfile. It looks like security settings is not allowing thi tohappen, as the local files are treated as a separate sandbox.If I were to use System.security.allowDomain, how do Ipecify local files? It's not a domain or URL. Or is there another way to do this? I'm wading through thesecurity information, but I haven't found the solution yet.

View 5 Replies

Data Integration :: Dynamically Loading PNG And GIF Files Through XML

May 19, 2006

I have a project where I need to use XML to dynamically load PNG and GIF files not just JPEGs. I have found forums and information from 2004 of users complaining about the capability not being available but since then we now have Flash 8.

View 2 Replies

Data Integration :: About Loading Variables From Url Link?

Oct 18, 2008

I would like to make a xmas ecard and want to include the recipient's name and greeting message in the swf.I would like to define the name and message within the url so I can custom it easily and send to different people: http:[url]....

View 1 Replies

Data Integration :: Loading Variables In FLV Player?

May 21, 2006

i have edited an open source flv player's fla file for my needs,but ihave some problem.it uses XML when getting video source URL but i want it to read from QueryString or a variable from ASP.How Can i do this? the original codes are like this,these are for reading from XML source;

View 1 Replies

Flash :: Data Integration - Loading Images With XML In CS4

Jan 19, 2010

i am creating a dynamic data list to show data for upcoming events on my website [URL] inside of the flash user interface I created: [URL] I loaded the XML file into the flash movie frame but the image will not show up Here is the XML file code used:

[Code]...

View 1 Replies

Data Integration :: Flash Not Loading One XML Attribute?

Jun 17, 2007

I have a Flash MP3 player that loads the song list from an XML file. I'm trying to set it up to take the customer to the online store to purchase the currently playing song. The player successfully loads the track name, artist name, and url to the song, but for some reason does not appear to the load the new attribute of buylink that I have just added. Given the code below, my buylink value is returned as undefined.

View 3 Replies

Data Integration :: Positioning SWF When Loading Dynamically To TextField

Sep 3, 2007

I'm loading a XML to Dynamic Text field and all is OK, but the SWF is show at left out site of the flash document, I only want put a icon and a text in the same line, something like this:
<body><img align="left" src="icon.swf"
width="15"><mess>You have 4 new
messages</mess></body>
I try with many kinds of tags, CSS and attributes and nothing.

View 1 Replies

Data Integration :: Loading ISO-8859 (Latin1) Characters From XML

Aug 29, 2007

I see my accented characters displaying properly in my text editor. And I've confirmed that my font is OK in Flash by testing a dynamic text box--the accents in the test appear OK, so it's not the XML file or the font, it seems to be the XML loader itself.My XML file looks like this (there are Latin accented characters in the text node:[code]

View 2 Replies

Data Integration :: Loading XML Using A Custom Class And Accessing It From Other Classes?

Aug 30, 2006

I began with a class for a movie clip rollover function FigureRollOver. It works marvellously. Three things happen:

1) it loads XML from a file "mod1_fig1.xml" and uses another class, XMLMember, to retool the scoping of the XML so that I can get at it

2) an onload call inside of XMLMember calls the myOnLoad function and transfers the XML into an array.

3) so long as the array is finished building, rolling over a movie clip attaches a new movie clip with the rollover text in it.But I don't want all those functions in one because I need it to be more dynamic, starting with being able to load any old xml file instead of just "mod1_fig1.xml", plus it seems lik overbuilding to have all of that in one class, so I've separated out the loading of the XML and building of the array into its own class, FigureXMLLoader. FigureRollOver is then left to just attach the rollover with text in it, extracted from the array built by the new class.

Problem is, though the array builds inside FigureXMLLoader, I can't figure out how to make it available outside the class. I know that I'm constructing things in the wrong order, and that the array needs to be somehow built inside the class function to be available, but I can't figure out how to do that. A cruddy work-around is to put a function call at the end of the building of the array, which calls yet ANOTHER function on the main timeline of my .swf to put the array I've just built into a new variable.This works, but it's messy. It seems like I should be able to have one line of script in the .swf that generates an array on the main timeline (or just a public array) which I can then access from my FigureRollOver class:

var myRollOvers:Array = new FigureXMLLoader("mod1_fig1.xml");

Here is FigureXMLLoader (see comments in the code for more details) which obviously does not return an array as it is, because of all the working around I've had to do. Note the "testing" variable, which can be traced from the main timeline of the .swf, but I will get "not what I want" because of course the array hasn't been built yet, and never will be, inside of the declaration as it is. How do I get it in there so I can return an array?

View 2 Replies

Data Integration :: Loading Images Stored As BLOBs In MySQL

May 10, 2010

For various reasons, I would prefer to store binary data like images and videos as BLOBs within a MySQL database and have Flash retrieve that content directly from the database as opposed to getting it from a URL on a fileserver. So, I have written a PHP script that Flash calls which does a database query and returns the bitmap data from the BLOB. I have verified that the image data is being sent from the database through the PHP, but Flash either doesn't display the image or gives me an error saying that it is an unknown type.

[Code]....

Is there a way to get Loader() to accept bitmap image data that is retrieved from a BLOB in a database? Should I try to get PHP to mimic the response from an HTTP server or is there another way to load bitmap data stored as a BLOB into a display object?

View 2 Replies

Data Integration :: Loading Dynamic Xml Table Cells / Layout / And Functions

Oct 20, 2006

i'm trying to load a full html page with layout table cells intact and full function (like an i frame)i can load text and image but i can seem to get the entire page flash just lods it how it wants.does anyone have an idea? Can this be done? i've tried it with a dynamic text field, componets, and i can get falsh to see table / cell layouts at all.[code]is how i load my content. but making several dynamic text fields to load one page of content is working my nerves.URL...

View 2 Replies

Flash :: Data Integration - Huluesque Video Integration

Jan 1, 2010

I have a video player that is currently using XML for its video library which is all fine and dandy. Now I have some developers working on a CMS type page in PHP that is going to hopefully pass some sort of information to my player that will let it know where the video is stored on our server. Is there a way to do this without using FMS? If so does anyone have ideas where I can find the information for it.

View 2 Replies

Data Integration :: Flash CS5.5: Loading XML-file Causes A "Security Sandbox Violation"

Jun 15, 2011

after upgrading from CS3  to CS5.5, i get a "Security Sandbox Violation" when loading a XML-file.  With CS3 everything was fine, but now my file is not working any more.  The XML-file and my SWF-file are stored in the same directory and it  nether work local nor on the webserver.
 
I don't know the correct message in english, but flash tells me something like:
 
"Security Sandbox Violation"
access to file:[]data.xml disconnent - not allowed from file:[]myfile.swf
 
Why  am I not allowed to load an XML-file from the same directory/domain any  more? And how can I get my data into my flash-File now? It  doesn't seems to be a Flash-Player-Problem, because an older version  with the same code still works. So the problem has to be located in  Flash CS5.5

View 1 Replies

Data Integration :: Loading Remote XML File Into SWF File?

Jan 28, 2007

I have a problem loading remote XML file into SWF file. Im doing a banner for a client with adds that is supose to load constantly updated XML file from my clients server and load some images into flash form it. Everything works fine when i test the movie (CTRL+ENTER), but when i publish it and test it from explorer, XML file is just not loading into flash.

View 7 Replies







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