Re: [Flashcoders] Flex 2 SDK

2006-07-04 Thread jaco - pixeldump
Hi John download the docs (last zip) here: http://www.adobe.com/support/documentation/en/flex/index.html#package it contains all docs (references, userguide, as3 doc and so on), look into flex2_buildanddeploy.pdf - using the flex compilers :) Jaco - pixeldump - Original Message

Re: [Flashcoders] Delegate and [self] Argument

2006-07-04 Thread Steve Webster
Hi Jeff, In the delegate class from Steve Webster, there is this line: var fullArgs:Array = arguments.concat(self.extraArgs, [self]); I was wondering if anyone knows why there is a reference to self passed to the handler function. Or how might this be useful? This extra argument could cause a

[Flashcoders] Multiple instances of ExternalInterface in IE

2006-07-04 Thread Alexis Glass
I have two entirely separate SWFs on a page, both using ExternalInterface to interface with my JavaScript. Things seemed just fine under Firefoxi, but under IE I get an Out of memory at line: 56 error following a really long delay when the page is unloaded as I try to navigate to another

Re: [Flashcoders] LocalConnection to multiple swfs

2006-07-04 Thread NEILHIGHLEY . COM
have them register with the dispatcher and receive a unique ID, that way you can target updates to specific listeners. On 03/07/06, Danny Kodicek [EMAIL PROTECTED] wrote: can they all connect to the same LocalConnection object? No. For every connection (send and receive) there must be a

RE: [Flashcoders] LocalConnection to multiple swfs

2006-07-04 Thread Danny Kodicek
have them register with the dispatcher and receive a unique ID, that way you can target updates to specific listeners. Does that work across multiple swfs? How can the dispatcher know what is a unique id? Actually, at the moment it looks like I can drop localConnections altogether, which I

[Flashcoders] Out of Office June 30 - July 4

2006-07-04 Thread tracey
I will be out of the office June 30 through July 4, returning July 5th in the a.m. I will return all messages and emails on Weds. July 5th. Thanks - Tracey Halvorsen fastspot ___ Flashcoders@chattyfig.figleaf.com To change your subscription options

RE: [Flashcoders] euro symbol fight

2006-07-04 Thread Bernard Visscher
The escaped HTML Euro sign is %E2%82%AC So you could use something like: my_txt.htmlText = unescape(%E2%82%AC); Greetz, Bernard -Oorspronkelijk bericht- Van: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Namens Gabriel Verzonden: dinsdag 4 juli 2006 9:10 Aan: Flashcoders mailing

Re: [Flashcoders] Problems with IE starting a sound stream.

2006-07-04 Thread Orindom Dhar
is there any solution to this problem even when server sends Transfer-Encoding: Chunked? Is it any bug with flash player upto ver 8.0 ? Is there any possible solution at the client side? Please help! regards, Arin Alexis Glass [EMAIL PROTECTED] wrote: Is

Re: [Flashcoders] Problems with IE starting a sound stream.

2006-07-04 Thread Marc Hoffman
Test on other computers. I had the same problem and it was caused by a ZoneAlarm setting on the client computer. Marc Hoffman At 02:41 AM 7/4/2006, you wrote: is there any solution to this problem even when server sends Transfer-Encoding: Chunked? Is it any bug with flash player upto ver 8.0

[Flashcoders] Textfield clearing on Enter key

2006-07-04 Thread Andreas Rønning
God knows why this is such a hassle: I have a chat app that sends messages when the user hits enter. The input field is multiline (and needs to be, for the sake of elegance). Hitting enter inserts a line break in the text regardless of what i do right now. The method reads something like

RE: [Flashcoders] Textfield clearing on Enter key

2006-07-04 Thread Danny Kodicek
God knows why this is such a hassle: I have a chat app that sends messages when the user hits enter. The input field is multiline (and needs to be, for the sake of elegance). Hitting enter inserts a line break in the text regardless of what i do right now. The method reads something like

Re: [Flashcoders] Textfield clearing on Enter key

2006-07-04 Thread janosch
Hello, the text length is 0, becaus at this time, there is no linebrake in the textfield. The Key-Listener is faster than the textfield. Try this: _root.createTextField(txt, 1, 0, 0, 100, 100); _root.txt.type = input; _root.txt.multiline = true; _root.txt.wordWrap = true; _root.clearText =

Re: [Flashcoders] 50 stars blinking... app gets too slow

2006-07-04 Thread Marcelo de Moraes Serpa
Very good example Bernard. Thank you :) Marcelo. On 7/3/06, Weyert de Boer [EMAIL PROTECTED] wrote: Works well if you ask me. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

Re: [Flashcoders] replacing the Library palette?

2006-07-04 Thread Lanny McNie
The library panel is not written in JSFL. JSFL has access to most of the properties of the library and its symbols, but not the symbol preview. There are some helper tools, such as ALF which can make your life easier. On 7/2/06, keitai guy [EMAIL PROTECTED] wrote: Is the FlashIDE library

Re: [Flashcoders] replacing the Library palette?

2006-07-04 Thread Lanny McNie
Alf can be found at http://osflash.org/alf On 7/4/06, Lanny McNie [EMAIL PROTECTED] wrote: The library panel is not written in JSFL. JSFL has access to most of the properties of the library and its symbols, but not the symbol preview. There are some helper tools, such as ALF which can make

Re: [Flashcoders] Problems with IE starting a sound stream.

2006-07-04 Thread Orindom Dhar
Tested on lot of client computers,which didn't have zone alarm installed in them. The problem seems to lie elsewhere, not in zonealarm. anyone there,would be grateful for some light thrown into this. regards, Arin Marc Hoffman [EMAIL PROTECTED] wrote: Test on other

[Flashcoders] XML Menu Tutorials-....

2006-07-04 Thread Jose Maria Barros
Hello, anyone knows a good tutorial to learn how to develop a menu in xml..i ve seen the kirupa one..but i want to know how i can animate every element in the menu.. Thanks in advance and sorry for the newbie question. ___

RE: [Flashcoders] replacing the Library palette?

2006-07-04 Thread Stacey Mulcahy
You could easily write yourself a jfsl command that would find the item in the library - find out which item is currently selected in the document, loop through the library items, select the match - etc. Add a mapping to a key combo and yer golden. -Original Message- From: [EMAIL

Re: [Flashcoders] v.8 SWF loading v.7 SWF issue

2006-07-04 Thread Marcelo de Moraes Serpa
Ok, I solved it. Aparently this happened becouse I was exporting for Flash 7 and compiling to flash 8 in mtasc (-version 8). Now I exported to Flash 7 and compiled using the -version 7 option in mtasc. When I exported the swf to Flash 8, mtasc throwed a Input Swf is corrupt, that´s why I was

[Flashcoders] Dispatch method don't working

2006-07-04 Thread Weyert de Boer
Hello I have been working on a website where I make heavy use of dispatching events and such. Works all nice. But out of the dark some part of the code got broken. I am using a AS2 class around my buttons so it will dispatch a event at all clipevent methods. Sample snippet: // dispatch

Re: [Flashcoders] 50 stars blinking... app gets too slow

2006-07-04 Thread Count Schemula
Also, FWIW, I think I've heard that brightness is a lot less processor intensive than alpha. Assuming that we have access to the brightness property. On 7/4/06, Marcelo de Moraes Serpa [EMAIL PROTECTED] wrote: Very good example Bernard. Thank you :) Marcelo. On 7/3/06, Weyert de Boer [EMAIL

[Flashcoders] AS3 - Missing

2006-07-04 Thread Marcos Neves
Is this the place to talk about AS3? If not, where would be? The concept of any movieClip be a class is very powerfull, given the ability to do new ClassName to create a copy of any clip. But the Auto Generated class and the fact that you can´t have two movieclips with the same class is

Re: [Flashcoders] Dispatch method don't working

2006-07-04 Thread John Giotta
I wish I could replicate this for you today to test, but does you timeline goto onRelease too? ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] Problem while trying to connect to webservice...

2006-07-04 Thread MJorge
Hello, I´m getting the following error message while trying to connect and consume a web service: There are no valid services/ports in the WSDL file What does this mean? How can i solve it. Thanks. -- Mário Jorge Icq: 164987050 Msn: [EMAIL

Re: [Flashcoders] Dispatch method don't working

2006-07-04 Thread Weyert de Boer
John Giotta wrote: I wish I could replicate this for you today to test, but does you timeline goto onRelease too? Yes, the button movieclip gets updated. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

[Flashcoders] BitmapData and security.allowDomain

2006-07-04 Thread INK .
Hi, List! There is an issue with loading an extermal JPEGs form a remote server. It seems to be a bug. I am loading a JPG image to a movie clip and cloning it using Bitmap.draw(input_mc). (SWF is hosted on domain A, JPG hosted on domain B.) In this case loaded JPEG behaves exactly as an SWF

Re: [Flashcoders] BitmapData and security.allowDomain

2006-07-04 Thread Zeh Fernando
There is an issue with loading an extermal JPEGs form a remote server. It seems to be a bug. I am loading a JPG image to a movie clip and cloning it using Bitmap.draw(input_mc). (SWF is hosted on domain A, JPG hosted on domain B.) In this case loaded JPEG behaves exactly as an SWF loaded from a

[Flashcoders] Shared Fonts issue... textformat object only works in dynamically created textfields!

2006-07-04 Thread Marcelo de Moraes Serpa
I really need some quick help here as I need to deploy this app for tomorrow! I´m using Shared Fonts and loading the swf with the exported font symbols beforehand, in the main preloader. In the subsequent forms (swfs) I´m using the SharePoint strategy, where I put only a dummy MovieClip one

Re: [Flashcoders] Shared Fonts issue... textformat object only works in dynamically created textfields!

2006-07-04 Thread Michael Bedar
i assume you mean... tf = new TextFormat() tf.font = myfont mytextfield.setNewTextFormat(tf) Did you try using mytextfield.setTextFormat(tf) AFTER you change the text? On Jul 4, 2006, at 9:20 PM, Marcelo de Moraes Serpa wrote: I really need some quick help here as I need to deploy this

Re: [Flashcoders] Shared Fonts issue... textformat object only works in dynamically created textfields!

2006-07-04 Thread Marcelo de Moraes Serpa
Oh yes sorry... my mistake. Yes, sure. I actually don´t touch the textfield´s text. On 7/4/06, Michael Bedar [EMAIL PROTECTED] wrote: i assume you mean... tf = new TextFormat() tf.font = myfont mytextfield.setNewTextFormat(tf) Did you try using mytextfield.setTextFormat(tf) AFTER you change

Re: [Flashcoders] Shared Fonts issue... textformat object only works in dynamically created textfields!

2006-07-04 Thread Marcelo de Moraes Serpa
By saying that I mean that it stays with the text I´ve set up in the flash ide... On 7/4/06, Marcelo de Moraes Serpa [EMAIL PROTECTED] wrote: Oh yes sorry... my mistake. Yes, sure. I actually don´t touch the textfield´s text. On 7/4/06, Michael Bedar [EMAIL PROTECTED] wrote: i assume you

Re: [Flashcoders] Shared Fonts issue... textformat object only works in dynamically created textfields!

2006-07-04 Thread Michael Bedar
well, in that case setNewTextFormat definitely won't work.. if a normal setTextFormat does not work, i'm out of ideas.. On Jul 4, 2006, at 9:28 PM, Marcelo de Moraes Serpa wrote: Oh yes sorry... my mistake. Yes, sure. I actually don´t touch the textfield´s text. On 7/4/06, Michael Bedar

Re: [Flashcoders] Multiple instances of ExternalInterface in IE

2006-07-04 Thread Alexis Glass
In absence of a response, I thought I'd post more results from my investigation. Debugging IE's scripts, we come across the culprit - ExternalInterface saves the previous unload handler and installs its own. Its own unload handler calls the saved unload handler after freeing up all its

Re: [Flashcoders] euro symbol fight

2006-07-04 Thread Gabriel
thanks Bernard, but this is not the problem. I have a table in a database, where I write this text this will cost you 50€. when I retrieve this info from AMFPHP I receive the whole text except for € which cames as a square. thanks, GaB Bernard Visscher wrote: The escaped HTML Euro sign

Re: [Flashcoders] euro symbol fight

2006-07-04 Thread Serge Jespers
Does that font have the euro symbol? I think what you're describing could mean it doesn't have the font symbol... Serge thanks Bernard, but this is not the problem. I have a table in a database, where I write this text this will cost you 50€. when I retrieve this info from AMFPHP I

Re: [Flashcoders] euro symbol fight

2006-07-04 Thread Gabriel
thanks Serge yes, it has the symbol. And is not the embed problem... thanks GaB Serge Jespers wrote: Does that font have the euro symbol? I think what you're describing could mean it doesn't have the font symbol... Serge thanks Bernard, but this is not the problem. I have a table in a