[Flashcoders] flash ocx on c++ form

2009-04-06 Thread Hans Wichman
Hi list, I'm adapting an existing c++ application, but I'm not well versed in it. I have a flash ocx on a form, which loads a movie fine the first time, but not the 2nd time. It seems timeline based flash files are no problem, but my class based swf is. It is initialized and loaded, but things

[Flashcoders] App works fine on PC but problems on Mac

2009-04-06 Thread Paul Steven
I have created 4 games for both Mac and PC that are distributed as downloadable executables packaged with MDM Zinc 3. A large number have been purchased for the PC with no one reporting any problems. Only a handful have been sold for the Mac however one customer is reporting problems on the Mac

Re: [Flashcoders] SWIZ + AS3

2009-04-06 Thread Muzak
You should probably try the framework specific mailing list: http://groups.google.com/group/swiz-framework - Original Message - From: Gert-Jan van der Wel gert...@floorplanner.com To: flashcoders@chattyfig.figleaf.com Sent: Monday, April 06, 2009 11:02 AM Subject: [Flashcoders] SWIZ +

[Flashcoders] SWIZ + AS3

2009-04-06 Thread Gert-Jan van der Wel
Hi everybody, After seeing Introduction to the Swiz Framework for Flex by Chris Scott I got enthusiastic about SWIZ. I wanted to use it for an AS3 project, but I'm having some trouble getting started. I'm using Eclipse (3.4.2) with FDT 3. I downloaded the swiz.swc and added it to my

[Flashcoders] live streaming

2009-04-06 Thread Fabio Pinatti
Hello all, I need to collect some resources about live video streaming and live sound streaming with flash or other tool you advice me. As I never worked with that early I'm a bit lost. Do we have free servers? If negative, do you know some cheap/good? Is there some api to help with that? Any

Re: [Flashcoders] live streaming

2009-04-06 Thread Glen Pike
Hi, Check out these threads which I remember posting a while ago: http://www.mail-archive.com/flashcoders@chattyfig.figleaf.com/msg46719.html http://www.mail-archive.com/osfl...@osflash.org/msg15410.html Fabio Pinatti wrote: Hello all, I need to collect some resources about live

Re: [Flashcoders] ul mad spacing

2009-04-06 Thread Glen Pike
Hi, It looks like the CSS for flash does not seem to support margin-bottom, or padding. You might be able to change the leading on the last list item, but that might not be fun... leading = line-height. I don't think you need to put the ul in to define a list, just add a list

[Flashcoders] changing video playback speed with timer listeners

2009-04-06 Thread Carl Welch
Hi, I need to build a function that changes the playback speed of a FLV. I am trying to make it so every time you hit the + key the FLV plays a little faster, and when you hit the - key, it plays a little slower. From what I've read, there is nothing built in. Someone suggested building

Re: [Flashcoders] changing video playback speed with timer listeners

2009-04-06 Thread Glen Pike
Hi, If you remove the timer listener, stop the timer and make your timer a variable outside your function, you can recreate a new one... The key is removing the event listener before you kill the timer instance - it's good practice, especially for AS3 :) See the code below - it was

Re: [Flashcoders] changing video playback speed with timer listeners

2009-04-06 Thread Paul Andrews
A quick look on google looks promising: http://www.flashcomguru.com/index.cfm/2005/8/2/slowmo Paul - Original Message - From: Carl Welch carlwelchdes...@gmail.com To: Flash Coders List flashcoders@chattyfig.figleaf.com Sent: Monday, April 06, 2009 10:47 PM Subject: [Flashcoders]