[Flashcoders] Get coordinates from illustration

2007-07-04 Thread Ellen Sundh
Hi! I would like to get all the coordinates from a shape made with the Bezier tool in Flash or Illustrator into Flash so I can use them to create a dynamic shape in Flash with the curveTo syntax. Does anyone know if there is a tool or script outthere doing this? Thanks in advance! Ellen

[Flashcoders] sync flv with swf

2007-04-04 Thread Ellen Sundh
Hi! I have an identical movie in a swf file and as a flv. They loaddifferently but I was wondering if there is a way to match the frames so that the flv goes to the same frame in the movie as the swf? The only option I can think is doing it by hand, frame by frame. Are there any other

[Flashcoders] Dynamic url for shared movie clips

2006-11-27 Thread Ellen Sundh
Hi! I want to be able to change the url of my movie clip that is imported from a shared library in runtime. Instead of entering the url for runtime sharing in the authoring enviroment in hte Linkage dialouge box, I want to do it on the fly. Is this possible? Thanks in advance! Ellen Sundh

Re: [Flashcoders] Dynamic url for shared movie clips

2006-11-27 Thread Ellen Sundh
Thanks! Looks interesting! Ellen ... Ellen Sundh | Flash Developer | Great Works Mobile: +46 73 200 40 73 | Office: +46 8 528 077 73 Address: Sveavägen 66 | SE-111 34 Stockholm www.greatworks.se Sönke Rohde wrote: Hi

Re: [Flashcoders] Dynamic url for shared movie clips

2006-11-27 Thread Ellen Sundh
... Ellen Sundh | Flash Developer | Great Works Mobile: +46 73 200 40 73 | Office: +46 8 528 077 73 Address: Sveavägen 66 | SE-111 34 Stockholm www.greatworks.se Jake Prime wrote: Hi Sönke, I had this problem on a project a while back. Unless

[Flashcoders] Check visible characters in textfield

2006-10-27 Thread Ellen Sundh
string. I use this code, but it returns the same number of characters even though the textfield displays less characters. latin1 = ÀÁÂÃÄÅ..; trace(latin1 + latin1.length); txt_tf.text = latin1; trace(txt_tf.text + txt_tf.text.length); Thanks in advance! Ellen -- Ellen Sundh Flash Developer

Re: [Flashcoders] Check visible characters in textfield

2006-10-27 Thread Ellen Sundh
) + is not embedded); } Ellen Sundh escribió: Hi! I wonder if there is a way to count characters visible in a textfield? I have a text where not all characters are embeded in the textfield and I want to check how many that are.. So it would be great if there was I way to check the length of the text

[Flashcoders] PNG sequence running slow the first time!

2006-10-08 Thread Ellen Sundh
? It is Flash 8 project and I use cacheAsBitmap = true; on the movie clip that loads in the PNG sequence. Thanks in advance! -- Ellen Sundh Flash Developer Great Works . . . . . . . . . . . . Mobile: +46 73 200 40 73 Office: +46 8 528 077 76 Sveavägen 66 111 34 Stockholm

[Flashcoders] test

2006-09-21 Thread Ellen Sundh
Test -- Ellen Sundh Flash Developer Great Works . . . . . . . . . . . . Mobile: +46 73 200 40 73 Office: +46 8 528 077 76 Sveavägen 66 111 34 Stockholm

[Flashcoders] Webcam stream in Flash

2006-09-21 Thread Ellen Sundh
can stream Windows Media Player in Flash but I am not sure how. Is it possible to put the WMP in an iframe on top of Flash or underneath? The project will be in Flash Player 8. Does anyone have any similar experience of a solution like this? Thanks in advance! -- Ellen Sundh Flash Developer

[Flashcoders] Invert coded mask?

2006-09-21 Thread Ellen Sundh
Hi! I created a mask with setMask to mask another movieclip. I wonder if it is possible with code to invert that mask? So instead of having a circle as a mask, that circle becomes a hole in a square. Like punchhole style. Thanks in advance! Ellen -- Ellen Sundh Flash Developer Great Works

Re: [Flashcoders] Embed polish characters in Font Symbol

2006-08-31 Thread ellen . sundh
Hi! For everyone who had this problem I can tell you I found a solution. Remove the Font Symbol in your library and refer to the font directly in your css file. If it is css you use. Embed your fonts in a blank textfield on the Stage. Good luck! . . . . . . . . . . . . starring: Ellen Sundh

[Flashcoders] Embed polish characters in Font Symbol

2006-06-28 Thread ellen . sundh
; var myformat:TextFormat = new TextFormat(); myformat.font = myFont; myformat.size = 20; mytext.embedFonts = true; mytext.text = hrfùèÈþÞ €£$ÅÄÖåäöèÈþÞ; mytext.setTextFormat(myformat); Thanks in advance! Ellen Sundh ___ Flashcoders

Re: [Flashcoders] Embed polish characters in Font Symbol

2006-06-28 Thread ellen . sundh
Yes, that is what I do and it doesn't work. It is Flash 8 by the way. If that makes a difference.. I have done a lot of googling on this and it's seems more people had the same problem... Anyone knows the solution? [EMAIL PROTECTED] 6/28/2006 12:17 PM If I manually create the textfield and

Re: [Flashcoders] Zinc install to startup folder

2006-06-14 Thread ellen . sundh
Hi! You can find the path to the start menu on Windows by using this: mdm.System.Paths.startMenu; And then you just copy your application file into this directory and it will run on start up! Ellen . . . . . . . . . . . . . . . . . Email: [EMAIL PROTECTED] I'm writing an application that

Re: [Flashcoders] Zinc install to startup folder

2006-06-14 Thread ellen . sundh
Sorry, these are the right paths to the startUp folder: mdm.System.Paths.commonStartup; mdm.System.Paths.allUsersStartup; Ellen I'm writing an application that works like an auto updater, and it needs to run as the user boots his computer. Does anyone know how i can write a script to add

[Flashcoders] Blur an image gradually

2006-06-12 Thread ellen . sundh
Hi! I wonder if it's possible to blur different parts of an image? I am quite sure I have seen a Flash 8 example of this.. There seems to be little you can do with the BlurFliter class.. Would it work to combine the BlurFliter with the Matrix class and define which areas in the matrix that

Re: [Flashcoders] Blur an image gradually

2006-06-12 Thread ellen . sundh
I got the bluring to work with an image, from looking at this tutorial: http://www.quasimondo.com/archives/000564.php I am gonna apply the blur to a scrolling menu, my worry is that it will demand a lot of CPU since it needs to update the blurfilter on the scrolling list of menu items. I will see