[Flashcoders] FLVPlayback goes blank on fullscreen

2008-11-27 Thread Daniel Boey
Hi List,

I'm hoping someone has encountered this issue and solved it.

I've got a SWF with a FLVPlayback component in it that streams a FLV video.
It's all fine and dandy when I launch the SWF directly into a Standalone
Flash Player.
Maximising it or resizing the window is fine. However, when I make the
window go fullscreen (ie: CTRL+F) the FLVPlayback disappears.
When I exit fullscreen, I get it back and I can see that the video is just
progressing on it's own without stopping.

After surfing around for clues, I found another person who has the same
issue but there was no solution either:
http://www.afcomponents.com/forum/viewtopic.php?t=2936

Any idea people?

Thanks & Best regards,
Daniel Boey
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] MovieClip path

2008-11-27 Thread Juan Pablo Califano
Considering how display lists have changed between AS 2 and AS 3, I doubt
this is going to be really useful, but perhaps for tracing out a path, it
could the job.


import flash.display.DisplayObject;

function getFullPath(dpo:DisplayObject):String{

 var path:Array = [];

 while(dpo.parent) {
  path.unshift(dpo.name);
  dpo = dpo.parent;
 }

 return path.joint(".");

}
PS: I don't know if there's a builtin method for this.


Cheers
Juan Pablo Califano


2008/11/27, Michael William Ypes <[EMAIL PROTECTED]>:
>
> In as2 whenever you wanted to know the heirarchy of the movieclip I would
> just trace(this) and it would give _level0.mc1.mc2.mc3 etc.
>
> How can you achieve that in as3 as it returns the type [object MovieClip]
> and not its location.
>
> I am sure it can be done as it was a very handy thing for when you get lost
> in your mcs :)
>
> Cheers
>
> M
> ___
> 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] SWFobject and SWFaddress

2008-11-27 Thread Glen Pike

Hi,

  SWFAddress.onChange = function () {
  //handle it here...
 trace(SWFAddress.getValue());
   }

coker todd wrote:

Hi Coders,

I've been trying to get the SWFaddress working in AS 2.0 now for three entire days, Problem being I'm trying to fire everything off of one frame, my navigation is made up of like this, it fires to the title, where do I put the script that invokes the back button occurrence? 


// import needed classes (these ship with Flash)
import mx.transitions.Tween;
import mx.transitions.easing.*;

// create menu holder 
this.createEmptyMovieClip("mainMenu", 1);
// postion menu based on 
mainMenu._x = mainX;

mainMenu._y = mainY;
// Create New XML object
var menuXml:XML = new XML();
menuXml.ignoreWhite = true;
// once loaded lets run the buildMenu function 
menuXml.onLoad = buildMenu;

menuXml.load("menu.xml");
// Build Menu
function buildMenu(success:Boolean):Void {
if (success) {
// this is our xml start point
nav = this.firstChild.childNodes;
// we use this var to store the correct _x values for our buttons
var xPos:Number = 0;
// loop through everything in nav
var i:Number;
for (i=0; i// attach the button from the libray for each file found 
var mainBtn:MovieClip = mainMenu.attachMovie("mainBtn", "mainBtn"+i, i);

// set the text for each button
mainBtn.btnName.t.text = nav[i].attributes.NAME;
// set color of text
textCol = new Color(mainBtn.btnName);
textCol.setRGB(normalColor);
// get the link for each button
mainBtn.link = nav[i].attributes.LINK;
// create a ID for each button for use in our rollover/out effects
mainBtn.ID = i;
// center text - important for the scaling tween
mainBtn.btnName.t.autoSize = "center";
mainBtn.btnName._y -= mainBtn.btnName.t.textHeight/2;
mainBtn.btnName._x -= mainBtn.btnName.t.textWidth/2;
// align each button next to the one before it
xPos += mainBtn.btnName.t.textWidth+buttonSpacing;
mainBtn._x = xPos;
mainBtn.onRelease = mainBtn.onReleaseOutside=function ():Void {
activeMain = this;
// tween color to active color
var currColor = new Color(this.btnName);
col = "0x"+currColor.getRGB().toString(16);
var tweenColor:colorTrans = new colorTrans(this.btnName, colorSpeed);
tweenColor.colorTween(activeColor, col);
// for all other buttons
for (k=0; k  
___

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


  


--

Glen Pike
01326 218440
www.glenpike.co.uk 

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


Re: [Flashcoders] online .swf generator

2008-11-27 Thread Ian Thomas
A couple of alternatives come to mind:

- You can use the Flex SDK - there is a version of the compiler
designed to stay resident and run on the server, which speeds up the
whole compilation process. Can't remember where - check out Adobe
Labs. It's not superfast, but may be fast enough.
- You could use swfmill: http://www.swfmill.org

HTH,
   Ian

On Thu, Nov 27, 2008 at 3:15 PM, allandt bik-elliott
(thefieldcomic.com) <[EMAIL PROTECTED]> wrote:
> would that not cause a security problem? or do you mean to store it on the
> host server?
>
> On Thu, Nov 27, 2008 at 2:48 PM, Adrian Ionut Beschea <[EMAIL PROTECTED]
>> wrote:
>
>> we used  flex sdk on the server side and it proved to be very slow
>> if you need it for on-the-fly generation I don't think it's an option.
>> why not using an general swf for all banners and just  slip the
>> configuration file on the server.
>>
>> --- On Thu, 11/27/08, poste9 <[EMAIL PROTECTED]> wrote:
>> From: poste9 <[EMAIL PROTECTED]>
>> Subject: Re: [Flashcoders] online .swf generator
>> To: "Flash Coders List" 
>> Date: Thursday, November 27, 2008, 3:57 PM
>>
>> openslaszlo  r0x
>>
>> 2008/11/27 mike cann <[EMAIL PROTECTED]>
>>
>> > You can render the output client side to a BitmapData object then use a
>> > compression lib in AS3 to convert it to GIF or PNG or something then
>> upload
>> > that image to the server and avoid the whole SWF part?
>> >
>> > 2008/11/27 allandt bik-elliott (thefieldcomic.com)
>> <[EMAIL PROTECTED]>
>> >
>> > > could you use some kind of code injection like flashdev used to do
>> (and
>> > > prolly still does)?
>> > >
>> > > a
>> > >
>> > > On Wed, Nov 26, 2008 at 8:53 PM, Latcho <[EMAIL PROTECTED]>
>> wrote:
>> > >
>> > > > One way: You can compile an swf serverside with flex-sdk and
>> ant, that
>> > > way
>> > > > you can feed it whatever you want as a main class, config class
>> and
>> > orher
>> > > > generic created text var classes.
>> > > > You for ex build a php wrapper around all the command
>> executions.
>> > > > Latcho
>> > > >
>> > > >
>> > > > Michael Stocke wrote:
>> > > >
>> > > >> The output file will be a banner ad. The user will be able
>> to choose
>> > > from
>> > > >> about 5 different designs and list of company-approved
>> > > >> graphics/logos/imagery. The user will also be able to enter
>> a limited
>> > > amount
>> > > >> of text. My vision is to create templates for each of the 5
>> designs
>> > with
>> > > >> blank text fields and placeholders for the logos/graphics.
>> The user
>> > will
>> > > >> modify a configuration file of some kind through the
>> interface I
>> > create,
>> > > >> then I will use a yet-to-be-named tool to generated the .swf
>> from a
>> > .fla
>> > > (or
>> > > >> other core file) and the customized configuration file (XML,
>> MXML,
>> > .txt,
>> > > >> etc.). This is why I mentioned JSFL, because I already know
>> how to do
>> > > this
>> > > >> with JSFL.
>> > > >>
>> > > >> I have zero experience with Flex, so something with the
>> Flash IDE or
>> > > >> Flash-based tools would be better.
>> > > >>
>> > > >> -Original Message-
>> > > >> From: [EMAIL PROTECTED] [mailto:
>> > > >> [EMAIL PROTECTED] On Behalf Of Axel
>> Aigret
>> > > >> Sent: Wednesday, November 26, 2008 12:01 PM
>> > > >> To: Flash Coders List
>> > > >> Subject: Re: [Flashcoders] online .swf generator
>> > > >>
>> > > >> Hi :)
>> > > >>
>> > > >>  Can you explain more in detail what must be arrange in
>> your .swf
>> > > and
>> > > >> how ( a gui in flash or you don't care ? ) .
>> > > >>  What sort of asset , animation , text ?
>> > > >>  What will be the creation at the end to understand what
>> you want
>> > > more
>> > > >> easier.
>> > > >>
>> > > >> Axel Aigret
>> > > >>
>> > > >>
>> > > >> Michael Stocke a écrit :
>> > > >>
>> > > >>
>> > > >>> Good morning group.
>> > > >>>
>> > > >>>
>> > > >>> I am looking for an online .swf generation tool.
>> Specifically, a user
>> > > >>> designs a .swf online through a tool that I create, then
>> they submit
>> > > >>> their work which generates a .swf output. The tool will
>> allow the
>> > user
>> > > >>> to choose from several templates, then customize them by
>> selecting
>> > > >>> various assets from pre-determined lists and adding some
>> free-form
>> > > text.
>> > > >>> >From my research so far I'm mainly seeing tools
>> based on Java and
>> > C++,
>> > > >>> both of which aren't really options for me. I have
>> some very limited
>> > > >>> knowledge of Ming (PHP), but this option is too
>> programming intensive
>> > > >>> for this scenario. I think JSFL would be my best bet,
>> but I can't
>> > find
>> > > >>> any information about using it for an online server-side
>> > > implementation.
>> > > >>> My experience has been for local batching purposes only.
>> > > >>>
>> > > >>>
>> > > >>> Does anyone have any suggestions? The client is open to
>> purchasing an
>> > > >>> application depending on the cost.
>> > > >>>
>> > > 

Re: [Flashcoders] can Flex classes be used within (Flash CS3) along with ActionScript?

2008-11-27 Thread Meinte van't Kruis
what's so hacky about it? To my knowledge you point to an SWC the same way
you would point to actionscript classes, adding it to your classpath

On Wed, Nov 26, 2008 at 10:18 PM, Eric E. Dolecki <[EMAIL PROTECTED]>wrote:

> Oops - I didn't see that CS3 part. CS4 makes it super easy to link to a SWC
> to use classes in it, but CS3 is even nastier hack land.
>
> On Wed, Nov 26, 2008 at 4:06 PM, Anthony Pace <[EMAIL PROTECTED]
> >wrote:
>
> > The editor sucks, still.  We need something like Aptana for AS3.
> >
> > Don't use the flash CS3 IDE if you can avoid; however, it is pretty good
> > for animations; yet, if you want to do animations, go to cs4... bones and
> IK
> > and bears oh my.
> >
> >
> > Eric E. Dolecki wrote:
> >
> >> Using a SWC, yes. But it's nasty work IMO. Use Flex Builder if you have
> >> it.
> >>
> >> On Wed, Nov 26, 2008 at 3:47 PM, BOYD SPEER <[EMAIL PROTECTED]> wrote:
> >>
> >>
> >>
> >>> can Flex classes be imported and used within (Flash CS3) along with
> >>> ActionScript?
> >>>
> >>> -Boyd
> >>> ___
> >>> 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
> >
>
>
>
> --
> http://ericd.net
> Interactive design and development
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>



-- 
M.A. van't Kruis
http://www.malatze.nl/
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] online .swf generator

2008-11-27 Thread allandt bik-elliott (thefieldcomic.com)
would that not cause a security problem? or do you mean to store it on the
host server?

On Thu, Nov 27, 2008 at 2:48 PM, Adrian Ionut Beschea <[EMAIL PROTECTED]
> wrote:

> we used  flex sdk on the server side and it proved to be very slow
> if you need it for on-the-fly generation I don't think it's an option.
> why not using an general swf for all banners and just  slip the
> configuration file on the server.
>
> --- On Thu, 11/27/08, poste9 <[EMAIL PROTECTED]> wrote:
> From: poste9 <[EMAIL PROTECTED]>
> Subject: Re: [Flashcoders] online .swf generator
> To: "Flash Coders List" 
> Date: Thursday, November 27, 2008, 3:57 PM
>
> openslaszlo  r0x
>
> 2008/11/27 mike cann <[EMAIL PROTECTED]>
>
> > You can render the output client side to a BitmapData object then use a
> > compression lib in AS3 to convert it to GIF or PNG or something then
> upload
> > that image to the server and avoid the whole SWF part?
> >
> > 2008/11/27 allandt bik-elliott (thefieldcomic.com)
> <[EMAIL PROTECTED]>
> >
> > > could you use some kind of code injection like flashdev used to do
> (and
> > > prolly still does)?
> > >
> > > a
> > >
> > > On Wed, Nov 26, 2008 at 8:53 PM, Latcho <[EMAIL PROTECTED]>
> wrote:
> > >
> > > > One way: You can compile an swf serverside with flex-sdk and
> ant, that
> > > way
> > > > you can feed it whatever you want as a main class, config class
> and
> > orher
> > > > generic created text var classes.
> > > > You for ex build a php wrapper around all the command
> executions.
> > > > Latcho
> > > >
> > > >
> > > > Michael Stocke wrote:
> > > >
> > > >> The output file will be a banner ad. The user will be able
> to choose
> > > from
> > > >> about 5 different designs and list of company-approved
> > > >> graphics/logos/imagery. The user will also be able to enter
> a limited
> > > amount
> > > >> of text. My vision is to create templates for each of the 5
> designs
> > with
> > > >> blank text fields and placeholders for the logos/graphics.
> The user
> > will
> > > >> modify a configuration file of some kind through the
> interface I
> > create,
> > > >> then I will use a yet-to-be-named tool to generated the .swf
> from a
> > .fla
> > > (or
> > > >> other core file) and the customized configuration file (XML,
> MXML,
> > .txt,
> > > >> etc.). This is why I mentioned JSFL, because I already know
> how to do
> > > this
> > > >> with JSFL.
> > > >>
> > > >> I have zero experience with Flex, so something with the
> Flash IDE or
> > > >> Flash-based tools would be better.
> > > >>
> > > >> -Original Message-
> > > >> From: [EMAIL PROTECTED] [mailto:
> > > >> [EMAIL PROTECTED] On Behalf Of Axel
> Aigret
> > > >> Sent: Wednesday, November 26, 2008 12:01 PM
> > > >> To: Flash Coders List
> > > >> Subject: Re: [Flashcoders] online .swf generator
> > > >>
> > > >> Hi :)
> > > >>
> > > >>  Can you explain more in detail what must be arrange in
> your .swf
> > > and
> > > >> how ( a gui in flash or you don't care ? ) .
> > > >>  What sort of asset , animation , text ?
> > > >>  What will be the creation at the end to understand what
> you want
> > > more
> > > >> easier.
> > > >>
> > > >> Axel Aigret
> > > >>
> > > >>
> > > >> Michael Stocke a écrit :
> > > >>
> > > >>
> > > >>> Good morning group.
> > > >>>
> > > >>>
> > > >>> I am looking for an online .swf generation tool.
> Specifically, a user
> > > >>> designs a .swf online through a tool that I create, then
> they submit
> > > >>> their work which generates a .swf output. The tool will
> allow the
> > user
> > > >>> to choose from several templates, then customize them by
> selecting
> > > >>> various assets from pre-determined lists and adding some
> free-form
> > > text.
> > > >>> >From my research so far I'm mainly seeing tools
> based on Java and
> > C++,
> > > >>> both of which aren't really options for me. I have
> some very limited
> > > >>> knowledge of Ming (PHP), but this option is too
> programming intensive
> > > >>> for this scenario. I think JSFL would be my best bet,
> but I can't
> > find
> > > >>> any information about using it for an online server-side
> > > implementation.
> > > >>> My experience has been for local batching purposes only.
> > > >>>
> > > >>>
> > > >>> Does anyone have any suggestions? The client is open to
> purchasing an
> > > >>> application depending on the cost.
> > > >>>
> > > >>>
> > > >>> Mike Stocke
> > > >>> Interface Engineer
> > > >>>
> > > >>> Organic, Inc. | Detroit
> > > >>> 2600 S. Telegraph Road -- Suite 100, Bloomfield Hills,
> MI 48302
> > > >>> t: 248.454.4015  |  f: 248.454.3370
> > > >>>
> > > >>>
> > > >>> Email: [EMAIL PROTECTED]
>  Blog:
> > > >>> http://Threeminds.Organic.com
> 
> > > Website:
> > > >>> www.Organic.com  > > >>>
> > > >>>
> > > >>> ___
> > > >>> Flashcoders mailing list
> > > >>> Flashcoders@chattyfig.fi

Re: [Flashcoders] online .swf generator

2008-11-27 Thread Adrian Ionut Beschea
we used  flex sdk on the server side and it proved to be very slow 
if you need it for on-the-fly generation I don't think it's an option.
why not using an general swf for all banners and just  slip the configuration 
file on the server. 

--- On Thu, 11/27/08, poste9 <[EMAIL PROTECTED]> wrote:
From: poste9 <[EMAIL PROTECTED]>
Subject: Re: [Flashcoders] online .swf generator
To: "Flash Coders List" 
Date: Thursday, November 27, 2008, 3:57 PM

openslaszlo  r0x

2008/11/27 mike cann <[EMAIL PROTECTED]>

> You can render the output client side to a BitmapData object then use a
> compression lib in AS3 to convert it to GIF or PNG or something then
upload
> that image to the server and avoid the whole SWF part?
>
> 2008/11/27 allandt bik-elliott (thefieldcomic.com)
<[EMAIL PROTECTED]>
>
> > could you use some kind of code injection like flashdev used to do
(and
> > prolly still does)?
> >
> > a
> >
> > On Wed, Nov 26, 2008 at 8:53 PM, Latcho <[EMAIL PROTECTED]>
wrote:
> >
> > > One way: You can compile an swf serverside with flex-sdk and
ant, that
> > way
> > > you can feed it whatever you want as a main class, config class
and
> orher
> > > generic created text var classes.
> > > You for ex build a php wrapper around all the command
executions.
> > > Latcho
> > >
> > >
> > > Michael Stocke wrote:
> > >
> > >> The output file will be a banner ad. The user will be able
to choose
> > from
> > >> about 5 different designs and list of company-approved
> > >> graphics/logos/imagery. The user will also be able to enter
a limited
> > amount
> > >> of text. My vision is to create templates for each of the 5
designs
> with
> > >> blank text fields and placeholders for the logos/graphics.
The user
> will
> > >> modify a configuration file of some kind through the
interface I
> create,
> > >> then I will use a yet-to-be-named tool to generated the .swf
from a
> .fla
> > (or
> > >> other core file) and the customized configuration file (XML,
MXML,
> .txt,
> > >> etc.). This is why I mentioned JSFL, because I already know
how to do
> > this
> > >> with JSFL.
> > >>
> > >> I have zero experience with Flex, so something with the
Flash IDE or
> > >> Flash-based tools would be better.
> > >>
> > >> -Original Message-
> > >> From: [EMAIL PROTECTED] [mailto:
> > >> [EMAIL PROTECTED] On Behalf Of Axel
Aigret
> > >> Sent: Wednesday, November 26, 2008 12:01 PM
> > >> To: Flash Coders List
> > >> Subject: Re: [Flashcoders] online .swf generator
> > >>
> > >> Hi :)
> > >>
> > >>  Can you explain more in detail what must be arrange in
your .swf
> > and
> > >> how ( a gui in flash or you don't care ? ) .
> > >>  What sort of asset , animation , text ?
> > >>  What will be the creation at the end to understand what
you want
> > more
> > >> easier.
> > >>
> > >> Axel Aigret
> > >>
> > >>
> > >> Michael Stocke a écrit :
> > >>
> > >>
> > >>> Good morning group.
> > >>>
> > >>>
> > >>> I am looking for an online .swf generation tool.
Specifically, a user
> > >>> designs a .swf online through a tool that I create, then
they submit
> > >>> their work which generates a .swf output. The tool will
allow the
> user
> > >>> to choose from several templates, then customize them by
selecting
> > >>> various assets from pre-determined lists and adding some
free-form
> > text.
> > >>> >From my research so far I'm mainly seeing tools
based on Java and
> C++,
> > >>> both of which aren't really options for me. I have
some very limited
> > >>> knowledge of Ming (PHP), but this option is too
programming intensive
> > >>> for this scenario. I think JSFL would be my best bet,
but I can't
> find
> > >>> any information about using it for an online server-side
> > implementation.
> > >>> My experience has been for local batching purposes only.
> > >>>
> > >>>
> > >>> Does anyone have any suggestions? The client is open to
purchasing an
> > >>> application depending on the cost.
> > >>>
> > >>>
> > >>> Mike Stocke
> > >>> Interface Engineer
> > >>>
> > >>> Organic, Inc. | Detroit
> > >>> 2600 S. Telegraph Road -- Suite 100, Bloomfield Hills,
MI 48302
> > >>> t: 248.454.4015  |  f: 248.454.3370
> > >>>
> > >>>
> > >>> Email: [EMAIL PROTECTED]
 Blog:
> > >>> http://Threeminds.Organic.com

> > Website:
> > >>> www.Organic.com  > >>>
> > >>>
> > >>> ___
> > >>> 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
> > >>
> > >>

> > >> This email is intended only for the person or entity to
which it is
> > >> addressed and may 

Re: [Flashcoders] online .swf generator

2008-11-27 Thread Paul Andrews

Would rather compromise quality and filesize, I think.

- Original Message - 
From: "mike cann" <[EMAIL PROTECTED]>

To: "Flash Coders List" 
Sent: Thursday, November 27, 2008 1:45 PM
Subject: Re: [Flashcoders] online .swf generator


You can render the output client side to a BitmapData object then use a
compression lib in AS3 to convert it to GIF or PNG or something then upload
that image to the server and avoid the whole SWF part?

2008/11/27 allandt bik-elliott (thefieldcomic.com) <[EMAIL PROTECTED]>


could you use some kind of code injection like flashdev used to do (and
prolly still does)?

a

On Wed, Nov 26, 2008 at 8:53 PM, Latcho <[EMAIL PROTECTED]> wrote:

> One way: You can compile an swf serverside with flex-sdk and ant, that
way
> you can feed it whatever you want as a main class, config class and 
> orher

> generic created text var classes.
> You for ex build a php wrapper around all the command executions.
> Latcho
>
>
> Michael Stocke wrote:
>
>> The output file will be a banner ad. The user will be able to choose
from
>> about 5 different designs and list of company-approved
>> graphics/logos/imagery. The user will also be able to enter a limited
amount
>> of text. My vision is to create templates for each of the 5 designs 
>> with
>> blank text fields and placeholders for the logos/graphics. The user 
>> will
>> modify a configuration file of some kind through the interface I 
>> create,
>> then I will use a yet-to-be-named tool to generated the .swf from a 
>> .fla

(or
>> other core file) and the customized configuration file (XML, MXML, 
>> .txt,

>> etc.). This is why I mentioned JSFL, because I already know how to do
this
>> with JSFL.
>>
>> I have zero experience with Flex, so something with the Flash IDE or
>> Flash-based tools would be better.
>>
>> -Original Message-
>> From: [EMAIL PROTECTED] [mailto:
>> [EMAIL PROTECTED] On Behalf Of Axel Aigret
>> Sent: Wednesday, November 26, 2008 12:01 PM
>> To: Flash Coders List
>> Subject: Re: [Flashcoders] online .swf generator
>>
>> Hi :)
>>
>>  Can you explain more in detail what must be arrange in your .swf
and
>> how ( a gui in flash or you don't care ? ) .
>>  What sort of asset , animation , text ?
>>  What will be the creation at the end to understand what you want
more
>> easier.
>>
>> Axel Aigret
>>
>>
>> Michael Stocke a écrit :
>>
>>
>>> Good morning group.
>>>
>>>
>>> I am looking for an online .swf generation tool. Specifically, a user
>>> designs a .swf online through a tool that I create, then they submit
>>> their work which generates a .swf output. The tool will allow the user
>>> to choose from several templates, then customize them by selecting
>>> various assets from pre-determined lists and adding some free-form
text.
>>> >From my research so far I'm mainly seeing tools based on Java and 
>>> >C++,

>>> both of which aren't really options for me. I have some very limited
>>> knowledge of Ming (PHP), but this option is too programming intensive
>>> for this scenario. I think JSFL would be my best bet, but I can't find
>>> any information about using it for an online server-side
implementation.
>>> My experience has been for local batching purposes only.
>>>
>>>
>>> Does anyone have any suggestions? The client is open to purchasing an
>>> application depending on the cost.
>>>
>>>
>>> Mike Stocke
>>> Interface Engineer
>>>
>>> Organic, Inc. | Detroit
>>> 2600 S. Telegraph Road -- Suite 100, Bloomfield Hills, MI 48302
>>> t: 248.454.4015  |  f: 248.454.3370
>>>
>>>
>>> Email: [EMAIL PROTECTED]  Blog:
>>> http://Threeminds.Organic.com 
Website:
>>> www.Organic.com >>
>>>
>>> ___
>>> 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
>>
>> 
>> This email is intended only for the person or entity to which it is
>> addressed and may contain information that is privileged, confidential
or
>> otherwise protected from disclosure. Dissemination, distribution or
copying
>> of this email or the information herein by anyone other than the
intended
>> recipient, or an employee or agent responsible for delivering the
message to
>> the intended recipient, is prohibited.  If you have received this email
in
>> error, please immediately notify us by calling our Help Desk at (415)
>> 581-5552 or by e-mailing us at [EMAIL PROTECTED]
>>
>>
>>
>> ___
>> Flashcoders mailing list
>> Flashcoders@chattyfig.figleaf.com
>> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>>
>>
>>
>
> 

Re: [Flashcoders] online .swf generator

2008-11-27 Thread poste9
openslaszlo  r0x

2008/11/27 mike cann <[EMAIL PROTECTED]>

> You can render the output client side to a BitmapData object then use a
> compression lib in AS3 to convert it to GIF or PNG or something then upload
> that image to the server and avoid the whole SWF part?
>
> 2008/11/27 allandt bik-elliott (thefieldcomic.com) <[EMAIL PROTECTED]>
>
> > could you use some kind of code injection like flashdev used to do (and
> > prolly still does)?
> >
> > a
> >
> > On Wed, Nov 26, 2008 at 8:53 PM, Latcho <[EMAIL PROTECTED]> wrote:
> >
> > > One way: You can compile an swf serverside with flex-sdk and ant, that
> > way
> > > you can feed it whatever you want as a main class, config class and
> orher
> > > generic created text var classes.
> > > You for ex build a php wrapper around all the command executions.
> > > Latcho
> > >
> > >
> > > Michael Stocke wrote:
> > >
> > >> The output file will be a banner ad. The user will be able to choose
> > from
> > >> about 5 different designs and list of company-approved
> > >> graphics/logos/imagery. The user will also be able to enter a limited
> > amount
> > >> of text. My vision is to create templates for each of the 5 designs
> with
> > >> blank text fields and placeholders for the logos/graphics. The user
> will
> > >> modify a configuration file of some kind through the interface I
> create,
> > >> then I will use a yet-to-be-named tool to generated the .swf from a
> .fla
> > (or
> > >> other core file) and the customized configuration file (XML, MXML,
> .txt,
> > >> etc.). This is why I mentioned JSFL, because I already know how to do
> > this
> > >> with JSFL.
> > >>
> > >> I have zero experience with Flex, so something with the Flash IDE or
> > >> Flash-based tools would be better.
> > >>
> > >> -Original Message-
> > >> From: [EMAIL PROTECTED] [mailto:
> > >> [EMAIL PROTECTED] On Behalf Of Axel Aigret
> > >> Sent: Wednesday, November 26, 2008 12:01 PM
> > >> To: Flash Coders List
> > >> Subject: Re: [Flashcoders] online .swf generator
> > >>
> > >> Hi :)
> > >>
> > >>  Can you explain more in detail what must be arrange in your .swf
> > and
> > >> how ( a gui in flash or you don't care ? ) .
> > >>  What sort of asset , animation , text ?
> > >>  What will be the creation at the end to understand what you want
> > more
> > >> easier.
> > >>
> > >> Axel Aigret
> > >>
> > >>
> > >> Michael Stocke a écrit :
> > >>
> > >>
> > >>> Good morning group.
> > >>>
> > >>>
> > >>> I am looking for an online .swf generation tool. Specifically, a user
> > >>> designs a .swf online through a tool that I create, then they submit
> > >>> their work which generates a .swf output. The tool will allow the
> user
> > >>> to choose from several templates, then customize them by selecting
> > >>> various assets from pre-determined lists and adding some free-form
> > text.
> > >>> >From my research so far I'm mainly seeing tools based on Java and
> C++,
> > >>> both of which aren't really options for me. I have some very limited
> > >>> knowledge of Ming (PHP), but this option is too programming intensive
> > >>> for this scenario. I think JSFL would be my best bet, but I can't
> find
> > >>> any information about using it for an online server-side
> > implementation.
> > >>> My experience has been for local batching purposes only.
> > >>>
> > >>>
> > >>> Does anyone have any suggestions? The client is open to purchasing an
> > >>> application depending on the cost.
> > >>>
> > >>>
> > >>> Mike Stocke
> > >>> Interface Engineer
> > >>>
> > >>> Organic, Inc. | Detroit
> > >>> 2600 S. Telegraph Road -- Suite 100, Bloomfield Hills, MI 48302
> > >>> t: 248.454.4015  |  f: 248.454.3370
> > >>>
> > >>>
> > >>> Email: [EMAIL PROTECTED]  Blog:
> > >>> http://Threeminds.Organic.com 
> > Website:
> > >>> www.Organic.com  > >>>
> > >>>
> > >>> ___
> > >>> 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
> > >>
> > >> 
> > >> This email is intended only for the person or entity to which it is
> > >> addressed and may contain information that is privileged, confidential
> > or
> > >> otherwise protected from disclosure. Dissemination, distribution or
> > copying
> > >> of this email or the information herein by anyone other than the
> > intended
> > >> recipient, or an employee or agent responsible for delivering the
> > message to
> > >> the intended recipient, is prohibited.  If you have received this
> email
> > in
> > >> error, please immediately notify

Re: [Flashcoders] online .swf generator

2008-11-27 Thread mike cann
You can render the output client side to a BitmapData object then use a
compression lib in AS3 to convert it to GIF or PNG or something then upload
that image to the server and avoid the whole SWF part?

2008/11/27 allandt bik-elliott (thefieldcomic.com) <[EMAIL PROTECTED]>

> could you use some kind of code injection like flashdev used to do (and
> prolly still does)?
>
> a
>
> On Wed, Nov 26, 2008 at 8:53 PM, Latcho <[EMAIL PROTECTED]> wrote:
>
> > One way: You can compile an swf serverside with flex-sdk and ant, that
> way
> > you can feed it whatever you want as a main class, config class and orher
> > generic created text var classes.
> > You for ex build a php wrapper around all the command executions.
> > Latcho
> >
> >
> > Michael Stocke wrote:
> >
> >> The output file will be a banner ad. The user will be able to choose
> from
> >> about 5 different designs and list of company-approved
> >> graphics/logos/imagery. The user will also be able to enter a limited
> amount
> >> of text. My vision is to create templates for each of the 5 designs with
> >> blank text fields and placeholders for the logos/graphics. The user will
> >> modify a configuration file of some kind through the interface I create,
> >> then I will use a yet-to-be-named tool to generated the .swf from a .fla
> (or
> >> other core file) and the customized configuration file (XML, MXML, .txt,
> >> etc.). This is why I mentioned JSFL, because I already know how to do
> this
> >> with JSFL.
> >>
> >> I have zero experience with Flex, so something with the Flash IDE or
> >> Flash-based tools would be better.
> >>
> >> -Original Message-
> >> From: [EMAIL PROTECTED] [mailto:
> >> [EMAIL PROTECTED] On Behalf Of Axel Aigret
> >> Sent: Wednesday, November 26, 2008 12:01 PM
> >> To: Flash Coders List
> >> Subject: Re: [Flashcoders] online .swf generator
> >>
> >> Hi :)
> >>
> >>  Can you explain more in detail what must be arrange in your .swf
> and
> >> how ( a gui in flash or you don't care ? ) .
> >>  What sort of asset , animation , text ?
> >>  What will be the creation at the end to understand what you want
> more
> >> easier.
> >>
> >> Axel Aigret
> >>
> >>
> >> Michael Stocke a écrit :
> >>
> >>
> >>> Good morning group.
> >>>
> >>>
> >>> I am looking for an online .swf generation tool. Specifically, a user
> >>> designs a .swf online through a tool that I create, then they submit
> >>> their work which generates a .swf output. The tool will allow the user
> >>> to choose from several templates, then customize them by selecting
> >>> various assets from pre-determined lists and adding some free-form
> text.
> >>> >From my research so far I'm mainly seeing tools based on Java and C++,
> >>> both of which aren't really options for me. I have some very limited
> >>> knowledge of Ming (PHP), but this option is too programming intensive
> >>> for this scenario. I think JSFL would be my best bet, but I can't find
> >>> any information about using it for an online server-side
> implementation.
> >>> My experience has been for local batching purposes only.
> >>>
> >>>
> >>> Does anyone have any suggestions? The client is open to purchasing an
> >>> application depending on the cost.
> >>>
> >>>
> >>> Mike Stocke
> >>> Interface Engineer
> >>>
> >>> Organic, Inc. | Detroit
> >>> 2600 S. Telegraph Road -- Suite 100, Bloomfield Hills, MI 48302
> >>> t: 248.454.4015  |  f: 248.454.3370
> >>>
> >>>
> >>> Email: [EMAIL PROTECTED]  Blog:
> >>> http://Threeminds.Organic.com 
> Website:
> >>> www.Organic.com  >>>
> >>>
> >>> ___
> >>> 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
> >>
> >> 
> >> This email is intended only for the person or entity to which it is
> >> addressed and may contain information that is privileged, confidential
> or
> >> otherwise protected from disclosure. Dissemination, distribution or
> copying
> >> of this email or the information herein by anyone other than the
> intended
> >> recipient, or an employee or agent responsible for delivering the
> message to
> >> the intended recipient, is prohibited.  If you have received this email
> in
> >> error, please immediately notify us by calling our Help Desk at (415)
> >> 581-5552 or by e-mailing us at [EMAIL PROTECTED]
> >>
> >>
> >>
> >> ___
> >> Flashcoders mailing list
> >> Flashcoders@chattyfig.figleaf.com
> >> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> >>
> >>
> >>
> >
> > ___

[Flashcoders] MovieClip path

2008-11-27 Thread Michael William Ypes
In as2 whenever you wanted to know the heirarchy of the movieclip I  
would just trace(this) and it would give _level0.mc1.mc2.mc3 etc.


How can you achieve that in as3 as it returns the type [object  
MovieClip] and not its location.


I am sure it can be done as it was a very handy thing for when you get  
lost in your mcs :)


Cheers

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


Re: [Flashcoders] online .swf generator

2008-11-27 Thread allandt bik-elliott (thefieldcomic.com)
could you use some kind of code injection like flashdev used to do (and
prolly still does)?

a

On Wed, Nov 26, 2008 at 8:53 PM, Latcho <[EMAIL PROTECTED]> wrote:

> One way: You can compile an swf serverside with flex-sdk and ant, that way
> you can feed it whatever you want as a main class, config class and orher
> generic created text var classes.
> You for ex build a php wrapper around all the command executions.
> Latcho
>
>
> Michael Stocke wrote:
>
>> The output file will be a banner ad. The user will be able to choose from
>> about 5 different designs and list of company-approved
>> graphics/logos/imagery. The user will also be able to enter a limited amount
>> of text. My vision is to create templates for each of the 5 designs with
>> blank text fields and placeholders for the logos/graphics. The user will
>> modify a configuration file of some kind through the interface I create,
>> then I will use a yet-to-be-named tool to generated the .swf from a .fla (or
>> other core file) and the customized configuration file (XML, MXML, .txt,
>> etc.). This is why I mentioned JSFL, because I already know how to do this
>> with JSFL.
>>
>> I have zero experience with Flex, so something with the Flash IDE or
>> Flash-based tools would be better.
>>
>> -Original Message-
>> From: [EMAIL PROTECTED] [mailto:
>> [EMAIL PROTECTED] On Behalf Of Axel Aigret
>> Sent: Wednesday, November 26, 2008 12:01 PM
>> To: Flash Coders List
>> Subject: Re: [Flashcoders] online .swf generator
>>
>> Hi :)
>>
>>  Can you explain more in detail what must be arrange in your .swf and
>> how ( a gui in flash or you don't care ? ) .
>>  What sort of asset , animation , text ?
>>  What will be the creation at the end to understand what you want more
>> easier.
>>
>> Axel Aigret
>>
>>
>> Michael Stocke a écrit :
>>
>>
>>> Good morning group.
>>>
>>>
>>> I am looking for an online .swf generation tool. Specifically, a user
>>> designs a .swf online through a tool that I create, then they submit
>>> their work which generates a .swf output. The tool will allow the user
>>> to choose from several templates, then customize them by selecting
>>> various assets from pre-determined lists and adding some free-form text.
>>> >From my research so far I'm mainly seeing tools based on Java and C++,
>>> both of which aren't really options for me. I have some very limited
>>> knowledge of Ming (PHP), but this option is too programming intensive
>>> for this scenario. I think JSFL would be my best bet, but I can't find
>>> any information about using it for an online server-side implementation.
>>> My experience has been for local batching purposes only.
>>>
>>>
>>> Does anyone have any suggestions? The client is open to purchasing an
>>> application depending on the cost.
>>>
>>>
>>> Mike Stocke
>>> Interface Engineer
>>>
>>> Organic, Inc. | Detroit
>>> 2600 S. Telegraph Road -- Suite 100, Bloomfield Hills, MI 48302
>>> t: 248.454.4015  |  f: 248.454.3370
>>>
>>>
>>> Email: [EMAIL PROTECTED]  Blog:
>>> http://Threeminds.Organic.com  Website:
>>> www.Organic.com >>
>>>
>>> ___
>>> 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
>>
>> 
>> This email is intended only for the person or entity to which it is
>> addressed and may contain information that is privileged, confidential or
>> otherwise protected from disclosure. Dissemination, distribution or copying
>> of this email or the information herein by anyone other than the intended
>> recipient, or an employee or agent responsible for delivering the message to
>> the intended recipient, is prohibited.  If you have received this email in
>> error, please immediately notify us by calling our Help Desk at (415)
>> 581-5552 or by e-mailing us at [EMAIL PROTECTED]
>>
>>
>>
>> ___
>> 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 mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] Re: [ Air Application - File.browse ] - Font file

2008-11-27 Thread david costard
OK I find a solution.
I can't select a font if I try to select it in the Windows Font Folder.
If I try from a non System folder (for ex: d:\projects\font) it's ok.

david



2008/11/26 david costard <[EMAIL PROTECTED]>

> Hi list,
>
> In a new AIR application, I want to catch the path of a font in the user's
> sytem.
> The user will click on a "Browse" button. It will open a file dialog box
> and the user select the font.
>
> My problem is each time I select a font my OS (Windows XP) open the font in
> the Windows font player.
> I just want to catch the path of the file, not open it.
>
> Any idea ?
>
>
> David
>
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] can't get selected item from PopUpMenuButton

2008-11-27 Thread philtre flash
I'm trying to create a simple form with two TextInput fields and a
PopUpMenuButton.

My "dropdown" PopUpMenuButton uses an ArrayCollection as dataProvider. All
the labels are displayed and the itemClick event fires and returns the right
item from the collection.
However, upon submitting the form, I can't access the currently selected
item.

dropdown.selected returns false
dropdown.selectedField returns null
Menu(dropdown.popUp).selectedItem returns null
Menu(dropdown.popUp).selectedIndex returns null
Menu(dropdown.popUp).data returns null

However,
dropdown.dataProvider and Menu(dropdown.popUp).dataProvider both return the
ArrayCollection object.

Is there any way to get the currently selected item from the
PopUpMenuButton, without using the itemClick event?

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


Re: [Flashcoders] AIR execute file .bat

2008-11-27 Thread david costard
Thanks Ricky for your reply.
I'm not very fan of Zinc but I will watch this version and its opportunity.

david



2008/11/26 Ricky Blaha <[EMAIL PROTECTED]>

> If that doesn't work for you, I have found Zinc to be a much better
> alternative to AIR for this and many other reasons such as database
> connectivity and COMPort access.
> Here is how you would launch a batch file using ActionScript and the Zinc
> package:
> mdm.System.exec(mdm.Application.path + "myFile.bat");
>
> Then you would publish that FLA to a SWF, import the SWF to Zinc, and
> publish from Zinc to an EXE file.
>
> Here is the reference page on that method:
>
> http://www.multidmedia.com/support/livedocs/index.php?url=main.php?action=methods
> ¬class=System¬id=10148<
> http://www.multidmedia.com/support/livedocs/index.php?url=main.php?action=methods%C2%ACclass=System%C2%ACid=10148
> >
>
> ~Ricky
> http://codingjourney.blogspot.com
>
>
> On Wed, Nov 26, 2008 at 1:11 PM, david costard <[EMAIL PROTECTED]> wrote:
>
> > Hi,
> >
> > I find a solution with this framework.
> > http://aperture.fluorinefx.com/
> >
> > david
> >
> >
> > 2008/11/25 Steven Sacks <[EMAIL PROTECTED]>
> >
> > > No.
> > >
> > >
> > > david costard wrote:
> > >
> > >> Hi List,
> > >>
> > >> Is it possible to execute a .bat file from an AIR application ?
> > >>
> > >>
> > >> david
> > >> ___
> > >> 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 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 mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders