Re: [FlashCoders] XRay _global tree

2006-09-06 Thread Dimitrios Bendilas
Hi John, I'm using connector 1.6.1 and the 1.2.5 interface. I just made a really simple example for you to test. It doesn't have any classes, so no _global.com, but I'm having the same issue with _level0, I can only take a snapshot of _level0. If I type _level0.squares (or select the movieclip

RE: [Flashcoders] Changing the Volume of a loaded FLV

2006-09-06 Thread Darren Bowers
Karim, Are you using the FLVPlayback component? If you are then you need to apply the volume to the FLVPlayback Object not create a new sound object. E.g. my_FLVPlybk.volume = 0; If not, then you need to create a new sound object and attach it to the MC you want to adjust: E.g. var my_vol =

[Flashcoders] xml flash into scroller

2006-09-06 Thread Karlo Marcelo A. Estrada
Hello friends, I have an xml that I just loaded into flash. I just need them to be scrolled so I planned to put a scroller. How do I do that? Im trying to figure it out. Please any help. Please please. Karlo Here is my code inside the flash. This is in the first frame. myXML = new

Re: [FlashCoders] XRay _global tree

2006-09-06 Thread Hans Wichman
Hey John, this is the same thing i sent you a mail about a while ago, I experience it as well, but not sure if its xray or me:) greetz JC On 9/6/06, Dimitrios Bendilas [EMAIL PROTECTED] wrote: Hi John, I'm using connector 1.6.1 and the 1.2.5 interface. I just made a really simple example

Re: [Flashcoders] weird class could not be loaded.

2006-09-06 Thread Hans Wichman
Hi, it might be that you are using relative class paths. If so, the fla will compile all right, but during syntax check, there is no relative path to start from. You will need to add a full absolute classpath, and it should go okay. grtz JC On 9/6/06, Adrian Ionut Beschea [EMAIL PROTECTED]

RE: [Flashcoders] OT: Recommendations for acredit-cardprocessingservice for a subscription-based Flash app

2006-09-06 Thread André Goliath
you´re welcome. btw, there was a typo in my domain,... *duck,run,out* www.software-and-solutions.de -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of matt stuehler Sent: Wednesday, September 06, 2006 3:53 AM To: Flashcoders mailing list Subject: Re:

RE: [Flashcoders] Changing the Volume of a loaded FLV

2006-09-06 Thread kariminal
Thanks !... -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Patrick Matte Sent: 05 September 2006 22:02 To: Flashcoders mailing list Subject: Re: [Flashcoders] Changing the Volume of a loaded FLV You need to attachAudio on your target. nc = new

Re: [FlashCoders] XRay _global tree

2006-09-06 Thread John Grden
Try the latest interface: http://www.rockonflash.com/xray/flex/Xray.html I just got back to the desk, I'll do some tests with th efiles you posted, thanks! On 9/6/06, Dimitrios Bendilas [EMAIL PROTECTED] wrote: Hi John, I'm using connector 1.6.1 and the 1.2.5 interface. I just made a

Re: [Flashcoders] (repost) Horizontal Drop-Down Menu (pleeeease don't flame me!)

2006-09-06 Thread Kurt Dommermuth
I''m sorry Mark. I should have looked closer. that's a different beast. but not a hard beast! I wish I could offer to help further, but I'm trying to keep everybody happy before I leave for a vacation Friday. If it can wait I can help next week. Kurt At 10:49 PM 9/5/2006, you wrote: Hey

Re: [Flashcoders] weird class could not be loaded.

2006-09-06 Thread Hans Wichman
no not on the publish settings, since that is only for the fla, on the edit - preferences menu grtz JC On 9/6/06, Christian Pugliese [EMAIL PROTECTED] wrote: do you mean the full path on the publish settings as2 preferences? if yes, i´ve already done that... date time is ok too, anyway i´ve

[Flashcoders] as 3 help

2006-09-06 Thread dan
Is in as 2i use'd OnEnterFrame what do I use in as3? Is it some event with the new event dispatcher? 10x ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

Re: [Flashcoders] as 3 help

2006-09-06 Thread Meinte van't Kruis
use the displayObjects' function AddEventListener, like this: this.addEventListener(Event.ENTER_FRAME,enterFrame); and then have function function enterFrame(e:Event){ } dont forgot the e:Event parameter in enterFrame, it will cause an error if you don't include that. Also, read the API ref,

[Flashcoders] Reliable local FLV stop event

2006-09-06 Thread Andreas R
I know this is an old question but i can't really seem to get a good grasp of it. I have a client that loads FLVs locally off the machine it runs on. When movies stop, events get broadcasted. however sometimes the stop event i set up fails: onStatus = function(info){

[Flashcoders] Synchronizing multiple flvs

2006-09-06 Thread Christopher Whiteford
I am looking to find out if anyone has experience in splitting an FLV into multiple parts and then playing them back whereas the the timing is seamless? The reason I ask is I need to create a picture tile game which is easy enough but the client came back with this where 15 tiles playing the

RE: [Flashcoders] Reliable local FLV stop event

2006-09-06 Thread Karina Steffens
Yes it's bizarre that there isn't an out-of-box solution for this. I came across the same problem a while ago. The solution I came across was to check if the play head is not moving while the movie is supposed to be still playing (that is, not paused or stopped). For this you need to set a

Re: [Flashcoders] Synchronizing multiple flvs

2006-09-06 Thread Jeff Gomes
Would the tiles be contiguous and stationary with instantaneous jumps from one position to another, or do their positions have to animate from one location to another? At 08:38 9/6/2006, Christopher Whiteford wrote: I am looking to find out if anyone has experience in splitting an FLV into

RE: [Flashcoders] Synchronizing multiple flvs

2006-09-06 Thread Mike Mountain
If the tiles were small enough this could be something you could do with bitmapData - ie. Copying the image data from a master video (offstage) into each of the tiles as it's played. Or you could just mask multiple copies of the same flv, but I suspect there would be bigger overheads with this

Re: [Flashcoders] Synchronizing multiple flvs

2006-09-06 Thread Christopher Whiteford
The jumps would be instantaneous. On 9/6/06, Jeff Gomes [EMAIL PROTECTED] wrote: Would the tiles be contiguous and stationary with instantaneous jumps from one position to another, or do their positions have to animate from one location to another? At 08:38 9/6/2006, Christopher Whiteford

RE: [Flashcoders] Synchronizing multiple flvs

2006-09-06 Thread Karina Steffens
Could you use one big flv and mask it out for each tile? -Original Message- From: Jeff Gomes [mailto:[EMAIL PROTECTED] Sent: 06 September 2006 16:46 To: Flashcoders mailing list; flashcoders@chattyfig.figleaf.com Subject: Re: [Flashcoders] Synchronizing multiple flvs Would

Re: [Flashcoders] communication in flash 8

2006-09-06 Thread eric dolecki
Sounds like a timing issue. You could supply a query string to the popup, and in that page using javascript, write the object/embed statements using that query string to get information in there. Or something like that. - e.d. On 9/6/06, Rutul Patel [EMAIL PROTECTED] wrote: hi guys, i want to

[Flashcoders] Re: Insert elements into an area dinamically

2006-09-06 Thread Ricardo Sánchez
No one? :P On 8/9/06, Ricardo Sánchez [EMAIL PROTECTED] wrote: Ok, I'll try to explain myself as best as possible. First take a look at this: http://www.pillandpillow .com/msfCongo/mainEng.html As you can see the main interface is a map of Congo composed of pictures and comments distributed

Re: [Flashcoders] (repost) Horizontal Drop-Down Menu (pleeeease don't flame me!)

2006-09-06 Thread Marc Hoffman
Hi Kurt, I may well take you up on your offer. Is there a chance we could talk briefly by phone before you leave? I want to consider hiring you to do the menu, but need to clarify what would be involved to meet my specs. I also want you to know that the client needs to sign off on the nav

Re: [Flashcoders] Reliable local FLV stop event

2006-09-06 Thread Dan Rogers
How are you creating the FLVs to begin with? From what I can gather, the NetStream.Play.Stop issue seems to be related to how people create their FLV files. For example, I recently created a bunch of FLVs via export from After Effects (using On2 VP6 codec), and the stop event works just

Re: [Flashcoders] (repost) Horizontal Drop-Down Menu (pleeeease don't flame me!)

2006-09-06 Thread Marc Hoffman
redFaceOops, meant to send this offlist./redFace Hi Kurt, I may well take you up on your offer. .. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

[Flashcoders] Memory Leak

2006-09-06 Thread Michael Trim
Can anybody point me in the direction of any more information on this particular bug? http://chattyfig.figleaf.com/pipermail/flashcoders/2006-March/161995.htm l We have implemented a solution that minimizes/maximizes to restore GC but I would like to have a bit more info on why this is

[Flashcoders] line mask

2006-09-06 Thread Jason Bay
Is it possible to convert a line to a mask? Here is what is going on... I am developing an application that on mousePress a line draws. I want to be able to turn this line into a mask. I have tried the creating a shape using lineTo although if the mouse moves too fast the mask won' t

[Flashcoders] fuse cheat sheat?

2006-09-06 Thread aaron smith
does anyone know if there is a fuse cheat sheat for using fuse. kinda like the actionscript 2 and 3 cheat sheats? word ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

Re: [Flashcoders] Reliable local FLV stop event

2006-09-06 Thread Hans Wichman
Hi, if I remember correctly, when using a streaming server, and a buffer of for example 10 seconds, the NetStream.Play.Stop would trigger just fine 10 SECONDS BEFORE the actual end of the flv:) So you end up waiting for an empty buffer after the stop event etc etc greetz JC On 9/6/06, Dan

Re: [Flashcoders] flip pages in as2 or the like

2006-09-06 Thread Matthias Dittgen
I have finished my pageflip class and it is working great in the context of our customers webpage. My boss came back from his holidays and he's usually a big fan of opensource, but when I asked for permission to give away this piece of code, he was not so happy about it. So I can't publish it at

Re: [Flashcoders] flip pages in as2 or the like

2006-09-06 Thread Matthias Dittgen
Thank you, Jordan! I'll take a look at this, when I get the time ;-) I have solved my pageflip problem, and there are now other problems ahead, waiting for solutions. Matthias 2006/9/6, jordan robinson [EMAIL PROTECTED]: There is also an updated as2 flip page updated as of august 22nd - here

[Flashcoders] Unsightly borders in MX components imported via swfmill

2006-09-06 Thread shawn allen
Hey folks, I've finally gotten around to integrating MX components into my MTASC/ swfmill workflow. They seem to work fine, but all of the UI components that I attach have these hideous black borders around them. I'm unpacking MX's swc files using a python script I whipped up (which I can

[Flashcoders] Flv's playing in a projector from usb drive

2006-09-06 Thread Kent Haynes
I've got a project that consists of a projector that plays some externally loaded flv's. Not a big deal right...Well here's the problem. When the projector is launched from a local drive all plays fine. But when we try to run the projector from a network drive or USB drive the videos don't play

[Flashcoders] ComboBox,Depth, Draw API - Bug?

2006-09-06 Thread Merrill, Jason
Is this a bug? Try the sample code out below - Why is it that if you specify an explicit depth for a movie clip (SEE LINE 2 OF THE FIRST SET OF CODE BELOW) and draw on it with the draw API, and a comboBox made later with a depth of getNextHighestDepth() will have a drop down which displays over

RE: [Flashcoders] ComboBox,Depth, Draw API - Bug?

2006-09-06 Thread Pete Miller
Try tracing the value that you get from getNextHighestDepth(). If the result is 1048575, you are incorporating v2.0 components, which causes getNextHighestDepth() to be less than useful. Use DepthManager instead. This pointer isn't entirely related, but might help explaining why:

RE: [Flashcoders] ComboBox,Depth, Draw API - Bug?

2006-09-06 Thread Merrill, Jason
Thanks Pete - that looks indeed to be the issue. I am using the V2 ComboBox and the depth is above that number. I'll try out mx.managers.DepthManager.kTop or mx.managers.DepthManager.kTopmost and see if I can get it to work. Thanks for the link. Basically, I have a comboBox above a colorPicker

Re: [Flashcoders] fuse cheat sheat?

2006-09-06 Thread Marcelo de Moraes Serpa
I don't think so, but it would be nice to have one :) On 9/6/06, aaron smith [EMAIL PROTECTED] wrote: does anyone know if there is a fuse cheat sheat for using fuse. kinda like the actionscript 2 and 3 cheat sheats? word ___

[Flashcoders] Flv's playing in a projector from usb drive

2006-09-06 Thread Kent Haynes
Found out some more on this maybe. It appears that the issue might be related to the usb drive being formatted FAT32 instead of NTFS. We tried a local partition formatted in FAT32 and got the same results. Any known issues of this kind? thanks kent Kent Haynes Software Engineer Waterford

RE: [Flashcoders] ComboBox,Depth, Draw API - Bug?

2006-09-06 Thread Merrill, Jason
Hmm... I have been playing with the DepthManager class, alternatively trying: my_cb = DepthManager.createClassObjectAtDepth(mx.controls.ComboBox, DepthManager.kCursor); and setting the drawn on mc to HighestDepth or creating the ComboBox at usual depth and setting the depth of the movieClip

Re: [Flashcoders] fuse cheat sheat?

2006-09-06 Thread Chris Mitchell
What is a cheat sheet? The public AP!? Just wondering don't wana be left out in the cold...ha chris Marcelo de Moraes Serpa [EMAIL PROTECTED] wrote: I don't think so, but it would be nice to have one :) On 9/6/06, aaron smith wrote: does anyone know if there is a fuse cheat sheat for

RE: [Flashcoders] Publish / Live Preview resize issue of customcomponent extending movieClip

2006-09-06 Thread Palmer, Jim
wow, I struggled with this as well. I have this working for all my custom components, albeit it is tough as heck to get just right. I have basic: class XX extends MovieClip {...} I have a clear seperation of the constructor and an init() function like you have. The init function is what draws

Re: [Flashcoders] Flv's playing in a projector from usb drive

2006-09-06 Thread Josh Santangelo
Is your FLV extremely large, or named with a very weird filename? On Sep 6, 2006, at 1:20p, Kent Haynes wrote: Found out some more on this maybe. It appears that the issue might be related to the usb drive being formatted FAT32 instead of NTFS. We tried a local partition formatted in FAT32

RE: [Flashcoders] Flv's playing in a projector from usb drive

2006-09-06 Thread Kent Haynes
It's not huge 3.9 MB. But we've just discovered some more info. It's definitely related to the FAT32 file system. We formatted two partitions on the drive one NTFS and another FAT32 and sure enough the NTFS plays fine FAT32 doesn't play. So I was looking for weird characters in the path.

RE: [Flashcoders] Flv's playing in a projector from usb drive

2006-09-06 Thread Robin Burrer
What kind of projector is it? Are you using the Adobe projector or a wrapper application? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Kent Haynes Sent: Thursday, 7 September 2006 8:21 AM To: Flashcoders mailing list Subject: RE: [Flashcoders] Flv's

Re: [Flashcoders] Publish / Live Preview resize issue of customcomponent extending movieClip

2006-09-06 Thread Muzak
LivePreview calls a setSize() method when scaling occurs on stage. So you'll have to add that to your class. To demonstrate, create a MovieClip with a 100x100 square in it, attach the following class. class SetSizeComp extends MovieClip { function SetSizeComp() { trace(SetSizeComp :::

RE: [Flashcoders] Flv's playing in a projector from usb drive

2006-09-06 Thread Guy McLoughlin
Have you tried shortening the file name to something DOS compatable? ( 8 characters + extension ) i.e. Classrom.flv - Guy At 06:20 PM 06/09/2006, Kent Haynes wrote: It's not huge 3.9 MB. But we've just discovered some more info. It's definitely related to the FAT32 file system. We

[Flashcoders] Re: [Ann-FlashDev-Syd] 11th Sept Sydney Flash Platform Developers Gorup

2006-09-06 Thread Chris Velevitch
The next meeting on the 11th September is on LiveCycle. Mark Szulc of Adobe will give us an overview of LiveCycle and give us some insight as to how Flash/Flex can work with it. This meeting will alos be a joint meeting with the NSW Coldfusion Users Group. The meeting is on at 6:30pm for 7pm

[Flashcoders] [JOB] Sr. Flash/AS Programmers (4), Los Angeles, CA | 70-125k

2006-09-06 Thread Beau Gould
Sr. Flash/AS Programmers (4), Los Angeles, CA | 70-125k My Los Angeles, CA client is one of the most renowned and acclaimed interactive agencies in the world. As a Senior Flash/ActionScript Programmer, you transform client goals into compelling, usable, and media-rich Interactive Experiences