XML Data Parsed To Dynamic Text Field Within Buttons?
Sep 2, 2010
I've got my XML file loaded and parsing correctly with a trace statement.
I want to have each text identified as marketLocation1, marketLocation2, etc up to 150 and I wanted to use a 'for loop' to place the value of that XML node into each labeled text field, and each individual text field is buried inside a button so that the button displays on mouseover an associated XML fields data. Each button would also be corresponding labeled market_1, market_2, etc.
Meaning, I mouse over a dot on a map (button) and it pulls up a statistics balloon about that location specific to our companies needs. I'm a total AS3 noob, so I'm not sure if I can preload the data for that button into it's specific text fields.
Specifics are for the xml/flash file
Code:
<market MarketID=1>
<marketLocation>Raleigh-Durham-Chapel Hill, NC</marketLocation>
<marketPopulation>2,600,000</marketPopulation>
<marketArea>100 sq. miles</marketArea>
</market>
I have markets divided up into regions. I have the base map, which when you click each region goes to a new labeled scene on the root timeline. The scene shows a closeup version of the region. On that region are the dots for the markets. Each dot would have an up state and over state (displaying the pop-up balloon with data) etc.
I'm working on the first 'button' as the initial test and what I want to do is make is that i can use a For loop to cut down on the code, using the variable i in place of the "1,2,3..."
The first button, market_1 is in a labeled scene SERegion on the main timeline. While the code I'm using to parse all the fields is in frame 1.
When I try to place the value of marketLocation located inside the button market_1, I am trying to do this when I parse the data
Code:
function parseData (marketInput:XML):void {
market_1.marketLocation1.text = marketInput.market.(@MarketID == 1).MarketLocation.text();
}
When i compile, i get the error 1119: Access of possibly undefined property marketLocation through a reference with static type flash.display:SimpleButton
MarketLocation is also in just the Over state of the button.
View 2 Replies
Similar Posts:
Jul 17, 2003
Is it possible to login through flash using one Dynamic Text Field and one Input Text Field and no buttons? If so how? I have seen many tutorials dealing with logging in to PHP using flash but it requires you to make your own php scripts which i am not familiar with. Can some one tell me how to do this with PHPBBs existing php scripts... I want to be able to login thorugh a Input Text Field box and have it verify it in PHP and also be able to register and view other PHP info such as users online and FAQ..
View 2 Replies
Oct 14, 2011
All I want to do is add text from my string to dynamic text field when I click dynamic buttons. What should the as code be for this? Here is my code. Right now I just have the click returning another shape.
[Code]....
View 2 Replies
May 23, 2007
I got a music portfolio web site running PHP, MySQL and Flash. There's a page showing all the artists my client worked for and when you click on a song title, this title is passed as a variable to a PHP page then to a Flash page. The Flash page contains an actionscript music player which then looks for the right audio file in the database and plays the song. Everything works great except for the dynamic text field which displays the song title. If the song title contains an apostrophe or a single quote, the Flash dynamic text field then shows the apostrophe.[code]
View 1 Replies
Sep 28, 2010
I have 2 input textfields on the stage and 1 dynamic textfield.
-input1 is for quantity
-input2 is for page count
When a user enters a number into the page count it makes a calculation and places the outcome into the dynamic textfield. This textfield is for the individual price.All of this so far works. What I want to do now is create another dynamic textfield for the total. So the individual price is multiplied by the quantity and this result is put in the new dynamic text field. I have the code for that working but here is where it gets tricky (for me anyway).The total price is to start off invisible. When I roll over the individual price the total price is to appear (For a test lets just say when I roll over an area the total price appears).To stop cursor flickering this should be done inside a movieclip. So... I have create a movieclip and placed a dynamic textfield inside it. They all have instance names BUT how do I reference it in script?I need to tell the resulting calculation to be placed inside the textfield which is inside the movieclip. If it isn't inside a movie clip I can do it. But how to I reference it when inside one?
View 1 Replies
Mar 21, 2009
I am using buttons with a dynamic textfield and a function to set the label for various different buttons:
public function setLabel(thisLabel:String) {
visibleLabel.text = thisLabel;
}
I set a label for each button:
btn_mc.button1.setLabel("2 | Al Sabkha Bus Station - Al Qusais Police Housing");
I have a dynamic textfield ... myText ... which I would like to use as a page title ... so once the button has been clicked, the dynamic textfield should update with the label of the button clicked.
View 1 Replies
Jul 27, 2009
i have a dynamic text field which is filled by a list of attributes pulled from an external xml file... this is working fine... i would like to now turn each of these text attributes into a 'button', essentially giving them all event listeners but have no idea where to start for this...? can you turn text field data into interactive objects? or is there a better way to turn xml data into links?
View 2 Replies
Jan 16, 2006
I searched a forum for my problem but I don't found a good answer for my question. It's following:
1. on the stage I have text field - here is loaded external html file
2. two buttons - up and down
3. no scroll bar
and questions:
1. when user scroll text on the bottom of text field "down" button must to be set off (up button is on)
2. when user scroll text on the top of text field "up" butoon must to be set off (down button is off)
how can I check these reasons? I know it necessery is to use maxscroll variable but I can't how
View 3 Replies
Sep 1, 2007
I have a text inside a xml file and i would like to display this text in a dynamic text field, using the xmlConnector.The files are at the following address:[url]............
View 1 Replies
Feb 20, 2008
I've got a flash movie with a menu that jumps to a particular frame to load a page. On that frame, there is a movie clip (instance name: scrollbox_frame), and in that movie clip there is a four-layer animation. One of the layers is not animated but contains a dynamic text box (instance name: about_frame), with multi-line and HTML turned on, and a variable name of "aboutus". This is the code that is triggered by the menu button on the root of the flash movie:
Code:
myVariables = new LoadVars();
myVariables.load("text1.txt");
myVariables.onLoad = function(success){
[Code]....
View 5 Replies
May 19, 2011
I'm experimenting with the XML help files provided on the LiveDocs website and I was wondering how you would display XML datas in a dynamic text string.For instance I have a Dynamic Text Field called "textfield". This is my code.
import flash.text.TextField;
var xml:XML =
<foo>
[code].....
View 7 Replies
Jan 28, 2010
I am trying to load xml data into a dynamic text field. I am able to load, and trace the data but cannot display it into a dynamic field. Here is what i have:
Code:
var xmlLoader:URLLoader = new URLLoader()
xmlLoader.load(new URLRequest("directory.xml"));
xmlLoader.addEventListener(Event.COMPLETE, showXML);
[code]....
What I am trying to achieve, is to produce what I've traced into the dynamic field. Also if there is a way to do that when a button has been clicked. I tried making the function showXML a mouse event, but it didn't work.
View 6 Replies
Mar 6, 2010
I have a dynamic text field and have two buttons. All I want the buttons to do is to scroll up or down a couple lines everytime its clicked. AS2 had something like this:
body_txt.scroll += 1;
View 1 Replies
May 29, 2006
How do I put the contents of a php document into a dynamic text field in a Flash document?
View 1 Replies
May 5, 2006
using buttons to enter digits into a dynamic text field. An example would be an atm machine, where you select digits 0 - 9, you can hit OK or Cancel to clear the field. I can use...
on (release) {
AddDigit("1");
}
...to enter the individual digits.Things that I am unclear about:
(1) How do I link the various buttons to the specific text field.
(2) How do I create the OK button to initiate another action, such as playing a movieclip etc.
(3) How do I cancel the items currently in the field.
I have looked over various tutorials on making calculators, but it is very complex for my skill level.
View 4 Replies
Feb 27, 2007
I would like to be able to dynamically populate a dynamictext field (assuming that's the best component to use) with anarray of data from PHP.I have attached my PHP code and my Flash Code.The PHP code is working fine and generating the array.The first part of the AS code is working as I can see thepop-up window with the PHP array in it. However, I can't figure outhow to get the array to display in the dynamic text box.I have created a dynamic text box in flash with nothing inthe 'instance name' box and 'events' in the var box.
View 1 Replies
Nov 10, 2006
I need the use of the chars â„¢ and ® but only the latter appears. I'm using a loadVars object and an external .txt file which is loading with success, but where I need the phrase "Soo Bahk Doâ„¢ Moo Duk Kwan®," I only get "Soo Bahk Do Moo Duk Kwan®" Why doesn't "â„¢" load?
Edit: I'd like to add that I have chosen to embed all uppercase,lowercase, and punctuation marks, and I additionally added â„¢ and ® to ensure they'd appear, but, the trademark logo still does not appear.
View 1 Replies
Nov 26, 2009
I'm trying to load in xml test data into a dynamic text field.
this is my code so far:
var me_XML:XML;
var xmlLoader:URLLoader = new URLLoader();
xmlLoader.load(new URLRequest("me.xml"));
[Code].....
This, however, loads all the text in with tags. How would i go about accessing each node so i can remove the tags so I can apply a css style to each section??
View 6 Replies
May 11, 2010
I want to load text into a dynamic text field (called 'about_tab') using a class depending on the language selected (by clicking on a flag icon) by the user.
I managed to get this to work when the ActionScript was written directly in the timeline, but am having problems with doing the same thing via a class.
This is my class file:
*******
package
{
import flash.display.SimpleButton;
import flash.display.MovieClip;
import flash.events.MouseEvent;
[Code].....
When I run it, it returns my trace statements that the class ChangeLang and the function xmlLoaded are running, but no text appears in the dynamic text field (I should/want to see the word 'About'). I get this error message:
1120: Access of undefined property about_tab
View 5 Replies
Jan 21, 2010
I have arrays of dynamic text field that took data from an XML file from the database. Everything went well, except for the part that, when I insert a <a> </a> tag inside the XML file, the dynamic text alignment and lines went all weird. I wonder what's the problem with that...
Here's the XML code (I change the content):
Code:
<?xml version="1.0" encoding="utf-8"?>
<newsUpdate>
<entry>
<DESC>Some content replacement.</DESC>
[Code]...
View 4 Replies
Nov 4, 2010
I have created an organizational chart for the company I work for displaying all current employees. Each contact is shown as a button that displays a 'popup' window on rollover. All of this works perfectly. What I want is to create an option to click on each button and the individuals email address be added to a dynamic text field at the bottom of the page.
Just to clarify, I am able to have text entered into the text field on each click, however, clicking on the next button removes the previous text. I want each click to create a new entry in a list. For example: "contact1; contact2; contact3;" etc etc. The end result would be for the user to copy all text (email addresses) from the dynamic text box and paste it into their Outlook "To" section.
View 9 Replies
May 12, 2010
I'm quite new to ActionScript and would be grateful for any help here. I want to load text into a dynamic text field (called 'about_tab') using a class depending on the language selected (by clicking on a flag icon) by the user. I managed to get this to work when the ActionScript was written directly in the timeline, but am having problems with doing the same thing via a class.
[Code]...
View 1 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
Aug 16, 2008
Is there a way to easily get data from mySQL database and display it in a dynamic text field?
View 5 Replies
Aug 26, 2011
I have a simple Google Maps API with external data loaded from XML file (location, lat, long, info etc.). I also have a custom marker as a MovieClip (marker_mc), which works fine, but I want to add a Dynamic Text Field (label_txt) to this MovieClip and load a simple data (<label>) to it from same XML file (distribubtion.xml), so as a result every location would have it's own label on the marker.I know how flash loads XML data, but what I don't know is how to include that in Google Maps API (if it's even possible).
Here's the code:
Code:
// Import
import com.google.maps.LatLng;
import com.google.maps.LatLngBounds;
import com.google.maps.Map;
[code]...
View 1 Replies
May 13, 2011
I have a dynamic text on the stage which gets updated (shows numbers) when some buttons are pressed.I just need to know if it is possible to show the first dynamic textfield in another dynamic textfield.Lets say the first dynamic textfield called "price" and the second one called "price2". when a button is pressed, the first dynamic textfield "price" will show a number. is it possible to show whatever is shown in the "price" in "price2" ?
View 1 Replies
Dec 8, 2010
I'm creating an XML-driven pie chart in AS3 with 2 text boxes in each pie slice. Both text fields are dynamic in the sense that they are populated by the XML doc and then told where to place themselves in the AS3. I've got them both using the same x and y position to place themselves at the moment (which of course puts them right one top of each other), but I'd like to make one of the fields (which acts like a label or a title to the larger number and % text field) place itself in a particular spot around the other text field. The result I'm looking for is to have the smaller "title" text field appear approximately 5 pixels above and left-justified to the larger "percentage" field.
Anyway, here are two sections of code that I've currently got. The first chunk, for the Tags portion, sets the position for the "percentage" text field using a good old x and y method. The second chunk, for Titles, is setting the position for the smaller "title" text.
//evaluate tags
private function evaluateTags():void{
for (s=0; s
[Code]....
View 1 Replies
Feb 3, 2007
Currently I'm using javascript which works fine to pass text from textfield A to textfield B:
Code:
window.onload=function()
{
document.forms.form1.shirtText.value=document.forms.form1.KitGroupID_16_TextOption_38.value
}
Is there a way to pass the textfield A text to a dynamic text input (flash) as I'd like to use the font embedding flash offers. I can make it work when loading a value from a txt file but I'm not sure how to access the value identified above as KitGroupID_16_TextOption_38 and make it appear in a dynamic input box. Eventually I might want to have 3 font choices for the user but I'd like to just see if I can get this working properly first.
View 1 Replies
May 23, 2009
It seems that every scripting language I start using, it all goes back to this problem. How do I evaluate a string as a variable name or text field name, and get or set the contents of that variable or text field
var mySelf:Person = new Person ("Enter Your Name", "Enter Your Email", "Enter Your Phone");
//Person is an external class file. The variables in it are named "_HomName, _HomEmail,
[code].....
View 4 Replies
May 23, 2009
It seems that every scripting language I start using, it all goes back to this problem. How do I evaluate a string as a variable name or text field name, and get or set the contents of that variable or text field?
Code:
var mySelf:Person = new Person ("Enter Your Name", "Enter Your Email", "Enter Your Phone");
//Person is an external class file. The variables in it are named "_HomName, _HomEmail, _HomPhone."
[Code]....
View 1 Replies