Re: [Flashcoders] Question AIR Sqlite api

2008-04-18 Thread Jiri Heitlager
OK, I relplied a bit in a hurry and didnt make myself clear. That is stupid of me, and I am sorry. The situation is like so. I open a connection using OpenAsync. I have listeners listening to the Open event. When that is fired, I response with a method that creates 3 tables in one go, see code

Re: [Flashcoders] Question AIR Sqlite api

2008-04-18 Thread Muzak
I think I had a similar error when one of the statements wasn't valid. In this case I'd think that one of the tables already exists (which ends the transaction) and when the next statement is exectuted it throws the error you see. Here's something I used: try { _sqlConnection.begin();

[Flashcoders] 64 bit OS and FMS

2008-04-18 Thread Hans Wichman
Hi, does n1 have any experience with running FMS on a 64bit Vista OS? We are migrating one of our testservers shortly and we are trying to identify possible bottlenecks. greetz JC ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

Re: [Flashcoders] RE: Zend Framework PHP question

2008-04-18 Thread Glen Pike
Hi, If you are changing the php.ini file, you may need to restart your webserver. Make sure changes have taken effect by running ?php phpinfo(); ? and searching for the include path. If it still ain't working, watch out for multiple php.ini files - XAMPP and some other

Re: [Flashcoders] Question AIR Sqlite api

2008-04-18 Thread Jiri Heitlager
Thanx Muzak, I will try your solution Muzak wrote: I think I had a similar error when one of the statements wasn't valid. In this case I'd think that one of the tables already exists (which ends the transaction) and when the next statement is exectuted it throws the error you see. Here's

[Flashcoders] Double lines from PHP

2008-04-18 Thread Elia Morling
I'm sending some form data from PHP to flash and all line feeds turn out to be double lines in flash. I'm using a textfield and htmlText. I tried to conver chr(13) and chr(10) to br but it doesn't work. I also tried turning chr(13) to chr(10) and vice versa without luck. Any ideas? Elia

[Flashcoders] Flex PrintJob image scaling...

2008-04-18 Thread Glen Pike
Hi I am having problems printing a scaled image using the printjob class. tracing reports that my image has scaled, but it never prints scaled... I have tried setting either the width / height or scale properties of the image and the image container, but nothing seems to work. Can

[Flashcoders] System.totalMemory value is always going up.

2008-04-18 Thread Abe Pazos
Hi all, this is my first post here, even I usually read the threads with much interest. I've been following the discussion about the FP9 problem regarding to memory use and removing loaded assets, which I find very important since I work in a large project with hundreds of large loaded assets.

Re: [Flashcoders] byteArray x/y

2008-04-18 Thread John McCormack
Terry, I think I know what might be going wrong for you. You might be expecting something different. Try this... Instead of setTile(j, i, (i * numCols) + j); Let's use tile 1 or tile 9... Change that line to setTile(j, i, 1) or setTile(j, i, 9) You see a 16x16 pattern repeated. The 12 tiles

Re: [Flashcoders] Double lines from PHP

2008-04-18 Thread Muzak
str.split(\n).join(); - Original Message - From: Elia Morling [EMAIL PROTECTED] To: Flash Coders List flashcoders@chattyfig.figleaf.com Sent: Friday, April 18, 2008 3:55 PM Subject: [Flashcoders] Double lines from PHP I'm sending some form data from PHP to flash and all line feeds

RE: [Flashcoders] byteArray x/y

2008-04-18 Thread I Go Geo
John, Doesn't work. It works for one number and repeats that number 10 x 15 times. But what I am trying to do is see the numbers, in this case 0 to 7 repeated 10 x 15 times. I can also get this to work with one column repeating and at the same time one row repeating. But not the correct numeric

Re: [Flashcoders] Double lines from PHP

2008-04-18 Thread Elia Morling
Thanks, but it didn't work. :( - Original Message - From: Muzak [EMAIL PROTECTED] To: Flash Coders List flashcoders@chattyfig.figleaf.com Sent: Friday, April 18, 2008 5:37 PM Subject: Re: [Flashcoders] Double lines from PHP str.split(\n).join(); - Original Message - From:

Re: [Flashcoders] Double lines from PHP

2008-04-18 Thread Elia Morling
Sorry, yes it did work! Thx! Elia - Original Message - From: Muzak [EMAIL PROTECTED] To: Flash Coders List flashcoders@chattyfig.figleaf.com Sent: Friday, April 18, 2008 5:37 PM Subject: Re: [Flashcoders] Double lines from PHP str.split(\n).join(); - Original Message -

Re: [Flashcoders] Double lines from PHP

2008-04-18 Thread Ibrahim Y
how you send data from PHP to flash ? how you manipulate them in flash? On Fri, Apr 18, 2008 at 4:55 PM, Elia Morling [EMAIL PROTECTED] wrote: I'm sending some form data from PHP to flash and all line feeds turn out to be double lines in flash. I'm using a textfield and htmlText. I tried to

Re: [Flashcoders] Double lines from PHP

2008-04-18 Thread robert
no idea what your form data in php looks like, but you could probably use nl2br in there and the output (xml?) doesn't include \n or \r but simply br as needed. Anyway I think on Windows you get a \r\n combo. for flash, you need to strip out the \r. then \n remains and as far as I recall

[Flashcoders] Actionscript Exploit very bad news

2008-04-18 Thread Steven Sacks
http://www.matasano.com/log/1032/this-new-vulnerability-dowds-inhuman-flash-exploit/ http://documents.iss.net/whitepapers/IBM_X-Force_WP_final.pdf ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

Re: [Flashcoders] Actionscript Exploit very bad news

2008-04-18 Thread Ricky Bacon
Steven Sacks wrote: http://www.matasano.com/log/1032/this-new-vulnerability-dowds-inhuman-flash-exploit/ That's the most amusing write up of an exploit I've ever read. I especially like the answer at the end of the follow up post: Has Mark Dowd simply outclassed us? Should we pack it up

[Flashcoders] RE: [Flash_Tiger] Actionscript Exploit very bad news

2008-04-18 Thread Francis Cheng
This is a good opportunity to remind everyone to upgrade to Flash Player 9.0.124.0, which addresses this vulnerability. http://www.adobe.com/support/security/bulletins/apsb08-11.html Here's a link to the debugger versions of 9.0.124.0: http://www.adobe.com/support/flashplayer/downloads.html#fp9

Re: [Flashcoders] Actionscript Exploit very bad news

2008-04-18 Thread Matt S.
But what does it actually mean for the lay flasher? .m On Fri, Apr 18, 2008 at 5:03 PM, Ricky Bacon [EMAIL PROTECTED] wrote: Steven Sacks wrote: http://www.matasano.com/log/1032/this-new-vulnerability-dowds-inhuman-flash-exploit/ That's the most amusing write up of an exploit I've ever

RE: [Flashcoders] RE: [Flash_Tiger] Actionscript Exploit very bad news

2008-04-18 Thread Francis Cheng
Yes, I'm sure we do test it on Mac OS X. Sorry you're having problems with it. I'll pass this information along to the Flash Player team. Francis Cheng | Senior Technical Writer | Adobe Systems, Inc. http://blogs.adobe.com/fcheng -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL