Re: [Flashcoders] API Interface in SWC...

2008-05-29 Thread EECOLOR
API's tend to be exposed through Interfaces. This allows you to program agains an interface, keeping the implementation (concrete class) out of sight. You wrote: *sumTwoNumbers(numA, numB) { baseApp.sumTwoNumbers(numA,numB) }* You should make sure that baseApp is typed as an interface (for

[Flashcoders] Powerpoint to swf

2008-05-29 Thread Paul Andrews
What are my best options for encoding individual slides (the complete presentation) to separates swfs? Would my options change if the controlling code were in As2 or AS3? Currently I realise that loading a converted AS2 swf into an AS3 project won't allow me to pause the swf mid-flight.

RE: [Flashcoders] Cross domain AS3

2008-05-29 Thread Romuald Quantin
I guess you need a crossdomain.xml file on your server: http://www.adobe.com/devnet/flashplayer/articles/fplayer9_security.html Romu -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of SJM Sent: 29 May 2008 10:12 To: Flash Coders List Subject: [Flashcoders]

[Flashcoders] Cross domain AS3

2008-05-29 Thread SJM
Hi Guys My question; Is it possible in an XML file, to have an absolute link to an image ie. /banner/flash/uploadedimage/45/sunset.jpg. I need the url to be capable of being absolute and to contain the domain e.g. http://www.mydomain.co.uk/banner/flash/uploadedimage/45/sunset.jpg I

[Flashcoders] RE: SALE 86% OFF

2008-05-29 Thread VIAGRA INC
___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] Flash banner / layer on top - clickthrough?

2008-05-29 Thread Sander Schuurman
Hi all, What's the latest status on transparent flash banners/layers? Can you click through them to the underlaying HTML? Thought it wasn't possible, but came across an example that worked in IE7. On Firefox it wasn't possible, although I thought sometimes it showed some kind of behaviour

Re: [Flashcoders] Re: Assets quality Question.

2008-05-29 Thread Omar Fouad
it's the same, when I use small vector assets, they use to be blurry, and I think they are the reason of less performance when doing motion tweens. On 5/28/08, Glen Pike [EMAIL PROTECTED] wrote: Could you not use vector assets? Omar Fouad wrote: What do you mean by Crisp. On 5/27/08,

[Flashcoders] AS3 - Dynamic Variable?

2008-05-29 Thread SJM - Flash
Another one for you... I am having some trouble with dynamic variables, basically I expect this['xmlClass.xmlData.RecImageW' + 1] to mean xmlClass.xmlData.RecImageW1, but it seems it does not? // VALUES xmlClass.xmlData.RecImageW1 = 120; xmlClass.xmlData.RecImageW2 = 1220;

Re: [Flashcoders] AS3 - Dynamic Variable?

2008-05-29 Thread Cedric Muller
for (var i=1; i=5; i++) { trace(this.xmlClass.xmlData[RecImageW+i]); } should work hth, cedric Another one for you... I am having some trouble with dynamic variables, basically I expect this['xmlClass.xmlData.RecImageW' + 1] to mean xmlClass.xmlData.RecImageW1, but it seems it

[Flashcoders] Letter spacing in input fields, is it possible?

2008-05-29 Thread Sidney de Koning
Hi List, Does anyone know if it is possible to have letter spacing in an input field (a field where you type in text) in AS3. I know you can do it on a dynamic or a normal textfield. I also tried in the IDE, but that does not work. (with embedded font) The code i have is this, it all works

Re: [Flashcoders] Letter spacing in input fields, is it possible?

2008-05-29 Thread Glen Pike
I am not 100% on whether letter-spacing works as I have not tried it, but you may have to reapply the format each time the text in the input field is changed. Add a change listener Sidney de Koning wrote: Hi List, Does anyone know if it is possible to have letter spacing in an input field

RE: [Flashcoders] Understanding Error 2036

2008-05-29 Thread Merrill, Jason
%SYSTEMROOT%:\Documents and Settings\username\Application Data\Macromedia\Flash Player\Logs hmm yeah, not on my machine, and I have the flash 9 debug player. I also saw the Adobe article to fix it if the log file isn't being created, but I'm not going to mess with all that on my system to test

Re: [Flashcoders] Flash banner / layer on top - clickthrough?

2008-05-29 Thread Helmut Granda
Could you show us the example you came across? You can always set up your SWF to talk to JS and then to the underlying HTML. On Thu, May 29, 2008 at 5:49 AM, Sander Schuurman [EMAIL PROTECTED] wrote: Hi all, What's the latest status on transparent flash banners/layers? Can you click

[Flashcoders] Flex or Flash better for this?

2008-05-29 Thread Ali Drongo
Hi there, I'm starting work on a project that displays information from a database, generating text fields and loading swf clips and pngs dynamically with the layout defined in the data passed from the database (this will specify an xml file from a library that holds the layout for the

RE: [Flashcoders] Flash banner / layer on top - clickthrough?

2008-05-29 Thread Sander Schuurman
This is the example. http://www.bandbreed.nl/client/clubmed/ takes quit a while to load! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Helmut Granda Sent: Thursday, 29 May 2008 16:39 To: Flash Coders List Subject: Re: [Flashcoders] Flash banner /

Re: [Flashcoders] Understanding Error 2036

2008-05-29 Thread Helmut Granda
hmm yeah, not on my machine, and I have the flash 9 debug player. I also saw the Adobe article to fix it if the log file isn't being created, You can also just create the folder and an empty file flashlog.txt and that should fix the issue. but I'm not going to mess with all that on my

RE: [Flashcoders] Flex or Flash better for this?

2008-05-29 Thread Merrill, Jason
1) is it easy to update the MXML dynamically to generate textfields and movieclips that display loaded SWFs /PNGs? Sure you can build MXML on the fly with a server app, but you still have to compile the MXML into a .swf... so unless you automate that (which you can, but it's overkill for what

RE: [Flashcoders] Understanding Error 2036

2008-05-29 Thread Merrill, Jason
You can also just create the folder and an empty file flashlog.txt and that should fix the issue. Nope. I did that, created a flashlog.txt in the folder described by Glex, created new Flash file with your sample code, put a png file next to it called layout.png and when I run the .fla, my Flash

Re: [Flashcoders] Understanding Error 2036

2008-05-29 Thread Helmut Granda
ouch I didn't know you would get that reaction from flash. Sorry for giving you misleading information for your case. At work that is what we all do when the flashlog is created and never had that issue. Thanks for the heads up! I let you all know what I find out. On Thu, May 29, 2008 at

Re: [Flashcoders] Flex or Flash better for this?

2008-05-29 Thread Paul Andrews
Flex mxml is compiled into a swf and that is run - the mxml is not normally deployed, so dynamic updating of mxml is not normally done (there are server-side solutions to do that, but I wouldn't recommend them). Given what you've said about your application, unless you are able to use the

Re: [Flashcoders] Letter spacing in input fields, is it possible?

2008-05-29 Thread Matheus Gorino
Maybe a typo error? Check your code: var formatInput:TextFormat = new TextFormat( ); formatInput.font = AvantGardeLight; formatInput.color = 0x00; format.letterSpacing = 1; formatInput.size = 14; searchFieldCountry_txt.defaultTextFormat = formatInput; See that you used format instead of

[Flashcoders] FLV playing faster than it should

2008-05-29 Thread Matheus Gorino
Hi! I'm having a strange issue with FLV in 3 recent projects and I don't have any idea about why this is happening. The problem is that when I pause a FLV stream and then unpause it, it plays much faster then it should until certain point, and then normalize. Seens that it plays fast until it

[Flashcoders] SOLVED: Letter spacing in input fields, is it possible?

2008-05-29 Thread Sidney de Koning
Been working to much and too long! Thanks for the tip, it worked :) Cheers, Sid On May 29, 2008, at 7:23 PM, Matheus Gorino wrote: Maybe a typo error? Check your code: var formatInput:TextFormat = new TextFormat( ); formatInput.font = AvantGardeLight; formatInput.color = 0x00;

[Flashcoders] full screen

2008-05-29 Thread sense co moh
Hi Everbody can anyone tell me how to make button from flash to make the movie fullscreen and in same time hide thr bars like title bar and the address bar like this site http://www.asylum.fr/#/accueil/ in this site there is btn down when click on it all the bars will hide . Bassam

Re: [Flashcoders] full screen

2008-05-29 Thread eric e. dolecki
http://www.adobe.com/devnet/flashplayer/articles/full_screen_mode.html On Thu, May 29, 2008 at 1:57 PM, sense co moh [EMAIL PROTECTED] wrote: Hi Everbody can anyone tell me how to make button from flash to make the movie fullscreen and in same time hide thr bars like title bar and the address

Re: [Flashcoders] Firefox popup blocker and flash 9

2008-05-29 Thread Dan Wade
Turning on popup blocker shouldn't block user initiated clicks that call a js function to open a new window. Or, popup blocker should allow for a simple getURL(url, _blank). I'm finding these calls are being blocked some cases in Firefox on PC's with flash player 9. -d On 5/28/08 4:46 PM,

Re: [Flashcoders] Firefox popup blocker and flash 9

2008-05-29 Thread Viktor Hesselbom
Hi Dan, Firefox blocks popups that aren't user-generated. Firefox's blocker only opens popups that tries to open on a onRelease event. So not automatic not onPress. Only onRelease / Viktor H On Fri, 30 May 2008 00:09:42 +0200, Dan Wade [EMAIL PROTECTED] wrote: Turning on popup blocker

Re: [Flashcoders] Firefox popup blocker and flash 9

2008-05-29 Thread Glen Pike
Have you read the comments on the blog post: http://skovalyov.blogspot.com/2007/01/how-to-prevent-pop-up-blocking-in.html allowScript access may need setting as an attribute when you embed Flash You may need to specify a full URL wmode may have an effect. some more there too. Dan Wade

Re: [Flashcoders] Firefox popup blocker and flash 9

2008-05-29 Thread Claus Wahlers
Dan Wade wrote: Turning on popup blocker shouldn't block user initiated clicks that call a js function to open a new window. Or, popup blocker should allow for a simple getURL(url, _blank). I'm finding these calls are being blocked some cases in Firefox on PC's with flash player 9. The Flash