[Flashcoders] Re: AS3: Mouse.hide() + ContextMenu

2008-11-26 Thread jonathan howe
Hi, everyone,

Just a little update on this issue, for the starlwart few who are
interested. I discovered that a Event.MOUSE_LEAVE is fired when the Right
Click (ContextMenu) menu is opened. I wish there was a complement to
Event.MOUSE_LEAVE, but I didn't see one.

What I now do is listen for stage's MouseEvent.MOUSE_OVER and Mouse.hide();
every time this is fired (I wish this didn't have to be called so often but
it's not a performance hit for me. If anyone has a better solution, I would
love to hear it).

This created the additional side effect that the Mouse doesn't always
automatically show when you open the context menu (right clicking twice in a
row or using Esc) so I used Event.MOUSE_LEAVE to ensure that Mouse.show() is
called every time.

-jonathan



On Sun, Nov 23, 2008 at 2:18 PM, jonathan howe <[EMAIL PROTECTED]>wrote:

>
> AS3, FP9
>
> I am using a substitute mouse cursor, so I use Mouse.hide();
> When a user right-clicks, the Mouse is unhidden (good) but then it doesn't
> return to the state it was before the context menu was open (unfortunate,
> perhaps understandable).
>
> When a user selects an item, I can listen for
> ContextMenuEvent.MENU_ITEM_SELECT and rehide the mouse.
> But, when a user clicks outside the context menu, the menu is dismissed and
> the mouse item returns. I can't figure out what event if any is raised so
> that I can rehide the Mouse.
> Ideally, it would raise a CLOSE, CANCEL, etc.
>
> Does anyone know how to return the Mouse to hidden after the context menu
> is closed again?
>
> -jonathan
>
>
>
> --
> -jonathan howe
>



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


RE: [Flashcoders] SWFaddress issue files included

2008-11-26 Thread coker todd
Sorry I did not know about attaching files, please download the .zip file at 
the following address:

http://discretebrand.com/fig/swfaddress_issue.zip

Where I am going wrong, everything looks perfect to me,
maybe I've been starring at this screen to long.

Thank you for all your help.
Happy Holidaze


--- On Wed, 11/26/08, Merrill, Jason <[EMAIL PROTECTED]> wrote:

> From: Merrill, Jason <[EMAIL PROTECTED]>
> Subject: RE: [Flashcoders] SWFaddress issue files included
> To: "Flash Coders List" 
> Date: Wednesday, November 26, 2008, 2:30 PM
> You can't (and shouldn't) send attachments to this
> (or any) list.  Put it up on a url somewhere instead.
> 
> 
> Jason Merrill
> Bank of America Instructional Technology & Media  
> ·   GCIB & Staff Support L&LD
> 
> Interested in Flash Platform technologies?  Join the Bank
> of America Flash Platform Developer Community 
> Interested in innovative ideas in Learning?  Check out the
> Innovative Learning Blog and subscribe.
> 
> 
> 
> 
> 
> 
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On Behalf
> Of coker todd
> Sent: Wednesday, November 26, 2008 5:24 PM
> To: Flash Coders List; Joel Stransky
> Subject: [Flashcoders] SWFaddress issue files included
> ___
> 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] SWFaddress issue files included

2008-11-26 Thread Merrill, Jason
You can't (and shouldn't) send attachments to this (or any) list.  Put it up on 
a url somewhere instead.


Jason Merrill
Bank of America Instructional Technology & Media   ·   GCIB & Staff Support 
L&LD

Interested in Flash Platform technologies?  Join the Bank of America Flash 
Platform Developer Community 
Interested in innovative ideas in Learning?  Check out the Innovative Learning 
Blog and subscribe.






-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of coker todd
Sent: Wednesday, November 26, 2008 5:24 PM
To: Flash Coders List; Joel Stransky
Subject: [Flashcoders] SWFaddress issue files included

Coders,

Can someone please unzip the attached .zip and tell me where I am going wrong, 
everything looks perfect to me, maybe I've been starring at this screen to long.

Thank you for all your help.

Happy Holidaze



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


[Flashcoders] SWFaddress issue files included

2008-11-26 Thread coker todd
Coders,

Can someone please unzip the attached .zip and tell me where I am going wrong, 
everything looks perfect to me, maybe I've been starring at this screen to long.

Thank you for all your help.

Happy Holidaze


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


Re: [Flashcoders] reusing symbol is there something I am missing? most likely.

2008-11-26 Thread Joel Stransky
What is your intended use for RightArrow? Are there already instances on the
stage or are you trying to add them at runtime?

On Wed, Nov 26, 2008 at 4:42 PM, Anthony Pace <[EMAIL PROTECTED]>wrote:

> I have taken it and put it into its own file.
>
> The package is blank... now what?
>
>
> Anthony Pace wrote:
>
>> Hmm,
>>
>> I set it to export for actionscript in the IDE
>> give it the desired className RightArrow
>> its instance has the name rightArrow
>> I defined section for it in my file, yet it is under a package does that
>> matter?
>>
>> package blah{
>>
>>
>> }
>> import flash.display.MovieClip;
>>  class rightArrow extends MovieClip
>>   {
>>
>> public function rightArrow( )
>>  {
>>
>>  }
>>
>> }
>>
>>
>> and in the class
>>
>> ___
>> 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
>



-- 
--Joel Stransky
stranskydesign.com
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] reusing symbol is there something I am missing? most likely.

2008-11-26 Thread Anthony Pace

Figured it out after thinking for a moment

It just needed to extend simpleButton.

Anthony Pace wrote:

I have taken it and put it into its own file.

The package is blank... now what?

Anthony Pace wrote:

Hmm,

I set it to export for actionscript in the IDE
give it the desired className RightArrow
its instance has the name rightArrow
I defined section for it in my file, yet it is under a package does 
that matter?


package blah{


}
import flash.display.MovieClip;
  class rightArrow extends MovieClip
   {

 public function rightArrow( )
  {

  }

}


and in the class

___
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


Re: [Flashcoders] reusing symbol is there something I am missing? most likely.

2008-11-26 Thread Anthony Pace

I have taken it and put it into its own file.

The package is blank... now what?

Anthony Pace wrote:

Hmm,

I set it to export for actionscript in the IDE
give it the desired className RightArrow
its instance has the name rightArrow
I defined section for it in my file, yet it is under a package does 
that matter?


package blah{


}
import flash.display.MovieClip;
  class rightArrow extends MovieClip
   {

 public function rightArrow( )
  {

  }

}


and in the class

___
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] XML Structure

2008-11-26 Thread Joel Stransky



Belgian Waffles




On Wed, Nov 26, 2008 at 4:20 PM, coker todd <[EMAIL PROTECTED]> wrote:

> Can someone shed some light on what my XML doc would look like if this is
> what I am parsing in:
>
> function menuXML(){
> this.createTextField("tf",this.getNextHighestDepth(),100,100,100,100);
> this.createEmptyMovieClip("mainMenu",this.getNextHighestDepth());
> xmlLength = menu_xml.firstChild.childNodes.length;
> trace(menu_xml.firstChild.childNodes.length);
> xml = menu_xml.firstChild.childNodes;
> yPos=0;
>
> for(i=0;i
> mainMenu.createEmptyMovieClip(xml[i].attributes.n,mainMenu.getNextHighestDepth());
> mainMenu[xml[i].attributes.n].createTextField(xml[i].attributes.tf
> ,this.getNextHighestDepth(),0,yPos,50,15);
> mainMenu[xml[i].attributes.n][xml[i].attributes.tf].html = true;
> mainMenu[xml[i].attributes.n][xml[i].attributes.tf].htmlText =
> xml[i].attributes.n;
> mainMenu[xml[i].attributes.n]._y = yPos;
> yPos+=10;
>
> mainMenu[xml[i].attributes.n].onRelease = function(){
> pl = xml[i].attributes.dl;
> funcSite(pl);
> }
> }//end for
> }//end function menuXML
>
> ---
> Here is my XML structure, where did I go wrong?
>
> 
>
> 
>
> 
> Belgian Waffles
> 
>
> 
>
>
>
> Much Thanks.
>
>
>
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>



-- 
--Joel Stransky
stranskydesign.com
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] reusing symbol is there something I am missing? most likely.

2008-11-26 Thread jonathan howe
Hi, Anthony,

You need to specify the full pathname in the IDE Linkage Properties. Also,
there seems to be capitaization mismatch between what you've entered in the
IDE and the class. Based on the class you pasted, the Class field in
LinkageProperties should  be "blah.rightArrow"  (not "blah.RightArrow")
-jonathan


On Wed, Nov 26, 2008 at 3:39 PM, Anthony Pace <[EMAIL PROTECTED]>wrote:

> Hmm,
>
> I set it to export for actionscript in the IDE
> give it the desired className RightArrow
> its instance has the name rightArrow
> I defined section for it in my file, yet it is under a package does that
> matter?
>
> package blah{
>
>
> }
> import flash.display.MovieClip;
>  class rightArrow extends MovieClip
>   {
>
> public function rightArrow( )
>  {
>
>  }
>
> }
>
>
> and in the class
>
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>



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


[Flashcoders] XML Structure

2008-11-26 Thread coker todd
Can someone shed some light on what my XML doc would look like if this is what 
I am parsing in:

function menuXML(){
this.createTextField("tf",this.getNextHighestDepth(),100,100,100,100);
this.createEmptyMovieClip("mainMenu",this.getNextHighestDepth());
xmlLength = menu_xml.firstChild.childNodes.length;
trace(menu_xml.firstChild.childNodes.length);
xml = menu_xml.firstChild.childNodes;
yPos=0;

for(i=0;i




Belgian Waffles






Much Thanks.


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


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

2008-11-26 Thread Jamie S
Most flex classes have dependancies in the Flex Framework which means
that before you know it you are importing half of the framework to get
one class or component to work.

But here's a good blog post that describes how to import the Flex
classes you need into a swc so at least you can keep it tidy.

http://labs.wichers.nu/2007/12/25/using-flex-compiled-code-within-flash/

Jamie

On Wed, Nov 26, 2008 at 12:57 PM, Eric E. Dolecki <[EMAIL PROTECTED]> 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
>>
>
>
>
> --
> http://ericd.net
> Interactive design and development
> ___
> 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] XML Structure

2008-11-26 Thread coker todd
Will someone point me to the answer on this, how would the xml file be 
structured if this is what is being parsed in:

var menu_xml:XML = new XML();
menu_xml.onLoad = menuXML;
menu_xml.load("menu.xml");
menu_xml.ignoreWhite = true;
menuXML();

function menuXML(){
this.createTextField("tf",this.getNextHighestDepth(),100,100,100,100);
this.createEmptyMovieClip("mainMenu",this.getNextHighestDepth());
xmlLength = menu_xml.firstChild.childNodes.length;
trace(menu_xml.firstChild.childNodes.length);
xml = menu_xml.firstChild.childNodes;
yPos=0;

for(i=0;i



Belgian Waffles




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


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

2008-11-26 Thread Eric E. Dolecki
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


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

2008-11-26 Thread Anthony Pace

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


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

2008-11-26 Thread Eric E. Dolecki
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
>



-- 
http://ericd.net
Interactive design and development
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


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

2008-11-26 Thread Merrill, Jason
Not really - I have heard of some hacks, but none of them are that easy.  They 
are two different but closely related frameworks, unfortunately.  Hopefully, 
this will all be the same framework someday.


Jason Merrill
Bank of America Instructional Technology & Media   ·   GCIB & Staff Support 
L&LD

Interested in Flash Platform technologies?  Join the Bank of America Flash 
Platform Developer Community 
Interested in innovative ideas in Learning?  Check out the Innovative Learning 
Blog and subscribe.





-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of BOYD SPEER
Sent: Wednesday, November 26, 2008 3:48 PM
To: Flash Coders List
Subject: [Flashcoders] can Flex classes be used within (Flash CS3) along with 
ActionScript?

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


Re: [Flashcoders] online .swf generator

2008-11-26 Thread Latcho
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] reusing symbol is there something I am missing? most likely.

2008-11-26 Thread Anthony Pace

Hmm,

I set it to export for actionscript in the IDE
give it the desired className RightArrow
its instance has the name rightArrow
I defined section for it in my file, yet it is under a package does that 
matter?


package blah{


}
import flash.display.MovieClip;
  class rightArrow extends MovieClip
   {

 public function rightArrow( )
  {

  }

}


and in the class

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


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

2008-11-26 Thread BOYD SPEER
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


Re: [Flashcoders] online .swf generator

2008-11-26 Thread Hans Wichman
Hi,

so if they can download a zip that contains an swf, some sort of config
file, and maybe some assets, that they can extract anywhere, that'd be ok
too?
I'm asking cause what paul says makes a lot of sense.

greetz
JC

On Wed, Nov 26, 2008 at 8:45 PM, Michael Stocke <[EMAIL PROTECTED]> wrote:

> The client certainly will be paying for this, as I won't be working for
> free ;-). What I meant was, they are open to purchasing a third party
> application to generate the .swf in addition to my development costs.
>
> If I understand your remark at the end, the requirements of the job are
> that the user needs to obtain a self-contained .swf from a web-based
> tool that they can take with them and use somewhere else without
> restrictions or dependencies.
>
>
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On Behalf Of Paul
> Andrews
> Sent: Wednesday, November 26, 2008 1:57 PM
> To: Flash Coders List
> Subject: Re: [Flashcoders] online .swf generator
>
>  "The client is open to purchasing an application depending on the cost."
>
> This is going to cost your client $$ whether there's an existing
> application
> out there or not.
>
> I'm curious why it has to generate a .swf . Can't you just have a
> generic
> application that builds the templated output from a data file?
>
> Paul
>
> - Original Message -
> From: "Michael Stocke" <[EMAIL PROTECTED]>
> To: 
> Sent: Wednesday, November 26, 2008 4:37 PM
> Subject: [Flashcoders] online .swf generator
>
>
> 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  <
> http://threeminds.organic.com/>
> Website: www.Organic.com  <
> http://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


Re: [Flashcoders] Flash/Flex Font Embedding

2008-11-26 Thread kris range
Here is some sample code we used to create a font swf with unique
unicode ranges. Worked pretty well. Also side note, if you change your
unicode range, you have to clean your fonts eclipse/flex builder
project or it won't compile with the updated range. Then you could
compile this to a swf and load that swf into your application.

package
{
import flash.display.Sprite;

public class _Arial_de extends Sprite
{
[Embed( source='fonts/arial.ttf',
fontName='_Arial_de',

unicodeRange='U+0020-U+002F,U+0030-U+0039,U+003A-U+0040,U+0041-U+005A,U+005B-U+0060,U+0061-U+007A,U+007B-U+007E,U+0020,U+00A1-U+00FF,U+2000-U+206F,U+20A0-U+20CF,U+2100-U+2183'
)]
public static var _Arial_de : Class
}
}

On Tue, Nov 25, 2008 at 11:20 AM, Glen Pike <[EMAIL PROTECTED]> wrote:
> Hi,
>
>   I re-read your email again and noticed you want runtime font rather than
> embedded in your final application...
>
>   The Troyworks article talks about embedding fonts into a separate SWF,
> then loading these into your main SWF at runtime...
>
>   I guess you are using Flex to create pure ActionScript projects, so for
> the Troy Works sample, you would need to create 2 ActionScript projects -
> one for compiling the "FontLibs.swf" example - you probably want to rename
> the output to a sensible font name - like MyriadProFontLib.swf - then your
> second project is your main application / the second block of code, which
> needs to load the swf from the first.  You should not need any MXML to get
> it to compile - just adapt the code for your normal way of developing here.
>
>   If you are on a PC, it is worth checking out FlashDevelop because it's
> really nice for coding and set up to produce projects like this.  It lets
> you do MXML or ActionScript based projects - Flex Builder just gives you the
> WYSIWYG editor (plus a few more things like profiling, etc).  Either way,
> both Flex Builder and FlashDevelop use mxmlc - the compiler - to output your
> SWF and this is what lets you do the [Embed], unlike the Flash IDE which did
> not allow Embed.
>
>   There are quite a few articles on Runtime Font embedding and managers with
> Flash - it seems to be a bit of a black art to get everything running
> smoothly and I am only part way there.  Look on the Devnet site and in the
> Flex doc's online - there are some useful examples there.
>
>   Sorry if I caused any confusion here..
>
>   Glen
>
> Glen Pike wrote:
>>
>> Hi,
>>
>>  You can use the [Embed] Directive in a few places in Flex.
>>
>>  Inside your MXML code - create a new project - then you can add normal
>> actionscript by inserting
>>
>>   tags - start typing "Scr..." and Flex Builder will try to
>> auto-complete.
>>
>>   Between your Script tags is ActionScript - same way as you would write
>> it anywhere else.
>>
>>   You can also create ActionScript only components as part of your project
>> and write your code as AS.
>>
>>   You can also embed your fonts in style sheets, which just contain fancy
>> CSS declarations.  I have an example at home, so will post it this evening
>> if you don't get sorted - in about 3hours from now.
>>
>>  Keith Peters also wrote an article about Embed on his blog - a while back
>> so you might have to search for it
>>
>>  Glen
>>
>> Mike Grunwald wrote:
>>>
>>> I've been searching for the best way to handle fonts when localizing
>>> Flash applications. Ideally I'm looking for a way that I can create SWFs
>>> that have specific character ranges of specific fonts embedded in them that
>>> I can load in to my applications as needed based on the language that has
>>> been selected by the user.
>>>
>>> I've come across many posts of people describing this approach, most
>>> notably:
>>>
>>>
>>> http://troyworks.com/blog/2008/09/12/flash-runtime-font-sharing-embedding-with-only-partial-character-sets-how-to/
>>>
>>> The problem for me is I don't know Flex at all. I have Flex Builder 3 and
>>> use it almost everyday as my primary AS3 editor, but I don't know the first
>>> thing about MXML or even creating Flex projects. The previous post above
>>> describes this technique using FlashDevelop and the Flex SDK. Since I have
>>> Flex builder I'm just looking for a little guidance as to how to get similar
>>> code to compile a SWF in Flex Builder.
>>>
>>> Any help would be greatly appreciated. Or if any or you have any better
>>> methods of how to handle this that you would like to pass on, I'm totally
>>> open to suggestion.
>>>
>>> Thank in advance,
>>> _mike
>>>
>>>
>>>
>>>
>>>
>>> ___
>>> 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] online .swf generator

2008-11-26 Thread Paul Andrews
I see. When I've been producing banner ads for people they are so picky 
about layouts and file sizes, I doubt I could build an automated tool to 
make banners that would make them happy. I've had quite a few discussions 
with designers who are happy to insist that some graphic should 'obviously' 
be one pixel to the left and two higher, plus the fade in needs to happen a 
few frames earlier..


Interesting idea.

Good luck.

Paul
- Original Message - 
From: "Michael Stocke" <[EMAIL PROTECTED]>

To: "Flash Coders List" 
Sent: Wednesday, November 26, 2008 7:45 PM
Subject: RE: [Flashcoders] online .swf generator



The client certainly will be paying for this, as I won't be working for
free ;-). What I meant was, they are open to purchasing a third party
application to generate the .swf in addition to my development costs.

If I understand your remark at the end, the requirements of the job are
that the user needs to obtain a self-contained .swf from a web-based
tool that they can take with them and use somewhere else without
restrictions or dependencies.


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Paul
Andrews
Sent: Wednesday, November 26, 2008 1:57 PM
To: Flash Coders List
Subject: Re: [Flashcoders] online .swf generator

"The client is open to purchasing an application depending on the cost."

This is going to cost your client $$ whether there's an existing
application
out there or not.

I'm curious why it has to generate a .swf . Can't you just have a
generic
application that builds the templated output from a data file?

Paul

- Original Message - 
From: "Michael Stocke" <[EMAIL PROTECTED]>

To: 
Sent: Wednesday, November 26, 2008 4:37 PM
Subject: [Flashcoders] online .swf generator


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 

Re: [Flashcoders] AIR execute file .bat

2008-11-26 Thread Ricky Blaha
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

~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


RE: [Flashcoders] online .swf generator

2008-11-26 Thread Michael Stocke
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-26 Thread Michael Stocke
The client certainly will be paying for this, as I won't be working for
free ;-). What I meant was, they are open to purchasing a third party
application to generate the .swf in addition to my development costs.

If I understand your remark at the end, the requirements of the job are
that the user needs to obtain a self-contained .swf from a web-based
tool that they can take with them and use somewhere else without
restrictions or dependencies.


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Paul
Andrews
Sent: Wednesday, November 26, 2008 1:57 PM
To: Flash Coders List
Subject: Re: [Flashcoders] online .swf generator

"The client is open to purchasing an application depending on the cost."

This is going to cost your client $$ whether there's an existing
application 
out there or not.

I'm curious why it has to generate a .swf . Can't you just have a
generic 
application that builds the templated output from a data file?

Paul

- Original Message - 
From: "Michael Stocke" <[EMAIL PROTECTED]>
To: 
Sent: Wednesday, November 26, 2008 4:37 PM
Subject: [Flashcoders] online .swf generator


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] SWFobject and SWFaddress

2008-11-26 Thread coker todd
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; ihttp://chattyfig.figleaf.com/mailman/listinfo/flashcoders


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

2008-11-26 Thread david costard
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


Re: [Flashcoders] online .swf generator

2008-11-26 Thread Paul Andrews

"The client is open to purchasing an application depending on the cost."

This is going to cost your client $$ whether there's an existing application 
out there or not.


I'm curious why it has to generate a .swf . Can't you just have a generic 
application that builds the templated output from a data file?


Paul

- Original Message - 
From: "Michael Stocke" <[EMAIL PROTECTED]>

To: 
Sent: Wednesday, November 26, 2008 4:37 PM
Subject: [Flashcoders] online .swf generator


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 





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


Re: [Flashcoders] AIR execute file .bat

2008-11-26 Thread david costard
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


Re: [Flashcoders] online .swf generator

2008-11-26 Thread Glen Pike
Could you create your templates in MXML, then for each user generate a 
custom MXML "application" that you compile on the server with the Flex SDK?


Or for AS2, you can do something like this with MTASC - someone posted 
this the other day?


HTH

Glen


Axel Aigret wrote:

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 
 




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


Re: [Flashcoders] online .swf generator

2008-11-26 Thread Axel Aigret

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  

 




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] online .swf generator

2008-11-26 Thread Michael Stocke
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  

 



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