Re: [Flashcoders] Dragging loads of sound files from library into a movie clip

2009-04-08 Thread Karl DeSaulniers
I have a preloadAsset class that might work for this. It works with a  
progress bar and percent text. Let me see if I can find it.


Sent from losPhone

On Apr 8, 2009, at 1:30 AM, Paul Steven paul_ste...@btinternet.com  
wrote:


Related to my previous post, I now need to drag about 300 audio  
files from

the library into a movie clip.

Essentially this is to ensure they are preloaded in my game. The  
method I

use is to create a movie clip that has all the audio files on separate
layers. This movie clip is then nested inside another movie clip and  
placed

on the second keyframe with a stop action on the first.

I am wondering if there is a magic way to drag say 300 audio files  
from the
library and for flash (Flash CS3) to automatically create 300  
layers, one

layer for each audio file?

Thanks in advance

Paul

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] Is it possible to embed Flash player inside C++ application on MacOS?

2009-04-08 Thread Pavel Repkin
Hey!

My Windows application embeds Flash player.

Now I want to port the application to MacOS.
But I was not able to find any tutorial or an article on the subject.

Do you know how to embed Flash player inside MacOS application?
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Is it possible to embed Flash player inside C++ application on MacOS?

2009-04-08 Thread Ian Thomas
Yes.

I'd take a look at the open source code for Screenweaver HX - SWHX.
This embeds the Netscape Flash plugin.

There's a source code link on this page:
http://screenweaver.org/doku.php?id=download

HTH,
   Ian

On Wed, Apr 8, 2009 at 11:36 AM, Pavel Repkin pavel.rep...@gmail.com wrote:
 Hey!

 My Windows application embeds Flash player.

 Now I want to port the application to MacOS.
 But I was not able to find any tutorial or an article on the subject.

 Do you know how to embed Flash player inside MacOS application?
 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] ColorTransform GTween

2009-04-08 Thread Jiri
I am experimenting with GTween from Grant Skinner. I cant seem to figure 
out how to do a color transform. Does somebody know how to do that?

Here is what i have:

import fl.motion.easing.*;
import com.gskinner.motion.*

var colorInfo:ColorTransform = clip.transform.colorTransform;

trace(colorInfo);

var myTween:GTween = new GTween(clip,2,{color:0xFFcc00});
myTween.setAssignment(clip.transform,colorTransform);

//resulting in flickering of color of the clip.

Jiri
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] ColorTransform GTween

2009-04-08 Thread Ashim D'Silva
Never used GTween before, but Grant is joining forces with Jack Doyle
of TweenLite, and that library is incredibly easy to use. If the
possibility exists, you might want to switch libraries, and soon, you
should get the best of both worlds.

2009/4/9 Jiri jiriheitla...@googlemail.com:
 I am experimenting with GTween from Grant Skinner. I cant seem to figure out
 how to do a color transform. Does somebody know how to do that?
 Here is what i have:

 import fl.motion.easing.*;
 import com.gskinner.motion.*

 var colorInfo:ColorTransform = clip.transform.colorTransform;

 trace(colorInfo);

 var myTween:GTween = new GTween(clip,2,{color:0xFFcc00});
 myTween.setAssignment(clip.transform,colorTransform);

 //resulting in flickering of color of the clip.

 Jiri
 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders




-- 
The Random Lines
My online portfolio
www.therandomlines.com
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] ColorTransform GTween

2009-04-08 Thread Muzak

but is there really nobody out there who knows how to do it ?


I'm sure Mr. Google knows.
http://www.google.com/search?hl=enq=tween+colortransformmeta=aq=1oq=tween+color

And I'm pretty sure AnimationPackage has some color stuff.
http://www.alex-uhlmann.de/flash/animationpackage/

- Original Message - 
From: Jiri jiriheitla...@googlemail.com

To: Flash Coders List flashcoders@chattyfig.figleaf.com
Sent: Wednesday, April 08, 2009 8:11 PM
Subject: Re: [Flashcoders] ColorTransform GTween



Thanx Ashum...,but is there really nobody out there who knows how to do it ?

Jiri

Ashim D'Silva wrote:

Never used GTween before, but Grant is joining forces with Jack Doyle
of TweenLite, and that library is incredibly easy to use. If the
possibility exists, you might want to switch libraries, and soon, you
should get the best of both worlds.

2009/4/9 Jiri jiriheitla...@googlemail.com:

I am experimenting with GTween from Grant Skinner. I cant seem to figure out
how to do a color transform. Does somebody know how to do that?
Here is what i have:

import fl.motion.easing.*;
import com.gskinner.motion.*

var colorInfo:ColorTransform = clip.transform.colorTransform;

trace(colorInfo);

var myTween:GTween = new GTween(clip,2,{color:0xFFcc00});
myTween.setAssignment(clip.transform,colorTransform);

//resulting in flickering of color of the clip.

Jiri


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] ColorTransform GTween

2009-04-08 Thread Karl DeSaulniers

Oh yeah, TweenLite is really easy and a realy great class.
TweenMax too. They definately have tween for color. And MUCH more.
Worth its weight in gold.

Karl DeSaulniers
Design Drumm
http://designdrumm.com

On Apr 8, 2009, at 7:27 PM, Muzak wrote:


but is there really nobody out there who knows how to do it ?


I'm sure Mr. Google knows.
http://www.google.com/search?hl=enq=tween 
+colortransformmeta=aq=1oq=tween+color


And I'm pretty sure AnimationPackage has some color stuff.
http://www.alex-uhlmann.de/flash/animationpackage/

- Original Message - From: Jiri  
jiriheitla...@googlemail.com

To: Flash Coders List flashcoders@chattyfig.figleaf.com
Sent: Wednesday, April 08, 2009 8:11 PM
Subject: Re: [Flashcoders] ColorTransform GTween


Thanx Ashum...,but is there really nobody out there who knows how  
to do it ?

Jiri
Ashim D'Silva wrote:
Never used GTween before, but Grant is joining forces with Jack  
Doyle

of TweenLite, and that library is incredibly easy to use. If the
possibility exists, you might want to switch libraries, and soon,  
you

should get the best of both worlds.
2009/4/9 Jiri jiriheitla...@googlemail.com:
I am experimenting with GTween from Grant Skinner. I cant seem  
to figure out

how to do a color transform. Does somebody know how to do that?
Here is what i have:

import fl.motion.easing.*;
import com.gskinner.motion.*

var colorInfo:ColorTransform = clip.transform.colorTransform;

trace(colorInfo);

var myTween:GTween = new GTween(clip,2,{color:0xFFcc00});
myTween.setAssignment(clip.transform,colorTransform);

//resulting in flickering of color of the clip.

Jiri


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Dragging loads of sound files from library into a movie clip

2009-04-08 Thread Karl DeSaulniers

Hey Paul,
Do a google search for PreloadAssetManager
I think you'll find what your needing.

Best,

Karl DeSaulniers
Design Drumm
http://designdrumm.com

On Apr 8, 2009, at 1:30 AM, Paul Steven wrote:

Related to my previous post, I now need to drag about 300 audio  
files from

the library into a movie clip.

Essentially this is to ensure they are preloaded in my game. The  
method I

use is to create a movie clip that has all the audio files on separate
layers. This movie clip is then nested inside another movie clip  
and placed

on the second keyframe with a stop action on the first.

I am wondering if there is a magic way to drag say 300 audio files  
from the
library and for flash (Flash CS3) to automatically create 300  
layers, one

layer for each audio file?

Thanks in advance

Paul

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders