Re: [Flashcoders] hii

2006-05-30 Thread MBDI ICSC Rodrigo E. Curiel Salazar
_ _ _.-')))\\\ ///(((`-._ .-'\\|//`-. .'\:/`. .'\\\V///`.

[Flashcoders] IDE Fonts problem

2006-05-25 Thread MBDI ICSC Rodrigo E. Curiel Salazar
Hi all ! I have the most strange behavior in flash IDE, I have just changed PC, so I passed my project installed the fonts from one PC to the other, well, the thing is: when I open the FLA, if the textfield is using the font normal* (defined by me, and sharing it from fontlibrary.swf) show's

Re: [Flashcoders] list file into a remote folder

2006-05-22 Thread MBDI ICSC Rodrigo E. Curiel Salazar
You could use a server side script, such as PHP or ASP, and then pass the results to flash. Rodrigo On 5/22/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, how can i list all files contained into a remote folder? Thanks,Riccardo ___

Re: [Flashcoders] problems loading an image into a movieclip

2006-05-22 Thread MBDI ICSC Rodrigo E. Curiel Salazar
Hi ! Try: on(click) { ic.loadMovie(penguin.bmp); } On 5/22/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, i have a movie with a button and a movieclip. I want that when i click the button an external image is visualized into the movieclip. I called the movieclip instance ic and in

Re: [Flashcoders] font embedding hell

2006-05-12 Thread MBDI ICSC Rodrigo E. Curiel Salazar
Hi ! You must have the font installed in the system where you are developing. On 5/12/06, August Gresens [EMAIL PROTECTED] wrote: Sorry to bug ya with a newbie question, but the figleaf server seems to be down so I couldn't search the archive. I'm failing miserably to embed any font - as a

[Flashcoders] embedded media with parameters in htmltext

2006-05-10 Thread MBDI ICSC Rodrigo E. Curiel Salazar
Hi ! Is there a way to embed in a htmlText a library item but passing parameters to it? ie. img src=lib_mcparam1=value1param2=value2 Rodrigo ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

[Flashcoders] System.as error ?

2006-05-08 Thread MBDI ICSC Rodrigo E. Curiel Salazar
Hi, I have a issue here, I don't have a clue of what's happening, when I test my movie in flash, everything goes well, but if I clear the ASO and test the movie, I get the following error: **Error** C:\...\System.as: Line 5: The name of this class, 'System', conflicts with the name of another

Re: [Flashcoders] System.as error ?

2006-05-08 Thread MBDI ICSC Rodrigo E. Curiel Salazar
with this kind of thing when working on a network drive. Are you working on one? Can you switch to a local drive? Jim -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of MBDI ICSC Rodrigo E. Curiel Salazar Sent: 08 May 2006 11:28 To: Flashcoders mailing list

Re: [Flashcoders] System.as error ?

2006-05-08 Thread MBDI ICSC Rodrigo E. Curiel Salazar
Tann [EMAIL PROTECTED] wrote: I have had trouble with this kind of thing when working on a network drive. Are you working on one? Can you switch to a local drive? Jim -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of MBDI ICSC Rodrigo E

[Flashcoders] Pixel avatar ?

2006-05-06 Thread MBDI ICSC Rodrigo E. Curiel Salazar
Hi all !! I'm developing a kind of forum and I would like the user to draw it's avatar, but I'd like it to be in a pixel style grid, I know how to do it, I just want to know if you guys have something like this, so I wont have to reinvent the wheel ;) Thanks in advance Rodrigo

Re: [Flashcoders] Inverting colours of the menu

2006-05-05 Thread MBDI ICSC Rodrigo E. Curiel Salazar
Hi, you can download a tween class here: http://hosted.zeh.com.br/mctween/ this class does this and more Rodrigo On 5/5/06, Weyert de Boer [EMAIL PROTECTED] wrote: Hi you have many ways to do that, class tween colorTo() method The Tween doesn't seem to have this method, but I

Re: [Flashcoders] LoadVars problems

2006-05-03 Thread MBDI ICSC Rodrigo E. Curiel Salazar
Hi Riccardo ! your cgi must return you variables in the form of: var1=data of var1var2=data of var 2 and in flash in the onLoad method you use my_lv.onLoad = function(success){ if(success){ trace(this.var1); // this is the var name you defined in your cgi trace(this.var2); } }

Re: [Flashcoders] Accessing the Color Picker in an application.

2006-04-24 Thread MBDI ICSC Rodrigo E. Curiel Salazar
Hi ! Try this: http://www.senocular.com/flash/source.php?id=0.163 Rodrigo On 4/24/06, artkast [EMAIL PROTECTED] wrote: Can you not just make a bitmap color picker and convert it to a movie clip then use something like getRGB()? I can't seem to get this working but it seems logically

Re: [Flashcoders] setNewTextFormat() woes

2006-04-21 Thread MBDI ICSC Rodrigo E. Curiel Salazar
Andreas, if i understood you correct, what you want is this: var format1_fmt:TextFormat = new TextFormat(); format1_fmt.font = Arial; var format2_fmt:TextFormat = new TextFormat(); format2_fmt.font = Courier; var string1:String = Sample string number one.+newline; var string2:String = Sample

Re: [Flashcoders] Zoom effect

2006-04-20 Thread MBDI ICSC Rodrigo E. Curiel Salazar
a mathematic stuff that could compute the ratio of scaling object and position like on the reader... Please save my life ;-) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of MBDI ICSC Rodrigo E. Curiel Salazar Sent: mercredi 19 avril 2006 19

Re: [Flashcoders] Zoom effect

2006-04-19 Thread MBDI ICSC Rodrigo E. Curiel Salazar
check this, closer to what you want, i think http://www.sephiroth.it/file_detail.php?id=131 Rodrigo On 4/19/06, Clint Tredway [EMAIL PROTECTED] wrote: Yup, I am working on a project that has a 'zoom' effect and the Tween class is what I am using to do it. Here is a link that was helpful

Re: [Flashcoders] Create an Empty MC and assign it to a class?

2006-04-19 Thread MBDI ICSC Rodrigo E. Curiel Salazar
Hi ! Try this: in the library, right click on a mc, select linkage, check export for actionscript give it a identifier name, and where it says AS 2.0 Class put the path to your class, hope this helps On 4/19/06, Rifled Cloaca [EMAIL PROTECTED] wrote: All, Thanks in advance for answering