[Flashcoders] using flash components in flashdevelop

2009-08-21 Thread Hans Wichman
Hi list, I'm trying to use flashcomponents directly without going through the loop of creating an intermediate fla with the components in it. I've added all the cs4 swc files as libraries in flashdevelop, but it still cannot find the components. Starting to wonder if it is even possible any

[Flashcoders] Re: using flash components in flashdevelop

2009-08-21 Thread Hans Wichman
Update, if I export the User Interface.fla in C:\Program Files\Adobe\Adobe Flash CS4\Common\Configuration\Components to swc and use that one instead of all the separate swc's in C:\Program Files\Adobe\Adobe Flash CS4\Common\Configuration\Components\User Interface it works just fine... On Fri, Aug

[Flashcoders] Syntax coloring Eclipse

2009-08-21 Thread Jiri
I am forced to use eclipse, but i am used to work with a black background. I changed the syntax coloring in the eclipse preferences to match my preferences, but the symbols . , ect.. are all black and there is not an option provided to changes there color. If you look at the Java syntax

[Flashcoders] Missing wait(), notify(), sleep() in AS3

2009-08-21 Thread Alexander Farber
Hello, I have an AS3 app which continuously send HTTP requests to a server. If there is a HTTP request in progress already and it's not important (kind of I am alive event) I would like to cancel it. But if the ongoing request is important, I'd like to wait its completion before I send another

[Flashcoders] Weird htmlText line break behavior

2009-08-21 Thread Joel Stransky
I'm encountering an odd problem in as3/fp9-10 when dealing with embedded fonts, condensed whitespace, style sheet objects and br / tags. I wanted to see if you guys have heard of it or can verify it as a bug. I have a textfield set up as such. The intent is to remove all p tag indents and get

[Flashcoders] Flash security issue

2009-08-21 Thread Bill Jones
I am creating a Demo file using EyeWonder's AdWonder. It generates an html with accompanying swf and support files. I can copy the html and file folder to a disk so the client can view the finished piece locally on a stand alone laptop. Unfortunately, to view it from a CD, you have to adjust

Re: [Flashcoders] Flash security issue

2009-08-21 Thread Gregory Boland
create an .exe file so that when you run it from a CD you can run it standalone. Not sure about what your using, if it allows you to do that but maybe if you create a wrapper swf and load the other swf into your wrapper swf you can create an .exe file greg On Fri, Aug 21, 2009 at 9:52 AM,

Re: [Flashcoders] Flash security issue

2009-08-21 Thread Bill Jones
Unfortunately, AdWonder controls the entire process. It builds the files and I simply download a stuffit file that contains the html, swf and support files. On 8/21/09 10:08 AM, Gregory Boland breakfastcof...@gmail.com wrote: create an .exe file so that when you run it from a CD you can run it

Re: [Flashcoders] Flash security issue

2009-08-21 Thread Gregory Boland
thats why i'm saying create a wrapper file for that swf. take the swf that is given to you from ad wonder and import it into a .fla file. then make an .exe file out of that. On Fri, Aug 21, 2009 at 10:13 AM, Bill Jones bjo...@backemarketing.comwrote: Unfortunately, AdWonder controls the

Re: [Flashcoders] Syntax coloring Eclipse

2009-08-21 Thread Matt Gitchell
I used this as a starting point when I was doing my FDT customization: http://blog.ansuz.nl/index.php/tag/fdt/ I don't know how applicable they are to FB, but there it is. Also, a quick Googling yields this link: http://polygeek.com/302_flex_changing-font-colors-in-flex-buildereclipse --Matt On

Re: [Flashcoders] Missing wait(), notify(), sleep() in AS3

2009-08-21 Thread Nate Beck
Flash Player is single threaded... which is why there isn't a sleep command. If you slept and didn't allow other code to execute... your application would just freeze. And that's not what you want. I don't see where the problem is. If I request a url... then get the response. I could just do

Re: [Flashcoders] Missing wait(), notify(), sleep() in AS3

2009-08-21 Thread Ashim D'Silva
Just call your next function in two places... I don't really see the problem. If it's not important just cancel it can call the new function, otherwise, wait for the complete event to fire and then call it... Ashim The Random Lines My online portfolio www.therandomlines.com 2009/8/21 Alexander

Re: [Flashcoders] Weird htmlText line break behavior

2009-08-21 Thread Keith H
Maybe the lettercase of a property is causing an error. myTF.wordwrap = true; //Need to be wordWrap -- Keith H -- www.keith-hair.net Joel Stransky wrote: I'm encountering an odd problem in as3/fp9-10 when dealing with embedded fonts, condensed whitespace, style sheet objects and br /

Re: [Flashcoders] Weird htmlText line break behavior

2009-08-21 Thread Karl DeSaulniers
Or maybe just use br no slash. On the p issue, make sure the paragraph is closed off with a /p and not a p / Karl Sent from losPhone On Aug 21, 2009, at 10:42 PM, Keith H kh...@nc.rr.com wrote: Maybe the lettercase of a property is causing an error. myTF.wordwrap = true; //Need to be