[flexcoders] Re: Flex Builder 3 Beta2 / Amfphp / services-config.xml

2007-10-01 Thread herklano
Bump, i have the same problem! :( worked fine in previous versions too. regards, herculano --- In flexcoders@yahoogroups.com, Morten Madsen [EMAIL PROTECTED] wrote: Hi Group! After installing the new Flex Builder 3 beta2 one of my projects can't compile anymore I use amfphp, described as

[flexcoders] Re: Flex Builder 3 Beta2 / Amfphp / services-config.xml

2007-10-01 Thread herklano
hi, i have sorted it out using a class instead of the .xml method. RemotingConnection.as package connection { import flash.net.NetConnection; import flash.net.ObjectEncoding; public class RemotingConnection extends NetConnection { private

[flexcoders] Re: Flex Builder 3 Beta2 / Amfphp / services-config.xml

2007-10-01 Thread herklano
clarify this? cheers, herculano --- In flexcoders@yahoogroups.com, herklano [EMAIL PROTECTED] wrote: hi, i have sorted it out using a class instead of the .xml method. RemotingConnection.as package connection { import flash.net.NetConnection; import flash.net.ObjectEncoding

[flexcoders] Flex 3 beta 2 - Black Background on Initialize!?

2007-10-01 Thread herklano
hi, why is the background black on initialize in the Flex 3 Beta 2 ??? anyone knows how to get rid of this? cheers, herculano

[flexcoders] Re: Flex 3 beta 2 - Black Background on Initialize!?

2007-10-01 Thread herklano
=absolute backgroundColor=0xFF working fine now :D cheers, herculano --- In flexcoders@yahoogroups.com, Bjorn Schultheiss [EMAIL PROTECTED] wrote: Use the background-color compiler setting/option cheers, Bjorn On 02/10/2007, at 11:36 AM, herklano wrote: hi, why

[flexcoders] Re: Strange SWC behavior!

2007-05-21 Thread herklano
Of herklano Sent: Sunday, May 20, 2007 8:25 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Strange SWC behavior! Hi, I have SWC component in Flex made in Flash, that has a this.stop(); command in the timeline of a MovieClip(MC). This command is working perfectly in Flash

[flexcoders] SWFLoader bytesLoaded?

2007-05-21 Thread herklano
hi, using this method: SWFLoader.bytesLoaded does not give a real bytesLoaded number of the swf being loaded! SWFLoader.loaderInfo.bytesLoaded also does not work! Anyway to use bytesLoaded in a SWFLoader component without using a ProgressEvent? I'm using a Event.ENTER_FRAME to build a smooth

[flexcoders] Re: SWFLoader bytesLoaded?

2007-05-21 Thread herklano
] On Behalf Of herklano Sent: Monday, May 21, 2007 12:42 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] SWFLoader bytesLoaded? hi, using this method: SWFLoader.bytesLoaded does not give a real bytesLoaded number of the swf being loaded! SWFLoader.loaderInfo.bytesLoaded also

[flexcoders] Strange SWC behavior!

2007-05-20 Thread herklano
Hi, I have SWC component in Flex made in Flash, that has a this.stop(); command in the timeline of a MovieClip(MC). This command is working perfectly in Flash, but when i run Flex it doesn't work! I ended up adding an extra function in the class of the main MC that is called in the timeline and

[flexcoders] Smooth Preloader

2007-05-20 Thread herklano
Hi, Any tips on how to make a smooth preloader on Flex for an SWF, without the big jumps. Or instead is there a away to check if a SWF is already in cache? i'm trying to use this, but the problem is that when the ProgressEvent stops the animation is not complete: percent -=

[flexcoders] Re: Skinning...

2007-05-19 Thread herklano
hi, i think these 2 sites that can give you some help on skining flex: http://www.scalenine.com/ http://onreflexion.blogspot.com/2007/01/napkin-skins-in-flex_24.html the second one is a really great example. hope it helps, Herculano Campos --- In flexcoders@yahoogroups.com, Scott Barnes

[flexcoders] SWFLoader not loading source

2007-05-15 Thread herklano
hi, i think this must be a very basic question, but i am stuck :( i have a mx:SWFLoader component that loads a swf, but it won't load when i run the flex app. i have tried to change to both the swf flash security settings: local and network, but still no change. i appreciate all your help,

[flexcoders] Re: SWFLoader not loading source

2007-05-15 Thread herklano
@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of herklano Sent: Tuesday, May 15, 2007 10:05 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] SWFLoader not loading source hi, i think this must be a very basic question, but i am stuck :( i have a mx:SWFLoader component that loads

[flexcoders] Re: SWFLoader not loading source

2007-05-15 Thread herklano
in the correct place? Where is the main swf and where is this swf? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of herklano Sent: Tuesday, May 15, 2007 11:19 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: SWFLoader

[flexcoders] Re: how to substitute the old attachmovie()?

2007-04-14 Thread herklano
? As in: import FlashClasses.MenuItem; ... [in your loop] var instance:MenuItem = this[nomeMenu+j] = new MenuItem(); On 10 Apr 2007 09:18:43 -0700, herklano [EMAIL PROTECTED] wrote: i am migrating a project from AS2 to AS3 and had a dynamically built menu and submenus like

[flexcoders] how to substitute the old attachmovie()?

2007-04-10 Thread herklano
i am migrating a project from AS2 to AS3 and had a dynamically built menu and submenus like: item1 | item2 | item3 subitem1-1 | subitem1-2 | subitem1-3 and i used the attachmovie to generate it and to get the main movieclip from the library... for (var i:Number=0; i menuRecordSet.length; i++)

[flexcoders] Re: is there a simple way to center a loaded image?

2007-04-03 Thread herklano
regards, Muzak - Original Message - From: herklano [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, April 02, 2007 11:07 PM Subject: [flexcoders] Re: is there a simple way to center a loaded image? the image is dynamic loaded through a database. i want

[flexcoders] browser() bug?

2007-04-03 Thread herklano
Is this a bug or am i doing something wrong? i have a script where i call a browser() method and it all goes well in debug mode, but when i compile normally it doesn't work! var imageTypes:FileFilter = new FileFilter(Images (*.jpg, *.jpeg, *.gif), *.jpg; *.jpeg; *.gif); var fileTypes:Array =

[flexcoders] Re: is there a simple way to center a loaded image?

2007-04-02 Thread herklano
; _image.maintainAspectRatio = true; _image.setStyle('verticalAlign', 'middle'); _image.setStyle('horizontalAlign', 'center'); } } this actually works :) On 02/04/2007, at 3:30 AM, herklano wrote: hi, i'm kinda noob

[flexcoders] Re: is there a simple way to center a loaded image?

2007-04-02 Thread herklano
); } --- In flexcoders@yahoogroups.com, herklano [EMAIL PROTECTED] wrote: hi, i'm kinda noob at coding in general, but i'm trying to work my way to get a image that is loaded in a Canvas to center to it after it has been loaded to it. i'm trying

[flexcoders] Re: is there a simple way to center a loaded image?

2007-04-02 Thread herklano
hi, i tried that aprouch but the problem is that i want to scale the image to the canvas boundaries, so i really think the only way to do it is through AS. --- In flexcoders@yahoogroups.com, B. Korsmit [EMAIL PROTECTED] wrote: Hi Herklano, You probably want to use the horizontalAlign

[flexcoders] Re: is there a simple way to center a loaded image?

2007-04-02 Thread herklano
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of herklano Sent: Monday, April 02, 2007 7:51 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: is there a simple way to center a loaded image? hi, i tried that aprouch

[flexcoders] is there a simple way to center a loaded image?

2007-04-01 Thread herklano
hi, i'm kinda noob at coding in general, but i'm trying to work my way to get a image that is loaded in a Canvas to center to it after it has been loaded to it. i'm trying this but it doesn't work: mx:Canvas x=10