[Flashcoders] JOB: drag and drop product designer app

2007-01-04 Thread Alan Watts

hi all,

Mikons.com is looking for a freelance actionscript developer to  
create a wysiwyg product customizer using the images you create on  
the site.  The app will be heavy on xml exchange and bitmap  
transformation, so AS3 is welcomed (actually preferred).  The  
functionality and interface are complete, so if you're interested,  
send me an email with links to your work and what-not and we can  
discuss the details.


thanks!
Alan


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] AS3 writing ByteArray hexadecimal data to a file (using Zinc)

2007-01-04 Thread Sascha
Hi,

 

I'm trying to encode binary data to hexadecimal values and then writing them
to a file using mdm.FileSystem.saveFileHEX(). I could also use the pipe
delimiter method but while it works correctly, it is very slow on larger
files.

So here is my problem: The binary data gets encoded to a hexadecimal values
string from a ByteArray like this:

 

   var data:String = "";

   var byte:int;

   while (true)

   {

  try

  {

 byte = byteArray.readUnsignedByte();

 data += byte.toString(16).toUpperCase();

  }

  catch (e:EOFError)

  {

 break;

  }

   }

 

But the file ends up always having a few bytes less then the original and
some bytes order is messed up. For example a 25,159 bytes file is only
24,209 bytes large after this and if doing a trace of the original byteArray
and the string data / 2, the values aren't equal .

 

   trace(byteArray.length); // 25159

   trace(data.length / 2); // 24208.5

 

Obviously something is wrong with the way how I convert to hex data but I
don't know what. Can somebody with more byteArray experience give me hint
how to get this working?

 

Cheers,

Sascha

 

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] Exported symbols scope and lifetime

2007-01-04 Thread strk
How long does an exported simbol last, and from where is it usable ?

Case:

   - let movie A export symbol "symA"
   - let movie B export symbol "symB"
   - let movie A *load* movie B

   Q1: can ActionScript in movie A attachMovie("symB") ?
   Q2: can ActionScript in movie B attachMovie("symA") ?

Further case:

   - movie A *unloads* movie B

   Q3: can ActionScript in movie A still attachMovie("symB") ?
   (of course if it couldn't before no need to answer this)

Finally:

   Q4: do rules for attachMovie() apply for registerClass() ?

I'm asking this questions to properly implement registerClass()
in the GNU Flash Player (http://www.gnu.org/software/gnash).
Flash coders help is highly welcome for providing advices and testcases,
in case you're interested in helping out.

Thanks in advance

--strk;

 /"\ASCII Ribbon Campaign
 \ /Respect for low technology.
  X Keep e-mail messages readable by any computer system.
 / \Keep it ASCII. 

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] JOB:Flash Developer Needed IN NYC

2007-01-04 Thread
MTV Networks, Media Technologies department is looking for a talented and 
enthusiastic individual who is interested in developing front-end UIs using 
Flash/Flex and AJAX on a project to project, freelance basis. These highly 
branded and meticulously designed web applications range in usage from 
production workflow infrastructure to external B2B sites which distribute and 
showcase the award winning content of MTV, VH1, Nickelodeon, TVLand, SpikeTV 
and Comedy Central to name a few. This exciting position will bring the 
candidate into our cool and layed-back atmosphere where we strive to deliver 
the hippest design and cutting-edge technology!

Qualified candidate should have a fundamental understanding of design and the 
creative workflow process to interpret our branded UIs for web integration, 
ensuring visual/graphic integrity. Web graphics production experience a must.

Required:
• Expert knowledge of Flash (Flex a plus)
• Expert knowledge of ActionScript  2.0 (Object Oriented ActionScript 
experience a Plus)
• Strong experience passing parameters via webservices or Flash Remoting 
• Good experience working with PhotoShop, Illustrator and QuickTime.

Plus, but not required:
• Good knowledge working with AJAX
• Good knowledge developing custom SharePoint WebParts (C#)
• Good knowledge with .NET framework
• Apple Dashboard Widget development

To apply: Send a cover letter in the body of an e-mail and attach your resume 
in MS Word or Adobe PDF format (no ZIP files please). If possible, please 
provide links to examples of work with a brief description. Hourly freelance 
rate must be included for consideration.

Job location is Manhattan 
Please Email me off list [EMAIL PROTECTED] 
Thanks. 
…russ 



___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] Switching sound between boxes and headphones

2007-01-04 Thread Steven Sacks | BLITZ
You can't do that with Flash.  In fact, the only types of applications I know 
that support that are professional audio suites like Cubase, Logic, and 
ProTools and even then you have to spend time configuring them.
 



From: [EMAIL PROTECTED] on behalf of Dennis - I Sioux
Sent: Thu 1/4/2007 12:36 AM
To: Flashcoders mailing list
Subject: Fw: [Flashcoders] Switching sound between boxes and headphones



Hey,

I need to be able to switch sound between boxes(minijack) and
headphones(usb) within flash (or 3th party).. mutch like you can switch your
mic/cam source.
Has anyone got a suggestion?

Many thanks,


Dennis


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com  
http://training.figleaf.com  


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

[Flashcoders] Shared library load time

2007-01-04 Thread Danny Kodicek
On the subject of shared library items: I'm currently sharing a large
movieclip through a library (in a number of Flash movies that are in turn
loaded into Director). Unfortunately, the Flash movies are taking a long
time to initialise in Director (a very noticeable lag when several movies
are running at the same time). Anyone know of anything I can do to reduce
this wait time? I was kind of hoping that the files would load as quickly as
if the files were in the movie's own library.

Danny

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] Flash 9 / ActionScript 3.0 Mailing-List

2007-01-04 Thread Troy Rollins


On Jan 3, 2007, at 2:27 PM, Steven Sacks | BLITZ wrote:


Also, a sizeable chunk of the people on Flexcoders are not people who
came over from Flash, they're people who have no Flash experience,  
like

Java, PHP, and Python programmers, so there are a lot of "novice"
questions on topics regarding idiosyncracies of Flash mixed in with  
the

MXML questions and idiosyncracies of Flex.


Not to mention the fact that it is also a yahoo group, rather than a  
listserve, and every message is full of extra yahoo crap.


--
Troy
RPSystems, Ltd.
http://www.rpsystems.net


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] createTextField and embedding fonts

2007-01-04 Thread orangeflower
I think you might be right here Arindam. Perhaps in the receiving file I 
merely need to do an import for runtime sharing instead of exporting it in 
the shared fonts swf. The documentation has always been a little spotty in 
terms of what's actually going on when using shared libraries... Thanks for 
the response!


- Original Message -
From: "Arindam Dhar" <[EMAIL PROTECTED]>
To: "Flashcoders mailing list" 
Sent: Wednesday, January 03, 2007 4:43 AM
Subject: Re: [Flashcoders] createTextField and embedding fonts


hi Thomas,

 going by the steps u mentioned earlier, if I change a property,say Font, 
in the SharedFonts.fla and save and publish, later if i publish the fla 
which imports the shared font, i don't see the change in font done in the 
SharedFonts.fla.


 >7. Once the font symbol from SharedFonts.fla is in your other .fla's 
library
right click on it (in your other .fla's library) and go to properties. 
Check

the "Export for ActionScript", "Export for runtime sharing" and "Export in
first frame" checkboxes. Supply the location to SharedFonts.swf (e.g.
SharedFonts.swf or somepath/SharedFonts.swf) in the URL field below the
checkboxes.

 the receiving file, in shared library concept, usually "imports for 
runtime sharing" the object from the URL specified, but in the above line 
there is no import happening, in fact, both the SharedFonts.fla and 
receiving file are "exporting for runtime sharing".


 The idea behind shared libraries is "change in one place and it will get 
updated everywhere", but its not working here...


 Hope, I will get some clarification on this

 --- Arindam



[EMAIL PROTECTED] wrote:
 So, to recap...

1. Create a SharedFonts.fla that will contain the font symbol you want to
use in another movie.
2. Create the font symbol in SharedFonts.fla. Once the font symbol is
created make sure to check the "Export for ActionScript", "Export in first
frame" checkboxes in the Properties dialog box.
3. Publish the .swf for the SharedFonts.fla.
4. Open the .fla in which you want to use the font symbol from
SharedFonts.swf.
5. Then, go to File -> Import -> Open shared library... and open
SharedFonts.fla
6. Drag the font symbol from the SharedFonts.fla library into your other
fla's library that will be using the font.
7. Once the font symbol from SharedFonts.fla is in your other .fla's 
library
right click on it (in your other .fla's library) and go to properties. 
Check

the "Export for ActionScript", "Export for runtime sharing" and "Export in
first frame" checkboxes. Supply the location to SharedFonts.swf (e.g.
SharedFonts.swf or somepath/SharedFonts.swf) in the URL field below the
checkboxes.
8. Publish your other .fla and you should be good to go.

One thing to be mindful of is the path to your SharedFonts.swf. This MUST 
be

correct in order for these shared fonts to work. To simplify things I just
placed the SharedFonts.swf in the same directory as my other .swf.

I hope this helps someone

Cheers,

Thomas

- Original Message -
From: "Glen Pike"

To: "Flashcoders mailing list"
Sent: Tuesday, January 02, 2007 2:59 PM
Subject: Re: [Flashcoders] createTextField and embedding fonts


Hi,

Yes, you will probably need to use "runtime sharing" and load in the
fonts contained in a different file.

Glen



The question I have is it possible to apply a TextFormat to a TextField
using an embedded font that is NOT
in the container swf's library? If not then that is my problem and I
think I can use shared libraries to counter
this behavior. Either way, I was wondering if someone could clarify some
of this for me.


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Send instant messages to your online friends 
http://asia.messenger.yahoo.com

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training

Re: [Flashcoders] OT: Adobe download site slow

2007-01-04 Thread nelson ramirez

lol it's almost as if they started using GoLive to make their site
updates. gg Adobe

On 1/4/07, dave matthews <[EMAIL PROTECTED]> wrote:

Adobe's site system is a complete embarrassment.

  Check your browser cache to see the boat load of garbage they load with
every page.

  If we did that to our clients they would dump us fast!

  We should have a contest to demonstrate how they should fix that mess.

Dave_Matthews

--
Message: 7
Date: Wed, 03 Jan 2007 11:32:19 +
From: Joe Cutting <[EMAIL PROTECTED]>
Subject: [Flashcoders] OT: Adobe download site slow

Has anyone else noticed that the Adobe download site being very slow?
I've tried it several times in the last week from two different
locations (in the UK)
and it never really gets above 5k/sec (on my 500k/sec line). This is
a particular
problem with clients using IE who are trying to install the Flash
Player. All they see
is a empty box with no indication that the download is happening at
all. Firefox is
no faster but at least you see the download progress so you know
something is happening.

I'm fairly sure Adobe is aware of this as well as the effect on their
reputation as a "web company"
and is working on a fix but its a bit embarrassing to have to tell
clients "normally its really fast but
right now you need to wait half a hour".

Apart from that Happy New Year to you all...

Joe

Joe Cutting
Computer exhibits and installations
www.joecutting.com
The Fishergate Centre, 4 Fishergate, York, YO10 4FB
01904 624681

-

Message: 14
Date: Wed, 3 Jan 2007 15:53:24 +0100
From: " Z?rate " <[EMAIL PROTECTED]>
Subject: Re: [Flashcoders] OT: Adobe download site slow
To: "Flashcoders mailing list"
Past month? I think it's been problem for a long time . The LiveDocs,
the search engine, downloads

It'd be great if they can update/improve/fix/whatever to make the
overall site much faster.
Cheers,
Juan
--
Message: 19
Date: Wed, 3 Jan 2007 14:09:47 -0200
From: "Marcelo de Moraes Serpa" <[EMAIL PROTECTED]>
Subject: Re: [Flashcoders] OT: Adobe download site slow

Yep.. I too find the overall speed to be very slow since macromedia times...
:/

_
Fixing up the home? Live Search can help
http://imagine-windowslive.com/search/kits/default.aspx?kit=improve&locale=en-US&source=hmemailtaglinenov06&FORM=WLMTAG

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] OT: Adobe download site slow

2007-01-04 Thread dave matthews

Adobe's site system is a complete embarrassment.

 Check your browser cache to see the boat load of garbage they load with 
every page.


 If we did that to our clients they would dump us fast!

 We should have a contest to demonstrate how they should fix that mess.

Dave_Matthews

--
Message: 7
Date: Wed, 03 Jan 2007 11:32:19 +
From: Joe Cutting <[EMAIL PROTECTED]>
Subject: [Flashcoders] OT: Adobe download site slow

Has anyone else noticed that the Adobe download site being very slow?
I've tried it several times in the last week from two different
locations (in the UK)
and it never really gets above 5k/sec (on my 500k/sec line). This is
a particular
problem with clients using IE who are trying to install the Flash
Player. All they see
is a empty box with no indication that the download is happening at
all. Firefox is
no faster but at least you see the download progress so you know
something is happening.

I'm fairly sure Adobe is aware of this as well as the effect on their
reputation as a "web company"
and is working on a fix but its a bit embarrassing to have to tell
clients "normally its really fast but
right now you need to wait half a hour".

Apart from that Happy New Year to you all...

Joe

Joe Cutting
Computer exhibits and installations
www.joecutting.com
The Fishergate Centre, 4 Fishergate, York, YO10 4FB
01904 624681

-

Message: 14
Date: Wed, 3 Jan 2007 15:53:24 +0100
From: " Z?rate " <[EMAIL PROTECTED]>
Subject: Re: [Flashcoders] OT: Adobe download site slow
To: "Flashcoders mailing list"
Past month? I think it's been problem for a long time . The LiveDocs,
the search engine, downloads

It'd be great if they can update/improve/fix/whatever to make the
overall site much faster.
Cheers,
Juan
--
Message: 19
Date: Wed, 3 Jan 2007 14:09:47 -0200
From: "Marcelo de Moraes Serpa" <[EMAIL PROTECTED]>
Subject: Re: [Flashcoders] OT: Adobe download site slow

Yep.. I too find the overall speed to be very slow since macromedia times...
:/

_
Fixing up the home? Live Search can help 
http://imagine-windowslive.com/search/kits/default.aspx?kit=improve&locale=en-US&source=hmemailtaglinenov06&FORM=WLMTAG


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] getters and setters and the "with" statement

2007-01-04 Thread Kalani Bright
Found this regarding with and MTASC
http://www.flashdevelop.org/community/viewtopic.php?p=4283

Like I said, at least to me..with is pretty useless.  You can't refer to
other variables or objects with "with" inside the withstatement so a = b is
not possible if a and b aren't already part of the "with" object, can't be
another object.  Code with with is confusing. Even common sentences are
confusing with with :)  Its better to write it out or copy/paste.  If its a
long namespace or objects within other objects just store it by reference to
a short variable name and access it throught the variable.

Kalani


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Marcelo de
Moraes Serpa
Sent: Wednesday, January 03, 2007 5:18 AM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] getters and setters and the "with" statement

Does MTASC support the with statement...? I'm not sure but I guess the last
time I tried to compile an AS2 class with "with" statements, MTASC didn't
like it at all... of course, it doesn't mean I like it less... MMC is awful
:)

On 1/3/07, Kalani Bright <[EMAIL PROTECTED]> wrote:
>
>
> Hi chris,
>
> with is used so you don't have to constantly refer to a object 
> hierarchy or object when you are changing many properties or running 
> many methods.
>
> var myObject:CustomObjectType = new CustomObjectType(); //say that 
> custom object has a property named duration and two methods start and 
> ping.
>
> with(myObject)
> {
> duration = 5.5;
> start();
> ping("test.com");
> }
>
> its just so you dont have to do myObject.duration = 5.5 etc...
>
> I've never used with.  It's one of the most useless constructs.
>
> Kalani
>
>
>
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On Behalf Of Chris 
> Velevitch
> Sent: Tuesday, January 02, 2007 11:21 PM
> To: Flashcoders mailing list
> Subject: [Flashcoders] getters and setters and the "with" statement
>
> Is the "with" statement purpose to work with getters and setters (in AS2)?
> If it is, has this issue been raised with Adobe?
>
>
> Chris
> --
> Chris Velevitch
> Manager - Sydney Flash Platform Developers Group
> m: 0415 469 095
> www.flashdev.org.au
> ___
> Flashcoders@chattyfig.figleaf.com
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
> Brought to you by Fig Leaf Software
> Premier Authorized Adobe Consulting and Training 
> http://www.figleaf.com http://training.figleaf.com
>
>
> ___
> Flashcoders@chattyfig.figleaf.com
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
> Brought to you by Fig Leaf Software
> Premier Authorized Adobe Consulting and Training 
> http://www.figleaf.com http://training.figleaf.com
>
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training http://www.figleaf.com
http://training.figleaf.com


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] pflash 8 file upload security issue

2007-01-04 Thread wouter steidl

Hi List,

I have the following issuewhen I upload files in flash with the
filereference class the header always sends a "application/octet-stream" as
the cointent typeSo if someone uploads an exe file renamed as a doc I
have a problem!

Anybody knows a way to fix this?

thanx!

Wouter
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] html text in two columns

2007-01-04 Thread natalia Vikhtinskaya

I found more complex
content.htmlText='block1 block2
headerblock2
long  text'

It works but not sure I understand why.

2007/1/4, Sajid Saiyed <[EMAIL PROTECTED]>:


Or else, try this:
content.html=true;

content.wordWrap=true;

content.multiline=true;

content.autoSize="left";

content.condenseWhite=true;

content.htmlText='block1 block2
headerblock2 long  text'

You had to add a Tab before block2 long text.

Regards
Sajid

On 1/4/07, Sajid Saiyed <[EMAIL PROTECTED]> wrote:
> Hi,
> Here is a hack or a workaround to achieve it:
> http://www.ssdesigninteractive.com/ssdesign/?p=91
>
> Regards
> Sajid
>
> On 1/4/07, natalia Vikhtinskaya <[EMAIL PROTECTED]> wrote:
> > Hi to all
> >
> > Is it possible to show html text in columns if text has more than one
line?
> >
> > content.html=true;
> >
> > content.wordWrap=true;
> >
> > content.multiline=true;
> >
> > content.autoSize="left";
> >
> > content.condenseWhite=true;
> >
> > content.htmlText='block1 block2
header
> > block2 long  text'
> >
> > with this example block2 header has indent but block 2 text does not
have
> > it.
> >
> > Thank you for any help.
> > ___
> > Flashcoders@chattyfig.figleaf.com
> > To change your subscription options or search the archive:
> > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> >
> > Brought to you by Fig Leaf Software
> > Premier Authorized Adobe Consulting and Training
> > http://www.figleaf.com
> > http://training.figleaf.com
> >
>
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Fw: [Flashcoders] Switching sound between boxes and headphones

2007-01-04 Thread Dennis - I Sioux

Hey,

I need to be able to switch sound between boxes(minijack) and 
headphones(usb) within flash (or 3th party).. mutch like you can switch your 
mic/cam source.

Has anyone got a suggestion?

Many thanks,


Dennis 



___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com