Re: [Flashcoders] URLLoader Class and some thinking

2008-04-28 Thread Patrick Jakub Jankun
Thanks Andrei! Seems to be execlty what I was looking for :) On 4/28/08 12:08 AM, Andrei Thomaz [EMAIL PROTECTED] wrote: maybe this helps you: http://code.google.com/p/bulk-loader/ []'s andrei On Sun, Apr 27, 2008 at 4:00 PM, Patrick Jakub Jankun [EMAIL PROTECTED] wrote: Hello

[Flashcoders] { AS3 } Reading position info X, Y, H W

2008-04-28 Thread flash
Hi i need some help reading position info X, Y, H W of a desired object. Now i know some of you are going to jump streight in with answeres like... instanceName.y, instanceName.x etc... but i would like you to take a look at the following link first, you will see a number of lines drawn to

Re: [Flashcoders] { AS3 } Reading position info X, Y, H W

2008-04-28 Thread Glen Pike
Do you know the rotation? 2 ways to do this: Either rotate the image back to 0 if it can be done - if you do this you will need to call validateNow() on the instance after changing values, read the new w2, etc. then rotate it back... Or do some pythagoras w2 is the hypotenuse of one

RE: [Flashcoders] { AS3 } Reading position info X, Y, H W

2008-04-28 Thread Pete Hotchkiss
Surely - by Pythagoras w2 = square root of (width - x)^2 + (x2 - x)^2 Also might help to know the _rotation angle of the containing element -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: 28 April 2008 14:43 To: Flash Coders

Re: [Flashcoders] { AS3 } Reading position info X, Y, H W

2008-04-28 Thread SJM - Flash
Yeah i know what the rotastion is, but am not sure what to do with regards to pythagoras and working out the hypotenuse. Can you point me to any examples of how to use validateNow() as ive looked through Flash Help/Livedocs and cant seam to figure out how its used! SM - Original

Re: [Flashcoders] { AS3 } Reading position info X, Y, H W

2008-04-28 Thread Glen Pike
Hi, Sorry I see you are using Flash not Flex, I gotta stop doing that. If you are using Flash, just changing the rotation should work straight away - you will see it on screen - don't worry about validateNow() (If you are using Flex and change properties of a UIComponent, you may

[Flashcoders] addCuePoint - AS2

2008-04-28 Thread Pavel Krusek
Hello everyone, please is possible adding cue points throught actionscript directly on NetStream object (without FLVPlayback component)? In AS documentation i see only onCuePoint handler, no method like addCuePoint thanks, Pavel ___ Flashcoders

[Flashcoders] AS2 class definition problem, Gaia framework

2008-04-28 Thread Jim McIntyre
I'm working in a framework for the first time (Gaia). I'll be including games on some of the site's pages, and most of the games will need to load a few external SWFs. In the (AS2) class file for the page I'm trying to modify, I'm trying to add this code inside the class constructor function

RE: [Flashcoders] Using FlexBuilder3 profiler with FlashCS3

2008-04-28 Thread Sunil Jolly
If you enable debugging in your SWF and use a debug version of the flash player, then you can use the Profile external application option. After selecting that, select Launch the application manually outside Flex Builder and hit Launch. If you have trouble, try using a different browser and/or

Re: [Flashcoders] AS2 class definition problem, Gaia framework

2008-04-28 Thread Juan Pablo Califano
Hi, You should place the var declaration in the body of the class, but the call to createEmptyMovieClip and loadMovie should be within some method. // var declaration private var posterMc:MovieClip; // var use private function someMethod():Void { posterMc =

[Flashcoders] MouseUp and MouseDown Events in TileList Componenet in AS 3.0

2008-04-28 Thread anuj sharma
Hi Guys I am trying to implement drag and drop from the tile list component to the main stage. I would be successful in loading dynamic videos in the tileList component and double clicking on any video in the tile list, will open the main video on the main stage( Code is attached). The main video

Re: [Flashcoders] Is Adobe fixing this big FP9 problem?

2008-04-28 Thread Paolo Nicoletti
___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Is Adobe fixing this big FP9 problem?

2008-04-28 Thread Paolo Nicoletti
Ok let's retry... plain text this time. Hello there, After having read that post you signaled (and the ones related to GC issues), I wrote a really simple Air application that scans one or more directories for actionscript files and checks their content to see whether or not every

RE: [Flashcoders] Sr. Flash Developer Position

2008-04-28 Thread Bright, Michael
Steve: Give me a call. Regards, Michael Bright Recruiter, MTV Networks (310) 752-8641 [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Steve Mathews Sent: Friday, April 25, 2008 5:16 PM To: Flash Coders List Subject: Re:

Re: [Flashcoders] Sr. Flash Developer Position

2008-04-28 Thread Steven Sacks
This is the first (and, unfortunately, I doubt the last) installment of my Recruiters Who Spam series. Michael Bright is a spammer. If he has spammed you, as well, won't you share your experience? Here's mine. Michael Bright emailed me twice, and then posted about his position twice in

RE: [Flashcoders] URLLoader Class and some thinking

2008-04-28 Thread Jesse Graupmann
An alternate version... QueueLoader http://code.google.com/p/queueloader-as3/ http://blog.hydrotik.com/category/queueloader/ -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Patrick Jakub Jankun Sent: Monday, April 28, 2008 1:10 AM To: Flash Coders List

Re: [Flashcoders] addCuePoint - AS2

2008-04-28 Thread chas warn
You can do it is through the Flash8 flv video encoder. Then use onCuePoint On Mon, Apr 28, 2008 at 8:53 AM, Pavel Krusek [EMAIL PROTECTED] wrote: Hello everyone, please is possible adding cue points throught actionscript directly on NetStream object (without FLVPlayback component)? In AS

Re: [Flashcoders] Is Adobe fixing this big FP9 problem?

2008-04-28 Thread EECOLOR
If I recall correctly, the problem only exists with event listeners for Timer, stage and EnterFrame event listeners. Stage listeners are easy to clean up. If you ever attach a listener to the stage, add it within the ADDED_TO_STAGE handler, make sure you remove it within the REMOTED_FROM_STAGE

Re: [Flashcoders] How to compare 2 dynamic Arrays

2008-04-28 Thread EECOLOR
I think you could use a ByteArray to do it. It would be (from the top of my head) something like this: sBA = new ByteArray(); sBA.writeObject(sArray); var t1BA:ByteArray = new ByteArray(); t1BA.writeObject(t1Array); trace(sBa.toString() == t1BA.toString()); Greetz Erik On 4/28/08, ACE Flash

Re: [Flashcoders] Converting a ByteArray to string and back again...

2008-04-28 Thread EECOLOR
To me that seems to work perfectly: var a:Array = new Array(); a.push(hello); a.push(this); a.push(is); a.push(a); a.push(test); var ba:ByteArray = new ByteArray(); ba.writeObject(a); ba.position = 0; var ba2:ByteArray = new ByteArray(); ba2.writeUTFBytes(ba.toString()); ba2.position = 0;

RE: [Flashcoders] Sr. Flash Developer Position

2008-04-28 Thread Bright, Michael
Sorry for the e-mails...I'm not trying to Spam, just looking to fill a position. This will be my last e-mail to the group. Regards, Michael Bright Recruiter, MTV Networks (310) 752-8641 [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf

Re: [Flashcoders] Is Adobe fixing this big FP9 problem?

2008-04-28 Thread Paolo Nicoletti
Hello Erik, I always try to clean every addEventListener I put in my code, but, as you said, Timer, Stage and EnterFrame events are in fact the ones that cause the problems. In fact this little application is useful only for tracking event listeners that the programmer has forgotten to remove.

[Flashcoders] Loosing full-screen when loosing focus

2008-04-28 Thread Bart Goormans
Dear Listers, ( I just joined the mailinglist so if I'm way out off topic with my question here, pls let me know.) I wondered if one could tell a full-screen swf (CTRL+F in flashplayer) to stay full-screen after loosing focus? I found little or no documentation about this toppic. At

[Flashcoders] Reading SWF headers with ASP

2008-04-28 Thread Helmut Granda
Hi All, I have done some extensive research in the subject and the only solution I found is a ASP class some one wrote in 2001 and it is outdated. Does anyone knows how to read the SWF headers with ASP? I know how to do it with PHP but I havent found a solution with ASP. Mainly I am

Re: [Flashcoders] addCuePoint - AS2

2008-04-28 Thread Jason Van Cleave
I don't think cuepoints are anything inherit to Flash video/NetStream class but just information that is injected in the flv metadata during encoding. If you create an array to hold cuepoints as objects and track them with an interval watching NetStream.time you should be able to create the same

Re: [Flashcoders] Loosing full-screen when loosing focus

2008-04-28 Thread Rich Shupe
I don't think it's possible to prevent this in the browser. It's probably possible when using a third-party projector enhancer like mProjector, but you'd have to test. Rich http://www.LearningActionScript3.com ___ Flashcoders mailing list

Re: [Flashcoders] Reading SWF headers with ASP

2008-04-28 Thread Juan Pablo Califano
In native classic ASP (without any extra components installed in the server), I'd say it's almost impossible. Maybe if the swf is uncompressed, you can give it a shot, reading the file with a FileSystemObject -which is meant to read text files- and using some single-byte string encoding and

Re: [Flashcoders] Reading SWF headers with ASP

2008-04-28 Thread bkettles
Are you trying to get width height in a live situation, or would an offline solution do? -Buzz -- Original message -- From: Helmut Granda [EMAIL PROTECTED] Hi All, I have done some extensive research in the subject and the only solution I found