Actionscript 3 :: Validating And Grabbing This XML Attribute?

Aug 26, 2011

I'm getting my head around XML E4X in Actionscript 3 and been looking at Senocular's article about filters [URL] for a better way of validating the code below?

Essentially I want to check the profile nodes exist and if theres a profile node with a matching locale attribute (passed via FlashVars), and if not it grab the text of the first node. Anyway heres the code snippet and my XML is below:

function addInfoBubble(countryName:String, countryDataXML:XML):void {
// (theres other non related code here)
if(countryDataXML.achievers.achiever[0].profile as XMLList && countryDataXML.achievers.achiever[0].profile.length() > 0){

[Code].....

View 1 Replies


Similar Posts:


ActionScript 3.0 :: XML Parsing Not Working When Attribute Has A : In The Attribute Name?

May 13, 2009

I am having trouble parsing some xml that has a few attribute names with : characters in them. The compiler is not throwing any errors and when I trace my complete xml object out it is all there, however when I try to trace out any element or node it keeps comming up undefined. I removed the attribute names with : characters in them and everything works fine. I cant seem to target the attributes either to delete them.

View 3 Replies

ActionScript 3.0 :: Grabbing A XML Value?

Jul 13, 2011

I am tasked with trying to do a slideshow of sorts, and I need to pull the filename of the slide from an xml file and display it, as well as display the appropriate slide notes in a text box.

the xml file they gave me is formatted as below, and with my current code (also below) I'm able to (trace) list all the file names, but I am missing how to address the filename on just one slide � say, slide 1, so I can then load it into a loader.

here's my code

Code:
import flash.net.URLLoader;
import flash.events.Event;
import flash.net.URLRequest;

[code]....

View 1 Replies

ActionScript 1/2 :: ExternalInterface With Grabbing URL?

Nov 13, 2009

I have a flash menu that needs to play a different scene depending on which page it is embedded into. So I need the it to grab the URL of the html page it is on and do some simple test on it to figure out what scene it should be on. *For the record, I tried to do it without scenes but the frame jumping started doing some cracked out things

Code: (on a single empty frame in Scene 1) import flash.external.ExternalInterface; var urlPath; urlPath = ExternalInterface.call("window.location.href.toStr  ing()"); getURL("javascript:alert('"+urlPath+"');"); if (urlPath == "http://www.awesome.com/Portfolio/portfolio.html"){ gotoAndPlay("Scene 3", "portfoliopage"); } else if (urlPath ==

[code]....

Somehow, my urlPath isn't getting the correct value, and therefore the if-else latter isn't functioning appropriately. I am posting the website on my test server, so the http addresses are correct, and the if-else latter functions perfectly when I just change the conditions to 'true'/'false', so neither is the problem. The problem is that the alert shows me that the value of urlPath is undefined, and so then all conditions in the latter evaluate to false.

View 5 Replies

ActionScript 3.0 :: Grabbing The Name Of A Symbol?

Apr 28, 2010

I can't seem to find anything that tells me how to do this.Is there a way to grab the name of a symbol on the stage? Not the instance name but the name that it has in the library.

View 2 Replies

Not Validating Email Format

Apr 21, 2009

flash action script - it check for blank fields and give the error message accordingly....but its not able to check the format of email id.[code]

View 12 Replies

ActionScript 2.0 :: Validating A Jpeg?

Mar 14, 2004

i have a little questionis there a way of making flash test if a jpeg is present when trying to load it externaly?

View 3 Replies

ActionScript 3.0 :: Grabbing The Parent Of A Function?

Mar 23, 2009

I'm having trouble adjusting to the way functions pass in AS3. How come when I say "this" it doesn't know I'm refering to AudioTrack?

PHP Code:

var AudioTrack:Object = new Object();
AudioTrack.myVar = "Hello";
AudioTrack.onComplete = function(){

[Code]....

View 2 Replies

ActionScript 2.0 :: Grabbing / Formatting A String?

Jun 27, 2009

grabbing / formating a string.My mission is connecting to a web site - let's say domain.com/one.html - which returns the following html code:

Code:

<HTML><meta http-equiv="Pragma" content="no-cache"></head><body>1,1,4,20,1,128,Harry J. All Stars - The Liquidator</body></html>

What I am looking for is a actionscript function which returns the text after the 6th comma - in this case:

Harry J. All Stars - The Liquidator

The thing is: The numbers are always different, but the text I want to "grab" and "show" in mytext.text (dynamic text) is ALWAYS present after the 6th comma.

View 1 Replies

ActionScript 2.0 :: Grabbing The Position Of A Value In An Array?

Dec 21, 2005

Okay, what I want is kinda hard to explain, so bear with me.If I have an array:Code:myPets = ["cat", "dog", "bird", "fish"];Now, is there any AS that can use the value of say "dog", and return the position that "dog" is in the array, I know this seems a bit stupid and dog is obviously myPets[1], but when I'm creating arrays on the fly it becomes slightly harder.

View 3 Replies

ActionScript 3.0 :: Xml Automatically Grabbing Images?

Nov 10, 2009

I'm used to flash grabbing an xml file that's manually edited with image file paths. Is it possible for flash or xml to automatically grab images that are in a specific folder?

View 2 Replies

ActionScript 2.0 :: Grabbing URL Of Current Page?

Jan 14, 2010

I am building a flash component to be embedded on an html side - the flash will include buttons to 'share' - i.e. on facebook, twitter, etc. I want to be able to grab the URL of the page and put it into the coding on the button.

Currently the button says:
tweetbtn.onRelease = function() {
getURL("http://twitter.com/home?status=Check Out This Company at www.thiscompany.com",

[code]......

View 1 Replies

Actionscript :: Validating A Number For Long?

Jun 2, 2011

I have generated actionscript (AS3) beans from the Serverside(java).

Now some of the classes had (Long,long,double) which I had to convert into Number on the Actionscript side (as we dont have long ,double etc ) on AS3 side.

Now I have to validate Number on AS3 side to match type on Serverside .

Let take example I have a field

private long number ;

in java which is converted as

private number:Number ; on AS side

this will accept number as (Double Long etc) but we know that we cannot fit Double into long on java

so I am wondering is there anyway we can validate AS3 Number to be valid "Long" on Acrionscript side ?

View 1 Replies

ActionScript 3.0 :: Validating Listbox To Check For Value To Run Another SWF

Mar 13, 2011

I have created a button when clicked it validates A listbox checking for a value if the selected index =0. I want it to run another .swf

Here is ActionScript Code:
submit_btn.addEventListener(MouseEvent.CLICK, play);
function validate(event:MouseEvent):void{
if (question1_combo.selectedIndex ==0)
(RUN SWF here)
else
trace ("not worked");
}

View 0 Replies

ActionScript 3.0 :: Checking And Validating Email?

Apr 25, 2011

I had a file flash version 4 that was working with this AS3 code, I open the file with version Flash 5 and now it is not working properly...Like in the name field if I press lowercase "r" ir shows "R"... and in the email address I can't type the @ character...this is the code...

stop();
var variables : URLVariables = new URLVariables();
var varSend : URLRequest = new URLRequest ("contact.php");

[code]....

View 2 Replies

ActionScript 3.0 :: Grouping And Validating A Form?

Aug 25, 2011

Im a scrub when it comes to flash (but i gotta start somewhere) and started making a form.I made a validation on the orders email and the orders details.The purpose of the form is to get some information about trips.there are 10 rows with 4 fields.the 4 fields is a date, from, to and time textfield.

i wanna group up and validate these fields so that if you write something in "from" you have to write something in "date", "to" and "time".

View 0 Replies

ActionScript 2.0 :: Validating A Flash Form With PHP?

Oct 25, 2006

I'm not sure how to validate a form done in flash...

View 14 Replies

ActionScript 3.0 :: Grabbing Text Off Of A HTML Page?

Sep 16, 2009

I'm not sure if you able to do this or not. But basically I want to be able to grab text off a website (not the one the SWF is hosted on).

I have several sites from which I am making small amounts of money online.. I want to make a small app that loads the URL and searches the pages for the spot where the money is listed, then add them all up to shorten me having to consistently check each. The app could refresh loads, say every 30 seconds or so. Is there a way to do that?

Another example would be to make a text box in flash that displays the headline of an article on CNN.com

I did the like with loading XML from other pages, but what I want to do just involves grabbing any said text from a site.

View 2 Replies

ActionScript 2.0 :: Grabbing Part Of An Instance Name And Using As A Variable

Jun 11, 2005

I have 36 buttons on my stage that are named [thumbBut0, thumbBut1, thumbBut2,..., thumbBut35]. Each button is a thumbnail image. I want to have it so that when the user clicks on a given thumbnail, the full-sized image corresponding to the thumbnail gets loaded and viewed...yada, yada, yada... So, if the user clicks on thumbBut25, the 25th image gets viewed...

My question: is there some cool way that I could avoid writing 36 different (although they would be similar) "_level0.thumbButXX.onRelease = function()..." type things for each of the 36 buttons. In other words, when the user clicks the instance "thumbBut25" something grabs the "25" part out of the instance name, converts it to an integer, and passes it on to a function that loads up the image that corresponds to "25"?

View 3 Replies

ActionScript 2.0 :: Grabbing A Variable In A Function From An External Swf?

Feb 21, 2007

I need to trace out the variable currentClip from the following code that is in an external swf. The parent swf calls the external swf empty_mc via loadclip.

[AS]
function setNextClip():Void
{
currentClip = clipArray[iterator];

[Code]....

View 4 Replies

ActionScript 3.0 :: Grabbing Info Based On Id# (php Mysql)?

Mar 19, 2010

I'm trying to create a website that will grab content from a MYSQL database, and display it inside of a dynamic text field in Flash. There are several buttons on the page, and I want each button to grab different information depending on id #. So far, I've done a few tutorials both here and elsewhere, and I've finally figured out how to get the Flash to connect to the database, but I'm not sure how to get info based on the id. My current database only has two columns: id & home_body with one row. I want to add more rows to this soon so I'll have something like this:

id | home_body
1 | info <-button 1 grabs this
2 | info <-button 2 grabs this

Here's my code thus far:

AS3:

// this code gets the home page data from the database for display
var homePageText:String;
// Assign a variable name for our URLVariables object
var home_variables:URLVariables = new URLVariables();

[code]....

View 3 Replies

ActionScript 3.0 :: Flash Grabbing Still/frame From Video?

Dec 27, 2010

[URL]..and I wanted to duplicate the effect and turn it into something.. I don't know, something. I just want to get it to work!

It's been a while since I did AS3 programming, so excuse me for being a bit rusty. I loaded a .mov as a FLVPlayback exported it as movie.swf and in the main.fla I made an URLRequest for the .swf. I then did all the silly math things that strobes it, and it all works out when I have an image, but with the movie.swf I just can't get it to work.

With the image it's just a matter of copying the bitmap and repositioning it. But how do I capture a still of the playing .swf?

I am a little bit lost within all the CopyPixels and BitmatData's and I just can't get it to work.

To make it short:

- I want to load a movie (a .mov in this case)
- I want in every frame to capture the frame of the playing movie and duplicate it/reposition it

View 1 Replies

ActionScript 2.0 :: Sound Grabbing And Playing From Next Scenes

Jan 9, 2012

I simply don't understand why now at the end of my project, the last 5 frames are giving me such trouble. I have five scenes. The first scene plays fine. Second scene plays fine until just the end, then it grabs audio from the third, fourth and fifth scenes and starts playing them. Here is the site: [URL] (it is a site for children in Swedish) if you click the 3rd button to the right (3 Delan) you will notice that the sound starts truncating and then starts grabbing and placing into scenes before the next scene.

View 1 Replies

ActionScript 2.0 :: Flash8 Validating A String For Only Letters?

Dec 28, 2009

I want to be able to validate a string so that it doesn't contain any numbers or special characters like '@!�%^' for instance, how would i go about doing this?

View 3 Replies

ActionScript 3.0 :: Connecting To Database, Validating Data?

Apr 22, 2011

I'm still learning AS3 and am trying to set up validating user (text box) input of 2 items (name and password) by checking with an SQL Server Database on my website.I have the ASP page set up using a standard request/response.write script. It works I've tested the ASP, and it works. The ASP receives the 2 variables, hopefully each in a name-value pair, and checks with the DB, then if the name and password received from the Flash SWF match a name and password in the DB, sends back a "YES" and, if not, sends back a "NO".I'm having difficulty getting the AS3 written and working correctly. Here's what I have so far that displays errors, causes a flickering when previewed and doesn't yet work.

stop()nextBtn.addEventListener(MouseEvent.CLICK, nextBtnClick, false, 0, true);function nextBtnClick(e:MouseEvent):void {var input1:String = T1.text;var input2:String = T2.text;var variables:URLVariables = new

[code].....

View 13 Replies

ActionScript 3.0 :: RegExp For Validating NCS Color Names?

Apr 3, 2009

I have to validate NCS color names but I just cannot figure out the right RegExp for that.

How such a name looks like is the following:

1. a 4-digit number
2. a dash (-)
then either
3. one of the letters Y,R,G or B
4. a 2-digit number
5. the letter R
or
3. just the letter N

I tried & I tried but I just cannot find it.

View 7 Replies

ActionScript 3.0 :: Grabbing A URL Via A Regular Expression (special Cases)

Mar 28, 2009

After 2 nights of *almost* getting it I realized that Flash's RegExp doesn't support lookbehinds. Here are the 3 scenarios:

1) [URL]
2) <a href="http://example.com">http://example.com</a>
3) <br><br>http://example.com<br><br>

Basically what I want to happen is to ignore scenario #2. I know the solution, but I can't seem to nail it. All that needs to happen is to select the http (and everything after that) as long as it's not preceded by a "> or =", but since I don't know a way for RegExp to look backwards, I'm sort of at a loss. Here's hoping that someone has run into this issue before

View 5 Replies

ActionScript 2.0 :: Grabbing The Color Property Value Of A Textbox Dynamically?

Apr 27, 2007

Is it possible to get the color being used in a dynamic textbox through actionscript? I am formatting the textbox with css and I want another element in my movieclip to match whatever color the text is in that textbox dynamically. Ive tried everything I can think of.

View 4 Replies

Actionscript 3 :: Validating Alphabets Only Stored In A String In Flex

Nov 11, 2011

I am trying to validate if only alphabets are typed in a text box. The code i am using is

<mx:StringValidator id="loginValidator" source="{loginTextField}" property="text" required="true" minLength="2" />

validatorErrorArray = Validator.validateAll([loginValidator, ...])

Now the problem is, it also validates characters like */- and ;',./ etc i want to validate only numbers and or alphabets. If anyone can point out mistake and changes that should be made

View 1 Replies

Regex :: Validating Email Address (Specific Domain)

Dec 9, 2011

I'm Using EmailValidator for Validation:
<mx:EmailValidator id="Email_Validator"
source="{txtEmail}"
property="text" required="false"/>

And My Code is:
var isValidForm:Boolean=true;
var validatorArr:Array = new Array();
validatorArr.push(Email_Validator);
var validatorErrorArray:Array = Validator.validateAll(validatorArr);
isValidForm = validatorErrorArray.length == 0;
if(isValidForm) {
//.....
}

It is working fine. But I want domain should be "gmail.com" if some other, validation should return false.. How can I achieve this? I think Regular Expressions are useful. But I don't Know to use the same in flex?...

View 2 Replies







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