Flasher Archive
[Previous] [Next] - [Index] [Thread Index] - [Previous in Thread] [Next in Thread]
Subject: | RE: FLASH: string functions? |
From: | Rebecca Lovelace |
Date: | Thu, 18 Jan 2001 22:44:52 GMT |
I don't know...you could try doing a string.split(",") call and then
putting your string back together from the array it generates....
Rebecca
-----Original Message-----
From: olgatwitchy [dot] com [olgatwitchy [dot] com (mailto:olgatwitchy [dot] com)]
Sent: Thursday, January 18, 2001 5:08 PM
To: flasherchinwag [dot] com
Subject: Re: FLASH: string functions?
This works wonderfully-- the only problem is that this is an event that
updates often, and it's bogging down the movie A LOT.
What is happening:: user drags mc unto an area. mc triggers addition of
item into an array. array prints into a text file (it reads like a story,
so the commas are removed).
Every time I drop the mc unto the target area the whole movie freezes for a
second.
Is there a less processor intensive (fast?) way of doing this?
Thanks so much!!
Olga
----- Original Message -----
From: "Phillip Kerman" <flash5teleport [dot] com>
To: <flasherchinwag [dot] com>
Sent: Thursday, January 18, 2001 1:31 PM
Subject: RE: FLASH: string functions?
> I don't know if this is the easiest... but it's one way I use in my
upcoming
> book "ActionScripting in Flash":
>
> function removeCharacter (whatChar,fromString) {
> var charFound=1
>
> while (true) {
>
> charFound = fromString.indexOf(whatChar);
> if (charFound == -1) {
> return fromString;
> }
> fromString =fromString.substr(0,charFound)+fromString.substr(charFound+1);
>
> }
> }
>
>
> // to use removeCharacter(",","the,string,with commas"));
>
> > -----Original Message-----
> > From: ownerchinwag [dot] com [ownerchinwag [dot] com]On">mailto:ownerchinwag [dot] com]On Behalf Of
> > olgatwitchy [dot] com
> > Sent: Thursday, January 18, 2001 1:04 PM
> > To: flasherchinwag [dot] com
> > Subject: FLASH: string functions?
> >
> >
> > What's the easiest way to remove a repeated character from a string?
> >
> > I have a string with repeating commas that I need to extract:
> >
> > "the dog, is blue, on saturdays, and sundays."
> >
> > to:" the dog is blue on saturdays and sundays."
> >
> > Thanks!!
> > Olga
> >
> >
> >
> > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> > flasher is generously supported by...
> > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> > flashforward2000 and the Flash(tm) Film Festival
> > November 27-29, 2000, LONDON, National Film Theatre
> >
> > Produced by United Digital Artists and lynda.com
> > -Sponsored by Macromedia, Adobe Systems and Apple Computer
> > -http://www.flashforward2000.com or UK tel. +44 (0870) 751 1526
> > Register before November 10 and save �200
> > http:// www.flashforward2000.com
> > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> > To unsubscribe or change your list settings go to
> > http://www.chinwag.com/flasher or email helpchinwag [dot] com
> >
> >
>
>
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> flasher is generously supported by...
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> flashforward2000 and the Flash(tm) Film Festival
> November 27-29, 2000, LONDON, National Film Theatre
>
> Produced by United Digital Artists and lynda.com
> -Sponsored by Macromedia, Adobe Systems and Apple Computer
> -http://www.flashforward2000.com or UK tel. +44 (0870) 751 1526
> Register before November 10 and save �200
> http:// www.flashforward2000.com
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> To unsubscribe or change your list settings go to
> http://www.chinwag.com/flasher or email helpchinwag [dot] com
>
>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
flasher is generously supported by...
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
flashforward2000 and the Flash(tm) Film Festival
November 27-29, 2000, LONDON, National Film Theatre
Produced by United Digital Artists and lynda.com
-Sponsored by Macromedia, Adobe Systems and Apple Computer
-http://www.flashforward2000.com or UK tel. +44 (0870) 751 1526
Register before November 10 and save �200
http:// www.flashforward2000.com
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
To unsubscribe or change your list settings go to
http://www.chinwag.com/flasher or email helpchinwag [dot] com
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
flasher is generously supported by...
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
flashforward2000 and the Flash(tm) Film Festival
November 27-29, 2000, LONDON, National Film Theatre
Produced by United Digital Artists and lynda.com
-Sponsored by Macromedia, Adobe Systems and Apple Computer
-http://www.flashforward2000.com or UK tel. +44 (0870) 751 1526
Register before November 10 and save �200
http:// www.flashforward2000.com
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
To unsubscribe or change your list settings go to
http://www.chinwag.com/flasher or email helpchinwag [dot] com
Replies
RE: FLASH: string functions?, Phillip Kerman
[Previous] [Next] - [Index] [Thread Index] - [Next in Thread] [Previous in Thread]