Re: [Flashcoders] Runtime Font embedding

2010-02-19 Thread Geografiek
Ah, that's nice. Using [Embed...] is only possible from Flash CS4, not CS3 right? Willem On 11-feb-2010, at 14:45, Jon Bradley wrote: You can embed a range of characters through AS3. The unicodeRange property of the embed directive handles this. [Embed(source='pathToFond',

[Flashcoders] MultiLevel ContextMenu

2010-02-19 Thread Sumeet Kumar
Hi All, Is there any way in flash to create a multilevel context menu (right click menu)? Any help on this regard would be great Thanks in advance Regards Sumeet Kkumar ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

Re: [Flashcoders] MultiLevel ContextMenu

2010-02-19 Thread Beatrix Krümmer-Frau
Hi Sumeet, maybe the ContentMenu Class http://www.adobe.com/livedocs/flash/9.0/ActionScriptLangRefV3/flash/ui/ContextMenu.html Beatrix Sumeet Kumar schrieb: Hi All, Is there any way in flash to create a multilevel context menu (right click menu)? Any help on this regard would be great

Re: [Flashcoders] MultiLevel ContextMenu

2010-02-19 Thread Sumeet Kumar
thanks for your reply but it only shows a single level...i need multiple levels in the context menu. Regards Sumeet Kumar - Original Message - From: Beatrix Krümmer-Frau birik...@hotmail.de To: Flash Coders List flashcoders@chattyfig.figleaf.com Sent: Friday, February 19, 2010

Re: [Flashcoders] MultiLevel ContextMenu

2010-02-19 Thread Beatrix Krümmer-Frau
You can - its kinda the way to customize the right klick which is available on a flash movie. Here is an example: http://www.adrianparr.com/?p=58 Well i use Flex's mx.controls.ToolTip; for Tooltips and cutomize them as needed Beatrix Sumeet Kumar schrieb: thanks for your reply but it

RE: [Flashcoders] MultiLevel ContextMenu

2010-02-19 Thread Benny
Flash doesn't support that or actually even prevents us to come up with a custom context menu.. In the past some flashers worked around that limitation by capturing the right click mouse event in javascript and then communicate the event via a local connection to the flash movie which than could

[Flashcoders] Alpha Out a SWF?

2010-02-19 Thread Susan Day
Hi; I have what is essentially a splash page that I would like to tween alpha to 0. Beneath it is an HTML page with a swf embedded in it as a masthead. I can tween the alpha of all the elements of the page, but it appears impossible to tween the stage itself. Is that the case? Or, how can it be

RE: [Flashcoders] Alpha Out a SWF?

2010-02-19 Thread Cor
Publish it as Transparant -Original Message- From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Susan Day Sent: vrijdag 19 februari 2010 13:25 To: Flash Coders List Subject: [Flashcoders] Alpha Out a SWF? Hi; I have what is

Re: [Flashcoders] Alpha Out a SWF?

2010-02-19 Thread Piers Cowburn
wmode = transparent http://kb2.adobe.com/cps/142/tn_14201.html Piers On 19 Feb 2010, at 12:24, Susan Day wrote: Hi; I have what is essentially a splash page that I would like to tween alpha to 0. Beneath it is an HTML page with a swf embedded in it as a masthead. I can tween the alpha of

Re: [Flashcoders] Alpha Out a SWF?

2010-02-19 Thread Susan Day
On Fri, Feb 19, 2010 at 8:32 AM, Piers Cowburn m...@pierscowburn.com wrote: wmode = transparent http://kb2.adobe.com/cps/142/tn_14201.html That was easy. Thanks! Susan ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

[Flashcoders] Scroll Bars not coming on increase of movie clip height

2010-02-19 Thread Rohit Sharma
Hello Everyone, In my application I have two screens, first screen measures 800 * 600 and second screen measures 800 * 950. I have set width and height in html to be 100%. On running the swf the first screen comes centred but when I move to next screen it is cropped. I cannot see the

Re: [Flashcoders] Scroll Bars not coming on increase of movie clipheight

2010-02-19 Thread Nathan Mynarcik
Hey Rohit, I believe you are correct. ExternalInterface will allow you to communicate to the HTML javascript function that in turn can change the size of the flash area. --Original Message-- From: Rohit Sharma Sender: flashcoders-boun...@chattyfig.figleaf.com To: Flash Coders List

Re: [Flashcoders] Scroll Bars not coming on increase of movie clipheight

2010-02-19 Thread Glen Pike
I have some code for doing this at home, I will post it later if you like, but we had big problems with some browsers not resizing - it might be dodgy JavaScript, but think it was just sh**y Safari. Glen Nathan Mynarcik wrote: Hey Rohit, I believe you are correct. ExternalInterface will

Re: [Flashcoders] Scroll Bars not coming on increase of movie clipheight

2010-02-19 Thread Rohit Sharma
Hi Glen, Surely, I would like to go through the code. Please let me have it if it can be shared ( I mean not proprietary). Thanks a lot. Rohit On Fri, Feb 19, 2010 at 7:41 PM, Glen Pike g...@engineeredarts.co.ukwrote: I have some code for doing this at home, I will post it later if

Re: [Flashcoders] Scroll Bars not coming on increase of movie clipheight

2010-02-19 Thread tom rhodes
yeah didn't work in safari when i was playing around with something similar a few years ago, everything else was ok though. i was calling a function in JS to resize the size of the flash. i'd be interested if anyone had anything working along these lines that worked in all browsers... On 19

[Flashcoders] AS 3: Pie Chart

2010-02-19 Thread Lehr, Theodore
Anyone know of a good tutorial on creating pie charts with data via xml? ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] RE: AS 3: Pie Chart

2010-02-19 Thread Mendelsohn, Michael
I just recently did that about 2 months ago. But if I recall correctly, I believe I had to adapt it to AS3. http://www.flash-creations.com/notes/sample_piechart.php - Michael M. Anyone know of a good tutorial on creating pie charts with data via xml?

Re: [Flashcoders] AS 3: Pie Chart

2010-02-19 Thread Nathan Mynarcik
Quick search for flash dynamic pie chart on google led me to the first link being: http://www.opendb.net/element/220.php with a source download. --Original Message-- From: Lehr, Theodore Sender: flashcoders-boun...@chattyfig.figleaf.com To: Flash Coders List ReplyTo: Flash Coders List

Re: [Flashcoders] Scroll Bars not coming on increase of movie clipheight

2010-02-19 Thread Karl DeSaulniers
I have this Javascript that will read the browsers screen size and resizes per system and browser. Put this in your head tag. I also used swfobject to load my swf. Not necessary though. Again, though, if they have Java turned off, then this will not work. May help though. script

RE: [Flashcoders] AS 3: Pie Chart

2010-02-19 Thread Merrill, Jason
Quick search for flash dynamic pie chart on google led me to the first link being: http://www.opendb.net/element/220.php with a source download. Quick opening of the source file shows that's Flash player 6, Actionscript 1.0. He was asking for AS3. But if you Google AS3 Pie Chart, there are

Re: [Flashcoders] Scroll Bars not coming on increase of movie clipheight

2010-02-19 Thread Karl DeSaulniers
Also, this line can be the original size of the swf itself. If they have a browser smaller, then it should create the scroll bars. If your swf changes size, make sure you have that javascript in each html its in with the minimum size set. HTH On Feb 19, 2010, at 1:15 PM, Karl DeSaulniers

Re: [Flashcoders] Scroll Bars not coming on increase of movie clipheight

2010-02-19 Thread Glen Pike
Hi, I have uploaded a stripped out example for you at this location: http://glenpike.co.uk/resize_test/files.zip You can see it working at http://glenpike.co.uk/resize_test/ too Basically, inside your ActionScript you will need to have a few things: 1.functions that

Re: [Flashcoders] MultiLevel ContextMenu

2010-02-19 Thread Anthony Pace
Javascript to as3 combo, as suggested below, would work; yet, not in Opera (anyone care?) , and not very successfully, at least during my experimentation, in browsers running in on top of *nix OS (I kind of care about this one). You can also check out the link below, as it is now integrated