[flexcoders] Change Flex Editor Font Size

2008-02-17 Thread Shaq
Does anyone know how to change the Flex editors font size.  When I'm
looking at the code I would like the font to be a little smaller so I
can get more code on the screen.

Any ideas?



[flexcoders] Access of undefined property flash.media.sound

2008-07-14 Thread Shaq
The code below is pulled from the Flex 3 manual but I am unable to get
it to compile correctly using Flex 3.  Can anyone provide any insight
as to why the code below raises the following errors:
1120: Access of undefined property onSoundLoaded.
1120: Access of undefined property req.
1120: Access of undefined property s.

Any help would be greatly appreciated.


http://www.adobe.com/2006/mxml";
layout="vertical">







[flexcoders] SoundMixer.computeSpectrum

2008-07-16 Thread Shaq
Say I have two soundchannel objects each playing different
music/files.  Is there a way to call computeSpectrum on each channel
instead of a global computeSpectrum?

I would like to display the spectrum for both channels in two
different graphs.

Any suggestions would be appreciated.

-Shaq



[flexcoders] Re: SoundMixer.computeSpectrum

2008-07-21 Thread Shaq
Have no one else ran into this problem?

-Shaq

--- In flexcoders@yahoogroups.com, "Shaq" <[EMAIL PROTECTED]> wrote:
>
> Say I have two soundchannel objects each playing different
> music/files.  Is there a way to call computeSpectrum on each channel
> instead of a global computeSpectrum?
> 
> I would like to display the spectrum for both channels in two
> different graphs.
> 
> Any suggestions would be appreciated.
> 
> -Shaq
>




[flexcoders] MovieClip Effects

2008-07-24 Thread Shaq
Does the movieclip object have any type of effect methods available
(mousedowneffect etc.)?

I would like the whole movieclip object to fade out and disappear.  Is
this possible?



[flexcoders] Flex 3 MovieClip Move Effect

2008-07-28 Thread Shaq
I have a movie clip wrapped in UIComponent. What I would like to do is
move the move from one side of the form to the other using the Move
effect.

I can't seem to get this working.  Some code excerpts are below.  Any
help would be greatly appreciated.

bpMovie = new MovieClip();
bpUic = new UIComponent();
bpUic.addChild(bpMovie);

private function applyPhaseCancellation():void
{
moveBpMovie.end();
moveBpMovie.yTo = noiseUic.y;
moveBpMovie.play();

//bpMovie.y = noiseMovie.y;
}






[flexcoders] Re: Flex 3 MovieClip Move Effect

2008-07-29 Thread Shaq
i have solved this problem by adding effects to the UIComponent
(bPUic).  This works great.

--- In flexcoders@yahoogroups.com, "Shaq" <[EMAIL PROTECTED]> wrote:
>
> I have a movie clip wrapped in UIComponent. What I would like to do is
> move the move from one side of the form to the other using the Move
> effect.
> 
> I can't seem to get this working.  Some code excerpts are below.  Any
> help would be greatly appreciated.
> 
> bpMovie = new MovieClip();
> bpUic = new UIComponent();
> bpUic.addChild(bpMovie);
> 
> private function applyPhaseCancellation():void
> {
>   moveBpMovie.end();
>   moveBpMovie.yTo = noiseUic.y;
>   moveBpMovie.play();
> 
>   //bpMovie.y = noiseMovie.y;
> }
>   
> 
> 
>




[flexcoders] Save Flex Projects

2008-08-11 Thread Shaq
Is there a way to save Flex projects?  When the project is deleted
from the Flex Navigator menu it seems as though you have to create a
new Flex project to work with a previous project.

Is there a way to save the whole project like VS .sln or Delphi .dpr?

Thanks in advance.