Re: [Flashcoders] Mute Flash Application, mac.

2006-09-24 Thread aaron smith

sweet, i will give them a try.. i'll let you know.. thanks.

On 9/24/06, Stephen Downs [EMAIL PROTECTED] wrote:


Two utilities that come to mind for audio routing on Mac OS X are
Soundflower ( http://www.cycling74.com/downloads/soundflower ) and
Audio Hijack ( http://www.rogueamoeba.com/audiohijack/ ). It's been a
while since I've played about with either. It appears from the
screenshot of Audio Hijack that it can mute audio.



On 2006-09-22, at 11:48 AM, aaron smith wrote:

 flash sounds get annoying after so long, so i just want to be able
 to shut
 off the browser sounds, without having to disable my entire audio.

 On 9/22/06, aaron smith [EMAIL PROTECTED] wrote:

 no, like how can I mute just the sound that is in the browser. Say
 i want
 music playing but no sounds out of the browser.. keep in mind i'm not
 creating the flash site, so I can't jsut add this in to the site,
 it would
 be for muting the browser sound in general..






 On 9/22/06, John Dowdell [EMAIL PROTECTED] wrote:
 
  aaron smith wrote:
   Does anyone know of an application that can mute flash or
 browsers for
  a
   mac?
 
  I generally push the sound mute button on the keyboard.
 
  Maybe you meant How can my content programmatically control each
  audience member's sound system?, for which I don't have an answer,
  other than not using sound in your SWF, or offering an on-screen
 button
  for volume control, etc.
 
  jd
 
 
 
 
  --
  John Dowdell . Adobe Developer Support . San Francisco CA USA
  Weblog: http://weblogs.macromedia.com/jd
  Aggregator: http://weblogs.macromedia.com/mxna
  Technotes: http://www.macromedia.com/support/
  Spam killed my private email -- public record is best, thanks.
  ___
  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


Re: [Flashcoders] Mute Flash Application, mac.

2006-09-24 Thread GregoryN
Hello aaron,

Have you tried:
tell application Your Browser to set volume with output muted
OR
tell application Your Browser to set volume 0

http://nslog.com/archives/2005/06/26/no_applescript_mute.php


Or am I missing something?


-- 
Best regards,
 GregoryN

http://GOusable.com
Flash components development.
Usability services.

___
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] Mute Flash Application, mac.

2006-09-24 Thread aaron smith

havn't tried it.. i'll give it a shot


On 9/24/06, GregoryN [EMAIL PROTECTED] wrote:


Hello aaron,

Have you tried:
tell application Your Browser to set volume with output muted
OR
tell application Your Browser to set volume 0

http://nslog.com/archives/2005/06/26/no_applescript_mute.php


Or am I missing something?


--
Best regards,
GregoryN

http://GOusable.com
Flash components development.
Usability services.

___
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


Re: [Flashcoders] Tweening ColorTransform objects? [Solved]

2006-09-24 Thread aaron smith

you should look into fuse man, easy color tranforms.. not all that code..
but it's cool you got it figured out..

http://mosessupposes.com/Fuse/index.html




On 9/23/06, Dan Rogers [EMAIL PROTECTED] wrote:


Thank you for the replies.

My issue was due to the fact that I was overlooking the rgb
property (doh), and inadvertently tweening it along with the other
properties.  Below is the functional code which uses MultiTween and
mx.transitions.Tween to tween a few ColorTransform objects.

-Danro


FLA Example:
http://download.danro.net/flashcoders/ColorTrans_Tween.zip

Code:
import com.gskinner.transitions.MultiTween;
import flash.geom.Transform;
import flash.geom.ColorTransform;
import mx.transitions.easing.*;
import mx.transitions.Tween;
import mx.utils.Delegate;

// color transform objects
var originColor:ColorTransform = new ColorTransform();
var currentColor:ColorTransform = new ColorTransform();
var rollOverColor:ColorTransform = new ColorTransform();
var rollOutColor:ColorTransform = new ColorTransform();
rollOverColor.rgb = 0xFFCC00;
rollOutColor.rgb = 0x0066CC;

// movieclip transform
var trans:Transform = new Transform(test_mc);

// update color function
function updateColor () { trans.colorTransform = currentColor; }

// tween vars
var colorTween:Tween;
var mTween:MultiTween;
var mTweenProps = [alphaMultiplier, alphaOffset,
blueMultiplier, blueOffset, greenMultiplier, greenOffset,
redMultiplier, redOffset];

// rollover tween
function buttonRollOver () {
mTween = new MultiTween(currentColor, rollOverColor, mTweenProps);
colorTween.stop();
colorTween = new Tween(mTween, position, Regular.easeOut, 0, 1,
20);
colorTween.onMotionChanged = Delegate.create(this, updateColor);
}

// rollout tween
function buttonRollOut () {
mTween = new MultiTween(currentColor, rollOutColor, mTweenProps);
colorTween.stop();
colorTween = new Tween(mTween, position, Regular.easeInOut, 0,
1,
20);
colorTween.onMotionChanged = Delegate.create(this, updateColor);
colorTween.onMotionFinished = Delegate.create(this, reset);
}

// reset color to original
function reset () {
mTween = new MultiTween(currentColor, originColor, mTweenProps);
colorTween.stop();
colorTween = new Tween(mTween, position, Regular.easeInOut, 0,
1,
30);
colorTween.onMotionChanged = Delegate.create(this, updateColor);
}

// button events
test_mc.onRollOut = Delegate.create(this, buttonRollOut);
test_mc.onRollOver = Delegate.create(this, buttonRollOver);



___
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] How to hide my flash communication server address

2006-09-24 Thread mudit tuli
I have a flash communication server on which i have my flv files and when 
streaming the videos on my website that is hosted on a LAMP server, i ve to 
provided the address of my flash communicaton server\RMTP server to stream the 
videos, and if the user looks at  the source of my webpage he can easily get 
the address of my RMTP server can I somehow hide or encrypt the address of my 
RMTP server, is that possible??

Mudit


-
Talk is cheap. Use Yahoo! Messenger to make PC-to-Phone calls.  Great rates 
starting at 1ยข/min.
___
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] Code review, please

2006-09-24 Thread Anggie Bratadinata

Folks,

I hope it's okay for a noob like me to ask for a code review here. If
not, sorry for the noise.

This is the simple app I created a few days ago, about which I'd like to
have your expert advice on how to improve it or maybe how to code it in
a much better way.

http://www.masputih.com/files/flash/undoredo2/undo_redo2.swf
http://www.masputih.com/files/flash/undoredo2/undo_redo2.zip

I know it looks like a piece of junk to most of you but, hey, that's why
I need your advice. :-)


Thanks in advance,
___
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] Mute Flash Application, mac.

2006-09-24 Thread aaron smith

no doesn't work. damn.



On 9/24/06, aaron smith [EMAIL PROTECTED] wrote:


havn't tried it.. i'll give it a shot


On 9/24/06, GregoryN [EMAIL PROTECTED] wrote:

 Hello aaron,

 Have you tried:
 tell application Your Browser to set volume with output muted
 OR
 tell application Your Browser to set volume 0

 http://nslog.com/archives/2005/06/26/no_applescript_mute.php


 Or am I missing something?


 --
 Best regards,
 GregoryN
 
 http://GOusable.com
 Flash components development.
 Usability services.

 ___
 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


Re: [Flashcoders] Code review, please

2006-09-24 Thread Per Bolmstedt


Anggie Bratadinata wrote:


This is the simple app I created a few days ago, about which I'd like to
have your expert advice on how to improve it or maybe how to code it in
a much better way.


1. Comment your code! It looks structured enough, so adding comments should be 
easy. If you use FDT, using Javadoc is straightforward: 
http://java.sun.com/j2se/javadoc/writingdoccomments/


2. Are you using the MVC pattern? It's not really clear from the code, but it 
looks somewhat like it. If you aren't you should; if you are, maybe you could 
make it more clear, by changing class names, adding an interface or two, or 
adding comments.


3. What's hl.as? It's an ill chosen file/class name.

-- Per
___
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] Datagrid and Image

2006-09-24 Thread Laurent CUCHET
Im searching for datagrid exemples with images

Have you got links ??

Thanks 
Laurent
___
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] Datagrid and Image

2006-09-24 Thread eka

Hello :)

you can find examples to use Datagrid in this web site :
http://philflash.inway.fr/index.html

the tutorials are in french but you can understand the method to create a
custom CellRenderer, example :
http://philflash.inway.fr/dghtmlrd/dghtmlrd.html

EKA+ :)

2006/9/24, Laurent CUCHET [EMAIL PROTECTED]:


Im searching for datagrid exemples with images

Have you got links ??

Thanks
Laurent
___
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


Re: [Flashcoders] Video chat

2006-09-24 Thread greg h

Mike,

I believe a server is required for video chat with Flash.  Either Flash
Media Server or Red5.

The sample apps for Flash Media Server include a Video Conference app,
which is essentially video chat.  You can download the sample apps here:
http://www.adobe.com/devnet/flashmediaserver/sample_apps.html

Most books on Flash Media Server (and it's predecessor Flash Communications
Server) include examples.

For example, Chapter 14 of the book Macromedia MX: Building Rich Internet
Applications by Robert Reinhardt and Simon Allardice details Creating a
Video Instant Messenger and the included CD has all the code.  Used copies
are inexpensive at Amazon.
http://www.amazon.com/Macromedia-MX-Building-Internet-Applications/dp/0321158814/

There are also prebuilt components you can buy, and even hosted Flash video
chat services that you can add to your site.

If details on any of these other options would be helpful, please post back
on this thread regarding what you would like more details on.

hth,

g



On 9/23/06, Batista Mihai [EMAIL PROTECTED] wrote:


Hello! Where can I find a tutorial about how to make a video chat using
Flash?
Thank you very much! Mike


___
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] Code ceases working after months, PC only

2006-09-24 Thread Chris Kemmett

Hi,

We have a project that is running on Mac and PC, swf's that are  
loaded into a Director player. They were published November/December  
2005 in Flash MX. All Director Xtras are packaged and installed with  
the project, as are four libraries necessary to create a fast start  
projector.


The swf's tally some results in an object, which is passed to a  
method that creates a string. The break is in the method, where I do  
a split and check the result (tmpvar == TM). The project was  
professionally QA'd, as well as inhouse, and by our client. We also  
have a good store of data from the time the project was launched  
until late July that shows the work has been functioning without a  
hitch.


We received reports that the swf's stopped successfully reporting  
late July/early August, only on some PC's, and only PCs running WinXP  
(not all, either). Has anyone else had a project that has  
inexplicably gone awry in the last month or two? I am able to  
replicate the problem only through the Director authoring environment  
(the project runs fine here on XP, of course), but as soon as I  
republish one of the offending swf's, the issue is resolved.


Does anyone have any suggestions on what could be causing such an  
issue? We are facing having to reburn a GM and redistribute new CD's,  
a quite expensive exercise.


Cheers,
ck
___
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] Code ceases working after months, PC only

2006-09-24 Thread l u c h y x

Did you check the sandbox-security publish settings?
Or the local access settings ?  right click on SWF, then Settings-
Advanded.
http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager04.html
You can add trusted paths with this app.



On 9/24/06, Chris Kemmett [EMAIL PROTECTED] wrote:


Hi,

We have a project that is running on Mac and PC, swf's that are
loaded into a Director player. They were published November/December
2005 in Flash MX. All Director Xtras are packaged and installed with
the project, as are four libraries necessary to create a fast start
projector.

The swf's tally some results in an object, which is passed to a
method that creates a string. The break is in the method, where I do
a split and check the result (tmpvar == TM). The project was
professionally QA'd, as well as inhouse, and by our client. We also
have a good store of data from the time the project was launched
until late July that shows the work has been functioning without a
hitch.

We received reports that the swf's stopped successfully reporting
late July/early August, only on some PC's, and only PCs running WinXP
(not all, either). Has anyone else had a project that has
inexplicably gone awry in the last month or two? I am able to
replicate the problem only through the Director authoring environment
(the project runs fine here on XP, of course), but as soon as I
republish one of the offending swf's, the issue is resolved.

Does anyone have any suggestions on what could be causing such an
issue? We are facing having to reburn a GM and redistribute new CD's,
a quite expensive exercise.

Cheers,
ck
___
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





--
l   u   c   h   y   x
r i a e v o l u t i o n (r)
[EMAIL PROTECTED]
http://www.riaevolution.com
Phone: +54 (11) 4931-7006
___
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] Code ceases working after months, PC only

2006-09-24 Thread Chris Kemmett
I'm not sure this is a security issue: The code fails when the Flash  
method prepares a string, before Director tries to grab the results.  
Also, the swf files are displayed via a Director player, which uses  
the Director Flash Asset Xtra; the right click and security settings  
don't seem to be available when the swf's are played this way.




On 25/09/2006, at 9:08 AM, l u c h y x wrote:


Did you check the sandbox-security publish settings?
Or the local access settings ?  right click on SWF, then Settings-
Advanded.
http://www.macromedia.com/support/documentation/en/flashplayer/help/ 
settings_manager04.html

You can add trusted paths with this app.



On 9/24/06, Chris Kemmett [EMAIL PROTECTED] wrote:


Hi,

We have a project that is running on Mac and PC, swf's that are
loaded into a Director player. They were published November/December
2005 in Flash MX. All Director Xtras are packaged and installed with
the project, as are four libraries necessary to create a fast start
projector.

The swf's tally some results in an object, which is passed to a
method that creates a string. The break is in the method, where I do
a split and check the result (tmpvar == TM). The project was
professionally QA'd, as well as inhouse, and by our client. We also
have a good store of data from the time the project was launched
until late July that shows the work has been functioning without a
hitch.

We received reports that the swf's stopped successfully reporting
late July/early August, only on some PC's, and only PCs running WinXP
(not all, either). Has anyone else had a project that has
inexplicably gone awry in the last month or two? I am able to
replicate the problem only through the Director authoring environment
(the project runs fine here on XP, of course), but as soon as I
republish one of the offending swf's, the issue is resolved.

Does anyone have any suggestions on what could be causing such an
issue? We are facing having to reburn a GM and redistribute new CD's,
a quite expensive exercise.

Cheers,
ck
___
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





--
l   u   c   h   y   x
r i a e v o l u t i o n (r)
[EMAIL PROTECTED]
http://www.riaevolution.com
Phone: +54 (11) 4931-7006
___
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] Tree Component - strange behaviour with styles

2006-09-24 Thread Glen Pike

Hi,

   I have customised a Tree component to use as a menu with the help of 
Sephiroth's Tutorial http://www.sephiroth.it/tutorials/flashPHP/custom_tree/


   This is part of a website I am working on here: 
http://glenpike.co.uk/mpad/


   Now I have used Guy Watson's 1k preloader and tweaked it to load the 
above site up inside a shell swf.  Problem is, when I click on the tree 
menu links, the entire Tree is surrounded by a red border, which I do 
not want.  (I do want the red theme and have done this 
_global.style.setStyle(themeColor, 0xFF); ) 

   See the problem happening on this URL:
http://glenpike.co.uk/mpad/loader.html


   In my tree, I have set a borderStyle to none, but I don't think 
this is a valid setting - I tried solid too but with no luck. 
  
   What is bizarre is that it is only showing up when the site is 
loaded inside the preloader shell swf.


   Any clues?

   Thanks

   Glen

  
___

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] How to hide my flash communication server address

2006-09-24 Thread greg h

Mudit,

Why is the RTMP server address in your HTML?  Can you post back the relevant
portion of your HTML object or embed tags (masking your RTMP address, of
course :-)

If you RTMP address is not likely to change, could you embed the RTMP
address in your SWF?  Or if it might change you could load it via XML?  Or
retrieve it via a web service or remoting call?  Or leave it in your HTML
chopped into multiple vars that your SWF contains logic to reassemble, but
will leave it less obvious in the HTML.

You might also try posting this question on
http://www.flashcomguru.com/flashmedialist/

hth,

g

On 9/24/06, mudit tuli [EMAIL PROTECTED] wrote:


I have a flash communication server on which i have my flv files and when
streaming the videos on my website that is hosted on a LAMP server, i ve to
provided the address of my flash communicaton server\RMTP server to stream
the videos, and if the user looks at  the source of my webpage he can easily
get the address of my RMTP server can I somehow hide or encrypt the address
of my RMTP server, is that possible??

Mudit


___
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] Q:AddProperty and getters/setters

2006-09-24 Thread bitstreams
I know AddProperty was useful in creating getter/setters when defining AS1 
based classes

ie
//CODE BEGIN
//create a new square class
_global.Square= function(side){
this.side=side

this.addProperty(area,this.getArea,this.setArea);
}


Square.prototype.setArea=function(area){
this.side=math.sqrt(area);
}

Square.prototype.getArea=function(){
return Math.pow(this.side,2);
}

//CODE END

Is this same AddProperty technique useful with AS2 classes?



[e] jbach at bitstream.ca
[c] 416.668.0034
[w] www.bitstream.ca

...all improvisation is life in search of a style.
 - Bruce Mau,'LifeStyle'
___
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] Flash 9 AS3 Class Export Frame?

2006-09-24 Thread Sascha
Hi,

how do I go about exporting classes to a different frame than frame 1 in
Flash 9 Public Alpha? As exporting them to frame 1 is bad for the preloader
I prefer to export all assets and classes to frame 2. In former Flash
versions you could set the export frame in the publish settings but it's
gone in v9.

Thanks for any advice!
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