Re: [Flashcoders] OT - Installing PHP MySQL on a remote server

2007-03-23 Thread Omar Fouad
Dave i allready have answered this question to you in your prev post... Your posts deliver, dont worry, but u were asking about installing php on your local machine.. In order to have it on the server you have to upgrade it accordingly to your hosting provider On 3/22/07, Dave Mennenoh [EMAIL

[Flashcoders] Can not get data from actionscript db operation class?

2007-03-23 Thread wishsand(TOM)
DBOperation.as: import flash.events.*; import flash.net.NetConnection; import flash.net.ObjectEncoding; import flash.net.Responder; import mx.collections.ArrayCollection; import mx.controls.List; import mx.rpc.events.ResultEvent; import mx.collections.ArrayCollection; public class DBOperation {

RE: [Flashcoders] Got milk? (the game)

2007-03-23 Thread Joe Wheeler
That dice is cheaty! It's a dirty cheaty dice. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Kerem Iseri Sent: 22 March 2007 19:25 To: flashcoders@chattyfig.figleaf.com Subject: RE: [Flashcoders] Got milk? (the game) Really amazing game but i dont

RE: [Flashcoders] High CPU usage problems

2007-03-23 Thread Joe Wheeler
Triple check the intervals - they are notorious for causing problems. It's always a good idea to clear intervals before you set them - that way if they accidentally get set twice you'll know the first one will get cleared... clearInterval( myInt ); myInt = setInterval( myFunc, 1000 ) J

Re: [Flashcoders] Flash crashing dilemna - when adding an inputtextfield

2007-03-23 Thread Muzak
Does your game capture any keystrokes (like arrow keys or WASD for movement)? regards, Muzak - Original Message - From: Paul Steven [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Thursday, March 22, 2007 8:09 PM Subject: RE: [Flashcoders] Flash crashing dilemna - when

Re: [Flashcoders] scaling external jpgs or pngs

2007-03-23 Thread Omar Fouad
PS. All this only if you are scaling the pic on runtime... But if you have the image and need to be resized manually before compiling, Create a movieClip and assign it the bitmap color from the color swatches panel.. Or just Resize the image in Photoshop :) On 3/23/07, Omar Fouad [EMAIL

Re: [Flashcoders] Enhancing the Flash Cursor

2007-03-23 Thread Pedro Taranto
you can put an invisible button at each side of your photo, and use onRollOver and onRollOut to change the mouse cursor --Pedro Taranto Perdue, Blake escreveu: I am building a photo slideshow and I want to add a next/back button to the mouse cursor. If the mouse is on the right half of the

Re: [Flashcoders] OT - Installing PHP, MySQL?

2007-03-23 Thread Omar Fouad
ah sorry i've got your question wrong... I thought u needed to setup php and mysql on your machine for further online testing The link Latcho gave you is good... On 3/22/07, Latcho [EMAIL PROTECTED] wrote: http://www.apachefriends.org/en/xampp.html Dave Mennenoh wrote: Anyone have any

Re: [Flashcoders] Addressing functions in frame script from classscript

2007-03-23 Thread Omar Fouad
Yes u can i did it before... Just Import the classes below the functions u wrote on the timeline... On 3/17/07, Roman Hippler [EMAIL PROTECTED] wrote: If your class extends MovieClip and you have attached it to a MovieClip in the library, you should be able to call the functions on the

RE: [Flashcoders] OT - Installing PHP, MySQL?

2007-03-23 Thread Claudio M. E. Bastos Iorio
You should use xampp installer only for developing. Is not really secure in production stage. ___ Claudio M. E. Bastos Iorio http://www.13bit.com.ar MSN:[EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of

RE: [Flashcoders] Re: File works in Flash 9 player but not in 8

2007-03-23 Thread Joe Wheeler
It could be the amount of streams you're trying to open simultaneously. Try queuing the loading so that you only load one at a time - the overall load time should be about the same - something like this? var strXmlPath:String =

Re: [Flashcoders] 500 blur filters on 500 MCs

2007-03-23 Thread Omar Fouad
WOW... Is Fuse That Great But what is the Difference... Isnt it using the same Panner, easing equations? On 3/21/07, Ryan [EMAIL PROTECTED] wrote: Heres and example of 50 and animating them at 30 fps using fuse. The code is on the page so copy and paste change 50 to 500 and watch it

[Flashcoders] How to find dimensions of my own component, resized in auth. env.?

2007-03-23 Thread Alexander Farber
Hello, I have a simple component, it is a multiline TextField with wordWrap switched on and with a yellow rectangle drawn underneath: http://preferans.de/flash/ - the files Bubble.* I'd like the users of my component to be able to resize its width in the authoring environment, so that they

RE: [Flashcoders] Flash crashing dilemna - when adding an inputtextfield

2007-03-23 Thread Joe Wheeler
That error is usually caused by an infinite loop. Are there any loops in the game that get triggered by the user having a high score? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Paul Steven Sent: 22 March 2007 19:09 To:

Re: Re: [Flashcoders] Resizing sw, dependently on screen resolution

2007-03-23 Thread Omar Fouad
in addition to Stage.scaleMode = noScale; U'll be needing to allign some objects on the stage by using the Stage.height and Stage.width getters methods... On 3/18/07, Nicola Alexander Schlup - LuniLogic [EMAIL PROTECTED] wrote: Thanks a lot Andy, that was exactly what I needed :-).

[Flashcoders] Test

2007-03-23 Thread Omar Fouad
Is this delivered??? -- Omar Fouad - Digital Emotions... Love is always patient and kind. It is never jealous. Love is never boastful nor conceited It is never rude or selfish. It does not take offense and is not resentful. Love takes no pleasure in other people's sins...but delights in the

RE: [Flashcoders] [OT] PHP book recommendations

2007-03-23 Thread Hairy Dog Digital
Save your money and point your browser at: www.php.net Yeah, know about that, but I'm a book hog and it gives my admin one more thing to keep track of for me. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the

Re: [Flashcoders] Actionscript 3.0 help w/ simple HelloWorld

2007-03-23 Thread DannyT
Hi Jason, I wrote a simple tutorial for AS3 (and Flex2) in FlashDevelop, doesn't involve the FlashIDE but a good place to get started playing with AS3 and if you're interested in flex it covers the basics of that too. Also explains my setup for having an FD for AS2 and one for AS3.

Re: [Flashcoders] Enhancing the Flash Cursor

2007-03-23 Thread Omar Fouad
In this site, Mouse is set to hide = true, and replaced with an arrow that change it's orientation from left to right and viceversa... Most commonly this is set adding also an updateAfterEvent method.. This one, should give you more performance as in will get less cpu activity, but not sure, just

Re: [Flashcoders] Nice Water Effect [site]

2007-03-23 Thread Roque Castillo
Lincoln, Here is the file: http://www.wagnerpaula.com/water/index.swf and with the proper software (from Sothink) you could take a look at the source. In any case, please give the author of this interesting site the proper respect. Rocas lincoln [EMAIL PROTECTED] wrote:

RE: [Flashcoders] QT in IE returning null value to flash

2007-03-23 Thread Joe Wheeler
Does the object tag have the id movie1 (not just the embed tag)? Also, how are embedding the movie, I could be wrong but it think the stoopid active-x activation thing causes problems - try using UFO or SWFObject to embed the movie. The other thing you could try is writing the JS function from

[Flashcoders] https with sendAndLoadVars

2007-03-23 Thread tommek
Hello people, I am trying to use https call with sendAndLoadVars from a stand alone flash exe. http works but https doesn't I have read : HTTPS/HTTP restriction A SWF file that loads using nonsecure (non-HTTPS) protocols cannot access content loaded using a secure (HTTPS) protocol, even when

Re: [Flashcoders] scaling external jpgs or pngs

2007-03-23 Thread Omar Fouad
When u scale any Picture in flash from big to smaller, its edges get jagged It does not depend on it's format such as JPEG or GIF or even PNG You just will have to draw a bitmap data in a movieClip, from the movieClip that Contains the Picture u need to scale... In This Way the picture

Re: [Flashcoders] OnMouseWheel Issue....

2007-03-23 Thread Latcho
--- var Mickey=new Object() function activeWheel(){ Mouse.addListener(Mickey) Mickey.onMouseWheel = function (delta) { trace(Mickey Mouse:+delta) } } activeWheel() Omar Fouad wrote: Hi List.. I am writing a class and inside this class, i got a this

RE: [Flashcoders] Actionscript 3.0 help w/ simple HelloWorld

2007-03-23 Thread Merrill, Jason
I have a question back at you along this example. any insights why yours can run as MyPackage.as? Do you start out your package as: package MyPackage { //class definitions } and then import like this: import MyPackage.* ? That should work. if I change the name of the .as file to

Re: [Flashcoders] Flash crashing dilemna - when adding an input text field

2007-03-23 Thread Omar Fouad
be sure you are resetting the initial settings when the game restarts, if not probabily the application will RELOAD things that makes it unstable On 3/22/07, Ray Chuan [EMAIL PROTECTED] wrote: Hi, there's no code to work with here, but i would guess it's a recursive/infinite loop problem.

RE: [Flashcoders] Flash crashing dilemna - when adding an input textfield

2007-03-23 Thread Paul Steven
Thanks for the reply Yes it looks like is a recursive loop problem but I am not sure how to detect what this loop is. There are no handlers hooked up to the text field. It is simply a text input field and there is a button that when pressed, it sets a variable name called username to the value

RE: [Flashcoders] Flash crashing dilemna - when adding an input textfield

2007-03-23 Thread Paul Steven
I forgot to mention, it all works fine when the game flash movie is run on its own. The problem occurs when it is loaded into a container flash movie. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ray Chuan Sent: 22 March 2007 14:55 To:

Re: [Flashcoders] Flash JavaScript Integration Kit Issues

2007-03-23 Thread Muzak
Are you running this in a browser from the desktop or in a browser from a (local) server? If in a browser from the desktop, you need to set 'permissions'. http://www.adobe.com/devnet/flash/articles/external_interface_print.html http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=4c093f20

RE: [Flashcoders] Using JSFL with AS files

2007-03-23 Thread Danny Kodicek
What do you mean specifically? I mean editing AS with JSFL. I'm getting frustrated with not being able to do a search and replace on multiple files, so I was going to write a tool to do it with JSFL - unfortunately, it seems only to work with FLA files, not AS. Danny

Re: [Flashcoders] Flash crashing dilemna - when adding an input textfield

2007-03-23 Thread Alexander Farber
Hello, here an idea from a total newbie - do you catch any keystrokes (like for controlling your player character)? On 3/22/07, Paul Steven [EMAIL PROTECTED] wrote: Basically the game crashes if I type into a text input field. If I do not then it doesn't. Regards Alex -- http://preferans.de

[Flashcoders] Re: How to find dimensions of my own component, resized in auth. env.?

2007-03-23 Thread Alexander Farber
I've added a trace(width, _xscale) in each function and the value I'm after is shown in the first size() call, but then it is back to thr original width of 160 and scale of 100%, why? size width=400, 249.998474121094 init width=160, 100 createChildren width=160, 100 size width=160, 100 draw

RE: [Flashcoders] Flash crashing dilemna - when adding an input textfield

2007-03-23 Thread Paul Steven
Here is a link to the game so you can see the problem. There is a text input field on the intro screen. If you type into it, the game will crash, if you don't then it doesn't crash. http://www.mediakitchen.co.uk/Game_pizza.html Hopefully someone can suggest a possible cause. Thanks Paul

Re: [Flashcoders] Got milk? (the game)

2007-03-23 Thread Matthias Dittgen
And there's too much preloading which lasts too long, even with fast DSL. That's annoying. The big plus for this game is the idea. 2007/3/22, Kerem İşeri [EMAIL PROTECTED]: Really amazing game but i dont think there is hard programming behind it. Maximum 2 developer can handle the coding. I

[Flashcoders] Trouble getting _x position

2007-03-23 Thread Lee Marshall
Hi all Just trying to create a box in actionscript into an empty movieclip. I then wanted to reurn the _x postion of the box, but it's just not happening for me. Here is my code. Any ideas? Cheers all Stage.scaleMode = scale; Create a box to encapsulate the loader indicator var bW:Number =

Re: [Flashcoders] OT - Installing PHP MySQL on a remote server

2007-03-23 Thread Gustavo Duenas
I did the installation of php and mysql in my computer(mac) using the terminal, but when I learned, I did it on linux, so it is not much different in both, but in windows I guess in php.org or mysql.org, there is the .exe files to install the programs. In mac and linux wasn't much

Re: [Flashcoders] Got milk? (the game)

2007-03-23 Thread Alias™
Cheaty as in produces insufficiently randomised numbers or cheaty as in not utilising proper 3d/physics? Because I was wondering about that... Alias On 23/03/07, Joe Wheeler [EMAIL PROTECTED] wrote: That dice is cheaty! It's a dirty cheaty dice. -Original Message- From: [EMAIL

Re: [Flashcoders] Help: test EventDispatcher speed please

2007-03-23 Thread iiley
Good analyzing!!! Francis, i think you can change EventBroadcaster to use for(var i in array) to make a new test demo, then, we can test again, if the new result views that EventBroadcaster runs as slow as EventDispatcher on Mac, then, it will be clear? hmmm... 2007/3/22, Brian Williams

RE: [Flashcoders] Test

2007-03-23 Thread Danny Kodicek
Is this delivered??? 'ello D ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe

Re: [Flashcoders] QT in IE returning null value to flash

2007-03-23 Thread elibol
Hey Bob, Try window.movie1 for IE. On 3/20/07, Bob Wohl [EMAIL PROTECTED] wrote: Hello all, I've researched quite a bit over the past week to no avail on how in IE i get a return of null when pulling the time from a QT file but in FireFox i get the proper time... flash call - myTime =

RE: [Flashcoders] Flash crashing dilemna - when adding an input textfield

2007-03-23 Thread Paul Steven
Thanks Ray The game actually crashes now the first time it is played. I am still trying to narrow down the problem. Game works fine as a standalone swf but when loaded into the container movie, the game crashes if the user types into the input field. In fact all it takes is to click on the input

Re: [Flashcoders] OT - Installing PHP, MySQL?

2007-03-23 Thread Dave Mennenoh
Thanks everyone. Both WAMP and XAMPP say they are for testing only, and should not be used for production - which is of course what I need. This will be on IIS, so hopefully it will be doable. I guess I'll attempt installing first and see how it goes. Dave - Head Developer

[Flashcoders] Re: attachMovie vs createClassObject

2007-03-23 Thread Andy Herrman
Just to amend my previous comment, in the case where I said `createClassObject()` failed but `attachMovie()` didn't, that ended up to be not quite true. `createClassObject()` didn't do anything, but `attachMovie()` created the visual portions of the clip, but it looks like none of the

Re: [Flashcoders] Compiling with self-reference

2007-03-23 Thread Hans Wichman
Hi, you said: restrictive not to be able to refer to a superclass within a subclass - that's enforcing an arbitrary design principle. But that's not what you are doing: you are referring to a subclass within a superclass. And with this So it seems pretty reasonable to me that all my objects

[Flashcoders] font won't show up in menu after install and restart

2007-03-23 Thread moveup
Hi I have an ongoing font issue in flash. After installing a new font, and restarting Flash, the font DOES NOT show up in the menu. However, an any other ADobe app, the font DOES show up. Right now it is an issue with Trade Gothic. Anyone eles experience this? [e] jbach at bitstream.ca [c]

Re: [Flashcoders] Actionscript 3.0 help w/ simple HelloWorld

2007-03-23 Thread Rob Romanek
Hi Jason, My packageTest.fla is import MyPackage.*; var hw:HelloWorld = new HelloWorld(); var mc:MyClass = new MyClass(); and in the same directory I have MyPackage.as //MyPackage.as package MyPackage { public class HelloWorld { public function HelloWorld()

[Flashcoders] Event calendar

2007-03-23 Thread natalia Vikhtinskaya
Hi to all I should create event calendar. Can anybody give me some advices/links how I can create that using xml? Thanks a lot for any help. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

RE: [Flashcoders] Actionscript 3.0 help w/ simple HelloWorld

2007-03-23 Thread Merrill, Jason
Hey thanks man - that explains maybe why my AS3 code completion isn't working right in FlashDevelop. Jason Merrill Bank of America GTO Learning Leadership Development eTools Multimedia Team -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of DannyT

[Flashcoders] sandy on mac

2007-03-23 Thread Gustavo Duenas
is there somebody with flash sandy installed on mac with flash 8 ? I need to know how to point the path, because so far I have a lot of errors trying to run the simple box example (I'm using flash sandy 1.1, I've used already the 1.2, without results so far). someone in the forum already

Re: [Flashcoders] Got milk? (the game)

2007-03-23 Thread nelson ramirez
anyone know the company behind the development? On 3/22/07, Joe Wheeler [EMAIL PROTECTED] wrote: That dice is cheaty! It's a dirty cheaty dice. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Kerem Iseri Sent: 22 March 2007 19:25 To:

Re: [Flashcoders] User Centred Design

2007-03-23 Thread Mark Lapasa
I personally found Task-Centered User Interface Design to be a valuable and good short read. The book is ancient but there is a reason why it is still used in graduate level courses today. http://www.hcibib.org/tcuid/ Good luck, -mL http://knowledge.lapasa.net Nick Weekes wrote: One of my

Re: [Flashcoders] Test

2007-03-23 Thread Pedro Taranto
yes --Pedro Taranto Omar Fouad escreveu: Is this delivered??? ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf

Re: [Flashcoders] html vars and flash vars

2007-03-23 Thread Andrew Kirkham
Is this of use? (From Flash docs) asfunction protocol asfunction:function:Function, parameter:String A special protocol for URLs in HTML text fields that allows an HREF link to call an ActionScript function. In HTML text fields, you can create links using the HTML A tag. The HREF attribute of

Re: [Flashcoders] Re: [flexcoders] Re: Caching problem

2007-03-23 Thread slangeberg
Much better approach! Now, my question is, what do people do to prevent caching of swf files themselves? Here's the setup: I'm deploying a business app, and want all users to see the update to the SWF. However, I don't want to tell everyone to clear their cache. Should I just pass a version

RE: [Flashcoders] Flash crashing dilemna - when adding aninputtextfield

2007-03-23 Thread Paul Steven
Yes Muzak This is the only code that refers to keys in the game itself The only reference to keys in the game is this handler // // check_key_status // function check_key_status() { boolKeyUp = Key.isDown(38); boolKeyDown = Key.isDown(40);

[Flashcoders] [OT ?] Développeur AS2 exp érimenté

2007-03-23 Thread af
Bonjour, Pour une durée de 2 mois (mai et juin) en CDD ou en mission freelance, je recherche un développeur ActionScript 2.0 expérimenté, ayant de bonnes connaissances mathématiques (BAC+2 minimum) et en

Re: [Flashcoders] QT in IE returning null value to flash

2007-03-23 Thread Bob Wohl
I got it to work, It was the way the embed tag was labeled and the way IE was interpreting window vs. document. This little snipet helped with beating back the monster IE is - function thisMovie(movieName) { setDisplayClosed() if (navigator.appName.indexOf(Microsoft) != -1) {

[Flashcoders] MDM Zinc v2.5 Trial _ Writing files to hard drive

2007-03-23 Thread Ned Perry
Hi I need to make a Projector that writes files to the hard-drive. All the content elements are going to be Flash and I was hoping to use Zinc as a wrapper that could handle the file system elements. But I can't find any command to create a file. Does anyone know if there is one? There seems

Re: [Flashcoders] scaling external jpgs or pngs

2007-03-23 Thread dk
When down-scaling external (loadMovie) images, It there a secret way to do it without making the image look jagged? Do pngs scale better than jpgs? I've got some info and examples here: http://bumpslide.com/blog/2006/10/30/smooth-image-resizing-with-flash-8/ -dk

[Flashcoders] flash game developer - multi-player games

2007-03-23 Thread bruce
hi... i'm trying to find out how/who i can talk to to get information regarding flash games. specifically, if i'm looking to talk to anyone/small company who's developed small multiplayer flash games, who can i talk to... thanks -bruce ___

RE: [Flashcoders] Got milk? (the game)

2007-03-23 Thread Steven Sacks | BLITZ
That dice is cheaty! It's a dirty cheaty dice. A friend of mine rolled a 1 14 times in a row. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] How to find dimensions of my own component, resized in auth. env.?

2007-03-23 Thread Muzak
You should look into the core classes to see what goes on behind the scenes: mx.core.UIComponent mx.core.UIObject UIObject uses 2 private variables to keep track of width and height var __width:Number; var __height:Number; In your size() method use those instead of the default _width and

Re: [Flashcoders] [OT] PHP book recommendations

2007-03-23 Thread Anggie Bratadinata
This book is good : 'core web application development with php and mysql', addison-wesley, 2005 -- Anggie Bratadinata www.masputih.com I N D O N E S I A Hairy Dog Digital wrote: Save your money and point your browser at: www.php.net Yeah, know about that, but I'm a book hog and it gives my

RE: [Flashcoders] Using JSFL with AS files

2007-03-23 Thread Steven Sacks | BLITZ
You can read and write any text files, so you can certainly read and write AS files. Here is the full Flash 8 JSFL API PDF document which is IMPOSSIBLE to find anymore on Adobe's site. http://tinyurl.com/2qu83v Of particular interest to you are: Flfile Object Flfilre.read(fileOrFolderURI);

RE: [Flashcoders] Trouble getting _x position

2007-03-23 Thread Steven Sacks | BLITZ
Draw your box from 0,0 and then set the _x and _y of the movieclip you drew in. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by

[Flashcoders] Re: [flexcoders] Re: Caching problem

2007-03-23 Thread slangeberg
Hmm, i've had this experience on both Apache IIS. I'm not talking about a server cahce, I believe this is browser related. Upload SWF to server, and do not see change in browser till cache is cleared. No one else experiences this? My current understanding is that since nothing about the page

[Flashcoders] Video in Flash

2007-03-23 Thread Daniel Hart
Hi there - I use Sony Vegas, have a 16:9 HDD camcorder that imports mpeg2 video, and want the same results to run really smooth on a website. I realise there are a few stages that need to be done right from origin. I have edited a 2 minute sequence that will be my first step to getting it right.

Re: [Flashcoders] Trouble getting _x position

2007-03-23 Thread Pedro Taranto
what is the problem ?? you expect to receive the top-left corner _x position of the drawed box ? --Pedro Taranto Lee Marshall escreveu: Hi all Just trying to create a box in actionscript into an empty movieclip. I then wanted to reurn the _x postion of the box, but it's just not happening

Re: [Flashcoders] Trouble getting _x position

2007-03-23 Thread nelson ramirez
Seems to work. It returns an _x of 0 because that's where this line : var loaderBox_mc:MovieClip = this.createEmptyMovieClip(loaderBox_mc, this.getNextHighestDepth()); creates the clip. The coordinates you're drawing on are relative to the loaderBox_mc but they don't in fact change the position

Re: [Flashcoders] Trouble getting _x position

2007-03-23 Thread Hans Wichman
Hi, it works ok here. It traces zero, as it should. greetz JC On 3/23/07, Lee Marshall [EMAIL PROTECTED] wrote: Hi all Just trying to create a box in actionscript into an empty movieclip. I then wanted to reurn the _x postion of the box, but it's just not happening for me. Here is my code.

Re: [Flashcoders] Using JSFL with AS files

2007-03-23 Thread Yehia Shouman
I think you can load .as files as (text files) and parse baby parse ! On 3/23/07, Danny Kodicek [EMAIL PROTECTED] wrote: What do you mean specifically? I mean editing AS with JSFL. I'm getting frustrated with not being able to do a search and replace on multiple files, so I was going to