ActionScript 3.0 :: RegExp - Remove The Leading And Following Slashes And Convert All The Other Slashes To Underscores
Nov 7, 2009
i'm trying to do a string replace with but can't seem to get the regular expression right. change "/portfolio/2/3/" to "portfolio_2_3"? Basically I want to remove the leading and following slashes, and convert all the other slashes to underscores.
View 2 Replies
Similar Posts:
Dec 30, 2009
I am creating an application in Flex that uses an embedded SQLite database. The data in the database contains quotes and other special characters which are escaped using a backslash or ''.Before I retrieve the data and render it in a Flex text area control I want to remove the ''. Is there any function in Flex which can help me do this - some equivalent of stripslashes() in PHP?
View 1 Replies
Oct 1, 2009
I've made a project which uses double slashes ("\") on paths for source files like sounds,xml etc. It works fine on a CD but I want to uploaded on a server.The swf files which use those paths work fine on IE but not on firefox,safari,opera etc. I red that the problem is the slashes that I used in paths. They should be backslashes like "/Sounds/somesound.mp3" and not "\Sounds\somesound.mp3".I found that firefox translates "\Sounds\somesound.mp3" to a single file named "Soundssomesound.mp3", the directory "Sounds" now turns to a part of the filename.
If I place and rename the source files like "Soundssomesound.mp3" on the server in the same directory with the swf file (not in "Sounds" directory) this way works on firefox, but does not work on IE. I have to place the source files in both ways to work in all browsers but that's not good...I know that the best thing that I can do is to change the path syntax in fla's but the project is to big.
View 1 Replies
Nov 25, 2009
I'm using Ant with FDT 3 and I have Ant creating a jsfl to compile fla's. When I use the built in '${basedir}' property in Ant it gives me the path with backslashes() in it because I'm on Windows. The problem is that when its run through jsfl the slashes are taken as escapes. I need to know how to modify the basedir property so the slashes are converted to forward slashes. I've tried splitting the basedir on backslashes in jsfl and joining it with forward slashes as a delimiter, but the backslashes still cause problems.
So what I need to know is how to change the basedir in Ant to have forward slashes?
View 1 Replies
Feb 10, 2010
var aText:String = "C:\folder\folder\file";
var filterVal:String = aText.toLowerCase().replace( ///g, '/');
trace( aText );[code]....
this code was based on this site and nascent regex skills.What am I doing wrong?
View 1 Replies
Jul 29, 2010
I'm using flash and php to write or overwrite a text file (an xml file). I have text strings that contain the xml data, which then get parsed by the php file.
It works fine. However, I notice that the header in the XML file <?xml version='1.0' encoding='utf-8'?> get's replaced with <?xml version='1.0' encoding='utf-8'?>
Why would slashes get added?
[Code].....
View 2 Replies
May 23, 2010
After the double forward slashes in the website address, the rest of the line gets greyed or commented out in the Script Pane.[code]
View 8 Replies
Nov 25, 2003
Is there a way to convert spaces to underscores?
turn "This is a string" to "This_is_a_string"
View 3 Replies
Nov 25, 2003
Is there a way to convert spaces to underscores?
turn "This is a string" to "This_is_a_string"
View 3 Replies
Mar 27, 2009
How to convert a string to a regular expression? Right now if I try to convert a string to a regexp, the regular expression ends up with a / in front and a /g in the back.
View 5 Replies
May 5, 2010
How do I parse an XML document that contains nodes where underscores exist?
<some_xml>
<child_node>
<child width_info="" height_info="" />
[code]....
View 2 Replies
Sep 23, 2010
I'm using deeplinking in a Flex 3 application. I've got a ViewStack and I'd like to use the id's of the canvases in the url. I've read that search engines prefer hyphens over underscores as word separators. So, the search engine sees "big-book" as a separate word, but "big_book" as possibly one word. Also, underscores are obscured when a link is underlined. For the above reasons, I thought that it would be good to use hyphens. The problem is that Flex doesn't allow hyphens in an id.
<ViewStack>
<Canvas id="my_stuff"></Canvas>
<Canvas id="my_stuff_more"></Canvas>
<Canvas id="my_stuff_lots"></Canvas>
</ViewStack>
View 1 Replies
May 30, 2007
problem stated in my title. Attach is my code.
Code:
this.createTextField("myText",this.getNextHighestDepth(),23,72,300,400);
//bgPic._alpha = 25;
var titleS:TextFormat = new TextFormat();
titleS.font = "TradeGothic";
[Code]...
View 3 Replies
Feb 28, 2008
How do you set the leading of a block of static text in flash?? As I couldn't find a "leading" control in the panel... (only kerning)
Is there such way to do so without using actionscript such as myText in html format...?
View 10 Replies
Mar 15, 2010
I've looked in the user manual and I can't find any reference to toString() for syntax information. Isn't there a parameter for me to use to specify the string lenght? And whether to add leading zeros or not?Here's the code I need to add leading zeros:
playbutt.addEventListener(MouseEvent.CLICK, playSound);
function playSound(e:Event){ SoundMixer.stopAll(); var num:Number = Math.ceil(Math.random()*43); bigNum.text = num.toString(); var path:String = "Track No" +
[code].....
View 4 Replies
Mar 7, 2011
I tried the line spacing button, but even setting it at 0 does not get the leading small enough.
View 1 Replies
Mar 30, 2010
When I set leading to 0 with Verdana (and others to) for a Flex TextArea I get strange results:
fontsize -> space between baselines
8 -> 10 (125%)
10 -> 12 (120%)
[code].....
View 2 Replies
Aug 1, 2010
I'm a noob to actionscript so this should be easy:How do I delete leading characters from a string? I have a string that contains (at times) both numeric & non-numeric characters. If I want to delete all the leading 9's, how would I do that?var testVar:String = '999998gjek74k'; want the testVar to be 'gjek74k'.So far, I have (though not working):
var testVar:String = '999998gjek74k';
testVar.replace(/^0/g, "");
View 2 Replies
Jun 15, 2011
Is there a way to make NumericStepper shows leading 0 to numbers which is below 10 ?
(like 01, 02, 03 ... 09, 10, 11)
View 2 Replies
Dec 2, 2008
Im returning the time as a string from a function like so
return minutes + ":" + seconds + ":" + millisec;
But I need each part to always display with two digits and show leading zeros.
View 2 Replies
Sep 19, 2008
why I cant apply leading to a text field if autoSize is on? I am using a new TextFormat and applying the leading after I autoSize...
[Code]...
View 7 Replies
Mar 14, 2010
i see this sometimes in tutorials, in some places a variable is referred to as "world" and other places "_world". what is the difference and when do you use which?
View 1 Replies
Jan 14, 2010
run into an issue where the line spacing/leading for a Multiline Dynamic Text Field appears to place lines differently when you dynamically populate the text field at runtime than when you type the same text into the Text Field at authortime?Put two dynamic Multiline Text Fields on stage aligned horizontally with each other and each has a 9pt line spacing.In one Text Field type "Hello Cruel World", putting each word on a separate line.Leave the other Text Field blank and name it my_txt.Now when I try to populate the empty text field at runtime with:
PHP Code:
y_txt.text = "Hello
Cruel
[code].....
View 1 Replies
Oct 6, 2011
I have a textInput control that sends .txt value to an array collection. The array collection is a collection of US zip codes so I use a regular expression to ensure I only get digits from the textInput.
private function addSingle(stringLoader:ArrayCollection):ArrayCollection {
arrayString += (txtSingle.text) + '';
var re:RegExp = /D/;
[code]....
View 3 Replies
Jan 30, 2010
i cant seem to control the spacing in this dynamic text field using leading.[code]
View 1 Replies
May 5, 2010
im making a quick flash cd rom for my digital music label and i wanted to have buttons (leading to the different content scenes) that were moving around constantly (kinda flying around the screen) thing is im not sure what im doing wrong ive tried using an animated movieclip as a button but the button functions dont seem to work...the reason ive done this is because ive used a stop action on scene one frame 1 (so the buttons display properly) but i want the buttons to move around constantly the only option i know would work would be to create tweens moving the buttons around on screen one but it would eventually stop unless i can somehow loop back to frame one.
View 6 Replies
Mar 8, 2010
I want to have two movie clips that each have their own button leading to an external URL. Both of these movie clips have classic tweens (only making them fade in and out).If I do one, it works, but when I do two, it fails on me! The error message I always see is "TypeError: Error #1009: Cannot access a property or method of a null object reference.
at mh2_fla::MainTimeline/frame1()"
I have tried doing them in the same scene and on separate scenes (see attached).
View 3 Replies
Mar 7, 2004
i was hoping that someone might have an answer to my question. is there ANY way to dynamically change the kerning of an input box? i'd like to give users the ability to modify the kerning of my .swf file. i know flash allows you to change properties like font size, colour, alignment, etc., but i can't find a way to change the kerning property. i don't even think one exists for them. so is there any kind of work around to this?also, is there any reason why i can't use negative values for leading for the input box? it only allows me to use positive numbers when i try to change it dynamically.
View 1 Replies
Aug 14, 2007
the agentText.leading= 133; does not respond. textColour seems to work fine.
[Code]....
View 7 Replies
Sep 13, 2009
When I try to load text from XML into a text field any leading line breaks or spaces are ignored. For example:
Code:
<text> some text</text>
The preceding loads into the text field without the leading spaces before "some text". How can I force the spaces to appear?
View 2 Replies