[Flashcoders] URLRequest Unencoded Question

2009-11-10 Thread TS
Hello, Can someone help me with this. I need to send a url request with the spaces intact and not urlencoded. Is there a way to do this? var url:String = 'http://www.somesite.com/home?status=My Bikini Design ' + shortenedLink; var req:URLRequest = new URLRequest(url);

RE: [Flashcoders] URLRequest Unencoded Question

2009-11-10 Thread TS
Of Henrik Andersson Sent: Tuesday, November 10, 2009 6:49 AM To: Flash Coders List Subject: Re: [Flashcoders] URLRequest Unencoded Question TS wrote: Hello, Can someone help me with this. I need to send a url request with the spaces intact and not urlencoded. Is there a way to do

RE: [Flashcoders] [MEMORY LEAK]

2009-10-02 Thread TS
Muzak, I've got that already. function timerHandler(event:TimerEvent):void { trace(this.removeChildAt(0)); // remove loaded swf from display list mLoader.contentLoaderInfo.removeEventListener(Event.COMPLETE, onCompleteHandler);

RE: [Flashcoders] [MEMORY LEAK]

2009-10-01 Thread TS
at those points and be in a better position to determine if there's a leak, and, in that case, what could be causing it. Hope it helps. Cheers Juan Pablo Califano 2009/9/30 TS sunnrun...@gmail.com Hello, this issue is killing me. I had a swf that loaded an xml file then loaded images from

RE: [Flashcoders] [MEMORY LEAK]

2009-10-01 Thread TS
you call load() with a new URLRequest, you'll get new progress and complete events. Might help with your leaks. HTH, Ian On Thu, Oct 1, 2009 at 2:28 AM, TS sunnrun...@gmail.com wrote: Thanks for the info. Still reading it but, fme, it seems silly there's not an ExitRestart() method

RE: [Flashcoders] [MEMORY LEAK]

2009-10-01 Thread TS
footprint grows doesn't mean there's a leak. Cheers Juan Pablo Califano 2009/10/1 TS sunnrun...@gmail.com Well I'm going to use gskinner's workaround by pulling the content swf from a subdomain. I am not looking at task manager overall sys memory but, at the privat working set from

RE: [Flashcoders] [MEMORY LEAK]

2009-10-01 Thread TS
Yes I understand garbage collection(GC) and how it's SUPPOSE to work :) However, there still remains the fact that my browser is at say 146,000K private working set memory. Let my swf file sit there for a half hour or more and now the working set is up to 300,000K. Refresh the page that the swf is

RE: [Flashcoders] [MEMORY LEAK]

2009-10-01 Thread TS
it in the loader swf? Thanks, T -Original Message- From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Gregory Boland Sent: Thursday, October 01, 2009 3:39 PM To: Flash Coders List Subject: Re: [Flashcoders] [MEMORY LEAK] TS, what

RE: [Flashcoders] [MEMORY LEAK]

2009-10-01 Thread TS
To: Flash Coders List Subject: Re: [Flashcoders] [MEMORY LEAK] TS, what is the content that you are loading from this external swf every 30,000 milliseconds? It is feasible that what you are loading is causing the memory of the Flash player to increase? I never saw where you ready the swf itself

[Flashcoders] [MEMORY LEAK]

2009-09-30 Thread TS
Hello, this issue is killing me. I had a swf that loaded an xml file then loaded images from the xml file and then killed the display list, xml, images etc... then restarted based on a timer. Every time it reloads however, I watch firefox take away memory consistently and when I refresh that page

RE: [Flashcoders] [MEMORY LEAK]

2009-09-30 Thread TS
...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of TS Sent: Thursday, 1 October 2009 10:53 AM To: 'Flash Coders List' Subject: [Flashcoders] [MEMORY LEAK] Hello, this issue is killing me. I had a swf that loaded an xml file then loaded images from the xml file and then killed

[Flashcoders] Seek bar not working with FLVPlayback Component?

2009-07-29 Thread TS
Anyone have any ideas why the playback seek bar isn't working? The video was encoded using FFMPEG. http://labs.cleargraphix.com/AS3/flvplayer/ Does it need to be encoded a certain way with cue points or something? Thanks ahead, T ___ Flashcoders

RE: [Flashcoders] Seek bar not working with FLVPlayback Component?

2009-07-29 Thread TS
: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Karl DeSaulniers Sent: Wednesday, July 29, 2009 3:09 PM To: Flash Coders List Subject: Re: [Flashcoders] Seek bar not working with FLVPlayback Component? Yes. On Jul 29, 2009, at 3:14 PM, TS wrote

RE: [Flashcoders] Seek bar not working with FLVPlayback Component?

2009-07-29 Thread TS
that into flash flv maker and it will read the cue points in your movie and will display them so you can assign them var names. Been a while though and I was working in AS2. Karl Sent from losPhone On Jul 29, 2009, at 4:51 PM, TS sunnrun...@gmail.com wrote: Thanks Karl Am I using the right

[Flashcoders] AS2 How To Clean getURL before sent

2009-06-19 Thread TS
I just have a getURL triggering after an alert is closed and it's sending all these vars through with it. Is there a way to get rid of these var names and values before sending them out? reset=[type+Function]obj=_level0.depthChild0uploadURL=http%3A%2F%2F

[Flashcoders] AS 2.0 FileReference issue I/O error thrown

2009-06-18 Thread TS
My uploader works on every other platform except for Mac. The file uploader never completes and throws an ioError? Latest Player installed on FF. Using PHP as the file handler on the backend. Anyone else have this issue or know a workaround? Thanks, T

[Flashcoders] LoadVars need to pass a var that is a keyword to a php script

2009-06-09 Thread TS
Hello, Ver: AS2 I have an authentication form that needs vars passed to it via a loadVars object POST. I'm building my object up as such: message.uid = jimbo; message.for = somesite.com; I have to use for as the var name to send to the auth.form script. However, the Compiler obviously has a

RE: [Flashcoders] AS3 Object reference

2009-03-30 Thread TS
= myClips.length; for(var i:uint=0; ilen; i++) { var mc:MovieClip = myClips[i]; mc.width = someValue; } regards, Muzak - Original Message - From: TS sunnrun...@gmail.com To: 'Flash Coders List' flashcoders@chattyfig.figleaf.com Sent: Sunday, March 29, 2009 3:09 AM Subject

[Flashcoders] AS3 Object reference

2009-03-28 Thread TS
Trying to cylec through some objects. This doesn't seem to work in AS3 as it does in AS2. Is there an equivalent in AS3? photoStrip_mc[thumbnail + i + _mc]._width Thanks ahead, T ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

[Flashcoders] Using replace function to replace all occurences not just one?

2009-03-26 Thread TS
I want to replace all occurrences of the with [LT] not just one var removed:String = hell/HELLO; var pattern:RegExp = //; removed = removed.replace(pattern, [LT]); Can someone point me in the right direction? Thanks, T ___

[Flashcoders] RE: Using replace function to replace all occurences not just one?

2009-03-26 Thread TS
Nevermind Apparently there are flags like adding the g for global. :) Thanks var pattern:RegExp = //g; -Original Message- From: TS [mailto:sunnrun...@gmail.com] Sent: Thursday, March 26, 2009 3:33 PM To: 'Flash Coders List' Subject: Using replace function to replace all occurences

[Flashcoders] Looking for a configurable Flash Live Chat Box With Rooms Optional

2009-03-17 Thread TS
Does anyone have a good link to something like this for reasonable price or free? Configurable meaning skinnable and sizeable? Thank you everyone :) ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

RE: [Flashcoders] Looking for a configurable Flash Live Chat Box With Rooms Optional

2009-03-17 Thread TS
is packaging up some stuff with AMFPHP and not honouring the license properly... Glen TS wrote: Does anyone have a good link to something like this for reasonable price or free? Configurable meaning skinnable and sizeable? Thank you everyone

RE: [Flashcoders] Looking for a configurable Flash Live Chat Box With Rooms Optional

2009-03-17 Thread TS
found this a few years ago which worked out of the box.     http://www.tufat.com/s_flash_chat_chatroom.htm     It's a bit cheeky tho' because the guy is packaging up some stuff with AMFPHP and not honouring the license properly...   Glen TS wrote: Does anyone have a good link to something

[Flashcoders] Tutorial for ASP.NET 2.0 using C# and AS3

2009-03-11 Thread TS
Hello, I can't seem to find a good tutorial using ASP.NET 2.0 using C# and AS3. I'm trying to figure out how to POST vars to an .aspx page or rather I think my Flash code is correct so I need the code to catch the vars in the .aspx page. I'm totally familiar with PHP but, not the M$ way =8o)

RE: [Flashcoders] Tutorial for ASP.NET 2.0 using C# and AS3

2009-03-11 Thread TS
Hello, Here's my code for the asp.net part. I realize it would be similar to PHP but, it's so hard to find code to do what I want. Anyway let's say with my previous code I was posting a var name to an aspx page and I want that aspx page to use that name to create a new blank text file with that

[Flashcoders] Bag Builder Feedback Please

2008-05-15 Thread TS
I'm really new to interface design and was wondering if I could please get some feedback on this and how I can make it better? ANY advice would be appreciated and/or if you like it. http://labs.worthwhileindustries.com/as2/bagBuilder/ Much Appreciation, T

RE: [Flashcoders] Bag Builder Feedback Please

2008-05-15 Thread TS
ideas and technologies? Check out our internal GTO Innovative Learning Blog subscribe. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of TS Sent: Thursday, May 15, 2008 4:27 PM To: 'Flash Coders List' Subject: [Flashcoders] Bag Builder Feedback Please