RE: [Flashcoders] Vista-like glossy SimpleButton - please help with the final touch

2009-10-17 Thread Cor
I think it really is in the tiny difference in color values. (if you want the "glow" rounded as on http://www.jooria.com/Drawing-Glossy-Button-a138.html, you could use a Bezier curve). I did this and added a little bevel. Regards Cor //--- package { import flash.display.Sprite;

Re: [Flashcoders] Vista-like glossy SimpleButton - please help with the final touch

2009-10-17 Thread Glen Pike
Hi, I think you draw another shape on the top of your first one and this should be filled with a gradient as follows: var colors:Array = [0xFF, 0xFF, 0xFF, 0xFF]; var alphas:Array = [0.75, 0.75, 0.075, 0.75]; var ratios:Array = [0, 127, 128, 255];

Re: [Flashcoders] Vista-like glossy SimpleButton - please help with the final touch

2009-10-17 Thread Karl DeSaulniers
You can assign it to the mc that holds the gradient I believe. Karl Sent from losPhone On Oct 17, 2009, at 5:41 PM, Alexander Farber > wrote: I don't understand how to make the Photoshop "overlay blending mode" in ActionScript. http://www.jooria.com/Drawing-Glossy-Button-a138.html Regards

[Flashcoders] Movieclip in a remote shared object

2009-10-17 Thread ktt
Hello, Is it possible to store Movieclip in a remote shared object? Ktt ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Vista-like glossy SimpleButton - please help with the final touch

2009-10-17 Thread Alexander Farber
I don't understand how to make the Photoshop "overlay blending mode" in ActionScript. http://www.jooria.com/Drawing-Glossy-Button-a138.html Regards Alex ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/

Re: [Flashcoders] Vista-like glossy SimpleButton - please help with the final touch

2009-10-17 Thread Alexander Farber
Hi Glen, On Sat, Oct 17, 2009 at 3:31 PM, Glen Pike wrote: > The gradient overlay would be a layer on top of your button shape which > had a linear gradient white fill, with alphas [...@0%, 1...@50%, 0...@51%, > 1...@100%] sorry I still don't understand. Do you mean var alphas:Array = [0, 0.

Re: [Flashcoders] Vista-like glossy SimpleButton - please help with the final touch

2009-10-17 Thread Glen Pike
Hi, The gradient overlay would be a layer on top of your button shape which had a linear gradient white fill, with alphas [...@0%, 1...@50%, 0...@51%, 1...@100%] Playing with this in Flash with the drawing tools you might need to adjust the layer for 75% opacity - or just change the gr

[Flashcoders] Vista-like glossy SimpleButton - please help with the final touch

2009-10-17 Thread Alexander Farber
Hello, could someone please help me with a glossy button? I think I'm missing something minor in my code (at the bottom). I have a gradient running vertically, but it's too soft - I don't know how to create the crisp line in the middle, which you see for example in this Photoshop example: http: