Re: [Flashcoders] stage resize question

2007-05-25 Thread Ing. Mario Falomir
perfect, thanks a lot Bob. On 5/25/07, Bob Wohl <[EMAIL PROTECTED]> wrote: use the Stage object and listeners. Set the embed and object's height & width to 100%, reposition via a stage listener. hth. B. On 5/25/07, Ing. Mario Falomir <[EMAIL PROTECTED]> wrote: &g

[Flashcoders] stage resize question

2007-05-25 Thread Ing. Mario Falomir
Hi all, i need some orientation :) Does any body know any documentation around the internet or anywhere else, or can put me on track on how to resize the stage of a movie (and rearreange the objects ) according to the user screen resolution ? Im trying to hide the browser scroll bars all the time

Re: Re: [Flashcoders] Book recommendation for multiuser games / apps

2006-10-27 Thread Ing. Mario Falomir
Hi Jobe, I also have the mx 2004, which I liked very much btw, of the Flash Game Demisifyed , are you planning an AS3 version of the book ?? :) On 10/26/06, Chris Allen <[EMAIL PROTECTED]> wrote: On 10/26/06, slangeberg <[EMAIL PROTECTED]> wrote: > Have people had any experience with the Red

Re: [Flashcoders] Net Debugger not working

2006-08-16 Thread Ing. Mario Falomir
I have that problem too, so I use the Log instead :) On 8/16/06, Elena Blanco <[EMAIL PROTECTED]> wrote: Hello Everyone -- I am building a Flash Web application that uses Flash Remoting. I've been using the net debugger before with no problems whatsoever. Now though, the debugger no longer

Re: [Flashcoders] Junior Developer Flash/Flex Salary?

2006-06-20 Thread Ing. Mario Falomir
definetely Location it really DOES matters :) hehe because in Mexico ( where i live ) 30K a year its a well paid job... Usually most of programmers earn around 15K - 20K a year (thankfully not my case :| ), so if any guy is willing to provide a work visa to a humble mexican it will be very welcome

[Flashcoders] Flex 2 Beta 3 / AMFPHP ??? used to work with beta 2 :(

2006-05-19 Thread Ing. Mario Falomir
I had an app. built with flex 2 beta 2 ,using AMFPHP for communication with a DB, anyway, after I installed Beta 3 it did not work as it used anymore, the connection to the gateway fails, is there any way to debug or log ,in Flex 2, the remoting events in order to see what's going on ? Thanks in

Re: [Flashcoders] Question about FLEX2 - AS3 interactiing withLaserScanners ...

2006-04-28 Thread Ing. Mario Falomir
X2 - AS3 interactiing > withLaserScanners ... > > > http://www.impossibilities.com/blog/entry_blog-155.php > > http://weblogs.macromedia.com/jd/archives/2005/08/player_card_rea.cfm > > - Original Message - > From: "Ing. Mario Falomir" <[EMAI

[Flashcoders] Question about FLEX2 - AS3 interactiing with Laser Scanners ...

2006-04-28 Thread Ing. Mario Falomir
I dont know if this make sense, I need to develop an application that captures data read by a Laser Scanner, however before getting into the process (trying to avoid Delphi) I was wondering if this kind of functionality could be accomplish with AS3 and FLEX2 ? Thanks in advanced _

Re: [Flashcoders] Split Pane component??

2006-04-05 Thread Ing. Mario Falomir
here is a good one: http://www.joangarnet.com/blog/archives/2005/07/release_v2_fram_1.php On 4/5/06, Mike Anderson <[EMAIL PROTECTED]> wrote: > > Hello All, > > I am trying like crazy, to find a Split Pane Component that works as > well as Flex's version. > > I found one (and only ONE) somewhere

Re: [Flashcoders] Counter in function assigned inside a for loop

2006-03-31 Thread Ing. Mario Falomir
); } _root[ 'mc' + i ].onRollOver = function() { trace( 'mc' + this.indexPos + ' onRollOver' ); } _root[ 'mc' + i ].onRollOut = function() { trace( 'mc' + this.indexPos + ' onRollOut' ); } } On

Re: [Flashcoders] Counter in function assigned inside a for loop

2006-03-31 Thread Ing. Mario Falomir
Hi Alex, here is an example that could help you and illustrate how to accomplish what you want var totalMovieClips:Number = 3; for ( var i = 0; i < totalMovieClips; i ++ ) { _root['mc' + i].indexPos = i; _root[ 'mc' + i ].onRelease = function() { trace( 'mc' + this.indexPos +

Re: [FlashCoders] BitmapData.dispose()

2006-03-24 Thread Ing. Mario Falomir
Yes, BMP Obj remains in memory, you need to have a reference to that Object so you can dispose it later. import flash.display.BitmapData; var bitmap:BitmapData; function createBitmap():Void { bitmap = new BitmapData(500, 500, false, 0xFF); _root.attachBitmap(bitmap, 0); } clickObj = {

Re: [Flashcoders] MD5 Class in AS2.0?

2006-03-02 Thread Ing. Mario Falomir
Here is a prototype :), it could be useful and you could make a class out of it :) http://www.sephiroth.it/proto_detail.php?id=51 Cheers On 3/2/06, jim <[EMAIL PROTECTED]> wrote: > > Check out http://www.meychi.com/ they have one. > > Jim > > -Original Message- > From: [EMAIL PROTECTED]

Re: [Flashcoders] XML Driven Application Driving me crazy :)

2006-02-01 Thread Ing. Mario Falomir
Yep, the main part of the problem is the huge amount of data that it is handling, I guess... It doesnt query a DB , we generate all the needed info, such as catalogs for example, in the form of XML files. We did it this way because since its an app its going to be in CDs we did not want to force th

Re: [Flashcoders] XML Driven Application Driving me crazy :)

2006-01-31 Thread Ing. Mario Falomir
well, I will definetely take a look at it , thanks! On 1/31/06, Daniel Smith <[EMAIL PROTECTED]> wrote: > > > > > > > >> On 1/31/06, Ing. Mario Falomir <[EMAIL PROTECTED]> wrote: > > > > Hi, I need some advice from you guys :) I have an

Re: [Flashcoders] XML Driven Application Driving me crazy :)

2006-01-31 Thread Ing. Mario Falomir
ecently solved a similar issue. > > -- Sajid > > > On 1/31/06, Ing. Mario Falomir <[EMAIL PROTECTED]> wrote: > > Hi, I need some advice from you guys :) I have an XML Driven FLash APP, > > basically it's a tool that displays charts and data in grids, > contai

[Flashcoders] XML Driven Application Driving me crazy :)

2006-01-31 Thread Ing. Mario Falomir
Hi, I need some advice from you guys :) I have an XML Driven FLash APP, basically it's a tool that displays charts and data in grids, containers, etc...that my client will handout in CDs. So at the beginning of the development process I thought XML would suit perfectly in the purpose of this app. B