[Flashcoders] FMS2 Installation Failure

2007-09-04 Thread Daniel Calderón
Hello to everyone I have installed FMS2, Flash 8; Flash Player and plug in as said as installation guide. After installation, I ran an example showns in Examples found in Adobe, posted to practice for developers. I cant run the examples, and shows an error

[Flashcoders] AS3: dynamically accessing parts of XML

2007-09-04 Thread Geografiek
Hi list, I have an XML object (listed below) I can access a node like, for instance: trace(myXml.MAMMAL.*) //traces: humancowdog Now I want to access nodes dynamically through a function like: function traceNode (thisNode:String):void { trace(myXml[thisNode].*; } traceNode(MAMMALS) works

Re: [Flashcoders] Text Editor Undo/Redo Stack

2007-09-04 Thread James Marsden
Hello, This is what I was thinking - I find it hard to conceptualise the time aspect of undoing and redoing actions, and how to capture events such as cut and paste... I guess cutting you just read the selected text at the point a Keyboard event for X gets fired at the same time as CTRL is

[Flashcoders] AS2Doc not working - no reponse from Mirell

2007-09-04 Thread Mike Lyda
I still have to create documentation for the Flash IDE from ActionScript 2 classes and have been using AS2Doc from Mirell without a problem. However it's quit working and gives this error when I attempt to Generate docs: [ERROR]: Error transforming XSL. File: C:\Program

[Flashcoders] Uploading different types files to a PHP script

2007-09-04 Thread ben gomez farrell
Hi, sorry if this is a PHP questionI'm trying to work with this more on the Flash side, so I hope its a Flash question. I have a PHP script online that serves to write binary image data from my Flex/AIR app: $f = fopen($path,w); fwrite($f, $GLOBALS[ 'HTTP_RAW_POST_DATA' ] );

RE: [Flashcoders] memory leak

2007-09-04 Thread Frank Pepermans
Are you using Bitmaps and/or BitmapData? In that case try doing bitmapData.dispose() or bitmap.bitmapData.dispose() when clearing an image -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Tom Huynen Sent: 03 September 2007 22:09 To:

Re: [Flashcoders] Text Editor Undo/Redo Stack

2007-09-04 Thread Charles Parcell
Yes, command based. If you were to follow Omar's version you could end up with a memory hog. Imagine a 4000 character text field/document. Storing a snap shot if that x20 is overkill in a bad way. Copy/Paste/Delete are all fairly simple. You might want to enhance your undo feature when you type.

[Flashcoders] Calculate how many days until date

2007-09-04 Thread Paul Steven
I need to calculate how many days there are until a specified date in the future. Is there any built in functionality to do this, or if not, can anyone point me in the right direction. I would imagine it is difficult to do manually as it would need to take account of leap years etc. Thanks Paul

[Flashcoders] AS3 _url?

2007-09-04 Thread eric e. dolecki
_url has been removed from AS3. Trying to find its replacement... is there one? - eric ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to

[Flashcoders] [Show] Flash game community

2007-09-04 Thread Chris Benjaminsen
Hi guys! First of all, sorry for just so blatantly posting our own site! We just released http://nonoba.com/ and is in desperate need of content and beta testers :) The site is as the subject implies a flash game community where developers can upload their games, and users can play and

[Flashcoders] Q:tag cloud and image analysis

2007-09-04 Thread moveup
Hi I am trying to create a 'tag cloud' representation of an image. But am wondering if something like this: http://guiborchert.com/work/rga_tags.html is even possible in Flash 8. Is this a project for Flash 9? Can anyone offer suggestions/opinions on the best way to create this effect? I know

Re: [Flashcoders] Calculate how many days until date

2007-09-04 Thread Mark Winterhalder
On 9/4/07, Paul Steven [EMAIL PROTECTED] wrote: I need to calculate how many days there are until a specified date in the future. Is there any built in functionality to do this, or if not, can anyone point me in the right direction. I would imagine it is difficult to do manually as it would

Re: [Flashcoders] Calculate how many days until date

2007-09-04 Thread Mark Winterhalder
On 9/5/07, Mark Winterhalder [EMAIL PROTECTED] wrote: trace( You have to wake up only + Math.floor( ((new Date( 2007, 12, 25 )).getTime() - (new Date()).getTime()) / (24 * 3600 * 1000) ) + times until it's Christmas! ); Actually, you don't even need the getTime() -- valueOf() does the same

Re: [Flashcoders] AS3 _url?

2007-09-04 Thread Arul Prasad M L
loaderInfo.url eg: you can use stage.loaderInfo.url to get the url for the swf. On 9/5/07, eric e. dolecki [EMAIL PROTECTED] wrote: _url has been removed from AS3. Trying to find its replacement... is there one? - eric ___

Re: [Flashcoders] FMS2 Installation Failure

2007-09-04 Thread Andy Herrman
Hmm, the only problem I remember having when installing was windows firewall blocking the ports, but it sounds like you already disabled that. Are you sure you have the hostname and application names correct in the test app you're using? -Andy On 9/3/07, Daniel Calderón [EMAIL PROTECTED]

[Flashcoders] Applying easing effect to type effect

2007-09-04 Thread Omar Fouad
Hi, i got the following code: effect = function (txt) { string = txt; total = string.length; var ta:Array =[] for (i=0;itotal;i++) { ta.push(string.substr(0, i+1)) } i=0; onEnterFrame = function () { if(itotal-1) { i++ text.text = ta[i] +_; }else{ text.text = txt; delete