Actionscript 3 :: Determine File Or Regular String?
Feb 1, 2012I load strings from a mxl. Some of the strings are file paths and some of them are just normal strings. How I can to determine who is a file and who is a regular string?
View 3 RepliesI load strings from a mxl. Some of the strings are file paths and some of them are just normal strings. How I can to determine who is a file and who is a regular string?
View 3 RepliesI'm not very good at regular expressions, but I would like my script to replace
Code:
<a href="somepage.html">
by
Code:
<a href="event:somepage">
I'm trying to find the number of newlines in a string using the Actionscript 3.0 RegExp engine. Using the string.match function and RegExp(" ","g") does not find the newlines in a string which contains newlines. Is there something I need to add to the pattern or something else that I am missing?
View 1 RepliesI'm trying to use regular expressions with the String.replace() method to manipulate a string to replace all instances of a forward slash "/" with a period "."
So for instance, if I start with this String:
"things/stuff/cheese/yum"
I want to convert it to:
"things.stuff.cheese.yum"
Easy enough if I want to replace a letter... let's say I wanted to replace all instances of the letter "e", I would do this:
Code:
var str:String = "things/stuff/cheese/yum";
var myPattern:RegExp = /e/g;
trace(str.replace(myPattern, "."));
// returns: "things/stuff/ch..s./yum"
... but how do I replace all instances of "/"??
I am using RegExp to search for character sequences within strings. I was wondering if/what is the proper way to use a string stored in a variable as a regular expression. For example: [code]I'll have to use another string manipulation tool to search for the sequence.
View 5 RepliesI want the user to input a regular expression, which is then used.
I'm using following at the moment.
PHP Code:
var filterEx = new RegExp(filterTxt.text.split("/")[1], filterTxt.text.split("/")[2]);
filterTxt is a textbox, when traceing the pattern is seemingly correct, but i.e.:
[Code]...
I have to parse out color information from HTML data. The colors can either be RGB colors or file names to a swatch image. I used [URL] to develop and test the patterns. I copied the AS regular expression code verbatim from the tool into Flex Builder. But, when I exec the pattern against the string I get a null. Here are the patterns and an example of the string (I took the correct HTML tags out so the strings would show correctly):
[Code]....
give me the Regular Expression that can check if a given string has any HTML code in it, and coming to think of it I would be bothered with <a href="something">something</a> exactly.
View 2 RepliesI want to alter the text color inside a string that has some HTML tags using regular expressions.My question is how can I alter the letters only of the text between html tags and not inside the html tagsI am using something like this:
ActionScript Code:
var exp:RegExp = new RegExp(textfield.text,"i")
str = str.replace(exp, "<font color='#FF0000'>$&</font>");
[code].......
I'm making a game with Flash CS5.5 and exporting it to a APK file (AIR for Android).The trouble is that the APK file is really just a ZIP file, so you can extract the content and inside there is my game as a regular SWF file. Anyone can upload this to any website and play the game there.
I don't want the SWF file to work unless opened like it should, inside the APK file through Android.Is there any way to know through ActionScript 3 code if the SWF file has been extracted from the APK file and has been opened as a normal SWF file?
Given a string A, how can I determine if that string contains the substring "video/x-flv"?
View 5 RepliesDoes anyone know the regular expression to test if a single string character has both upper and lower case character?
eg. All A-Z and a-z.
I'm trying to figure out which is more efficient in terms of memory and speed. What I'm doing is having a series of messages loaded to the screen. Is it just faster to write them in string variable or in an XML document which is more versatile in terms of editing and adding on to the document.
View 1 RepliesI want to check the file extension from the string using regular expression in action script.
View 1 RepliesIs there any way to determine a file type from a url when the file extension is not a reliable indicator? Since there are different APIs for playing video, audio, or displaying images, you need to know the filetype beforehand.
View 5 RepliesI'm looking for script or a tutorial which allows me to make a scrub bar for a regular swf file that *enters every frame* on the way forward and back. I was trying this one out ....http:[url]......... but it skips frames. I need something that will execute scripts place in certain frames along the timeline when the scrub bar is dragged.
View 2 RepliesI have a String variable in my flex (flash builder 4) application containing CSV data. I need to allow the user to download this data to a local file. For example, giving them a "csv" button to click and it might present them with a save file dialog (and I would be sending the contents of my string variable).Is this possible / how ?I am using the ResuableFX component for the datagrid to csv. This the code I ended up with that works to save the string to a text file for the user (in a web browser):
var dg2CSV:DataGrid2CSV = new DataGrid2CSV();
dg2CSV.includeHeader=true;
dg2CSV.target=adgEncounters;
[code]......
Basically I'm trying to output the contents of an XML document into a dynamic text field (as loaded - not just its node values and content - the entire thing - into a variable called _root.log). The text field is set to show the variable value of _root.log.This is the actionscript...
PHP Code:
var newProfileXML:XML= new XML("<contacts result='true'><contact name='John Doe'/><contact name='Jane Doe'/></contacts>");
[code].....
how to determine swf publish date/time stamp from within the swf?
I have a template fla used to build apps (in AS3) and would like to know some info about when it was published.
I initially thought it would be in the loaderInfo but it doesn't have the date/time stamp of when it was published (or at least not that I could find)
Is there a way, using actionscript, of determining if a file exists within a directory on the web server? I'm using Flash MX Pro.
View 1 RepliesIs there a way to know from inside a .swf if an external textexitsts?
View 3 RepliesI'm trying to determine if two FileReferences reference the same file. I'm trying to guarentee file uniqueness in a space where file size and name might not be enough. What I'm really trying to tell is if the path of each of the referenced files is unique.
I have already tried an approach with hashing the data in the file, but the files I am working with are large, and this is a very slow process.
I would be currious to know as an alternative if it is possible to load only a limited amount into the data array of a FileReference. I should be able to guarentee uniqueness if I could hash say, the first MB of data, or the whole file...whichever is smaller.
I have a Flash file, which uses AS 2, that is displayed in 2 individual html pages. When I click a link in the file, I would like to, if possible, determine the name of the page that it is inside of. Is there a way to determine which of the 2 HTML pages my Flash file is being called from?
View 1 RepliesI am working on a sample map application using Flex 4/fxg? Now I have got FXG paths held in Group elements with id's( I have assigned path's id's to the corresponding group container)? But when I click anywhere in the map, I do not get the clicked group as target/currentTarget in event handler. How to determine which element is clicked?
[Code]...
I am working on a site that has a clock but it displays in military time, is there a way to change it to regular time. The following is the Action script:
[Code]...
I need to be able to load a couple of external.swf files and have them play sequentially. To do that, I need to know the number of frames in the first .swf file so that I can check _currentframe against _totalframes to determine when it is finished playing so that I can load the second one.Most of the tips I see indicate that _totalframes on an external .swf can be determined by loading the.swf into a container clip and then checking using a listener within .onLoadInit. Like this:
---------------------------------------------------------------------- ------------------------------------------------
this.createEmptyMovieClip("tester_mc", 1);var mcListener:Object = new Object();
mcListener.onLoadInit = function(target_mc:MovieClip)[code].......
Unfortunately, that doesn't seem to work. The trace always returns a total frames of 1.I imagine this is because the container movie clip only has 1 frame, and the external .swf timeline appears to be ignored.how to gather the total frames of an external .swf file or, alternatively, tell in some other way when it is finished playing. (Not just loading, but playing to the end.)
I have used the loader class and the load method to load a swf file that has several frames. how I determine the total number of frames in the SWF file timeline after loading?
View 3 RepliesIm picking up a dedicated server it will be CentOS and be well above the minimum req for FMS 3.5 Interactive.
Question: I want to use my dedicated server for more then just the FMS. Is this possible? Basically I want to use the same server for FMS and for the file hosting of my site. Obviously I would give it a different IP but am not sure what I will need to do specifically
Does flash.display.Loader determine the file by filename or header?
The reason why I ask is that I'm getting an IOError: "Unknown File Type" when loading an swf which has a strange filename (in the form of "filename.randomnumbersandletters.swf").
Working with ActionScript 3.0, is there a way to determine if my SWF file is been played in the standalone Flash Player or using a browser plugin?
View 1 Replies