I Would Like To Make Two Simple Banners Using The GlowFilter And The BevelFilter Functions.
I have no programming experience and I'm using Swiss miniMax3.
Is that a reasonable expectation or am I just wasting my time?
Looking through some of the literature it says the following:
GlowFilter or BevelFilter
Filters work with SWiSH miniMax however the full path to the class (typically flash.filters) must be specified.
and typically would be coded in SWiSH miniMax as
var filter:flash.filters.BlurFilter = new flash.filters.BlurFilter(30,30,2);
or var filter:Object = new flash.filters.BlurFilter(30,30,2);
All of that is Greek to me.
Would you please give me The example of the code for the GlowFilter Banner.
And also tell me where to place the code?
Thank You,
Page 1 of 1
The Filter Function I Would Like To Make Two Simple Banners Using The GlowFilter And The B
#2
Posted 06 November 2009 - 08:06 AM
hi,
I don't use mimiMax but in swishmax3 you can find a generator, perhaps in miniMax also ?
file - samples - advanced - filter_effect_generator
once you open the generator you can play around with the settings, now you should copy the code and paste inside a other swi file
code from the filter generator file
code for your swi file
glowFilterName can be anything...
glowFilterName = new flash.filters.GlowFilter(0xFF0000, 0.45, 4, 4, 2, 8, false, false);
pathToObject.filters = [glowFilterName];
don't forget, export options = flash player 8 or above
grtz
I don't use mimiMax but in swishmax3 you can find a generator, perhaps in miniMax also ?
file - samples - advanced - filter_effect_generator
once you open the generator you can play around with the settings, now you should copy the code and paste inside a other swi file
code from the filter generator file
glowFilterName = new flash.filters.GlowFilter(0xFF0000, 0.45, 4, 4, 2, 8, false, false); pathToObject.filters = [glowFilterName];
code for your swi file
onSelfEvent (load)
{
glowFilterName = new flash.filters.GlowFilter(0xFF0000, 0.45, 4, 4, 2, 8, false, false);
pathToObject.filters = [glowFilterName];
}glowFilterName can be anything...
glowFilterName = new flash.filters.GlowFilter(0xFF0000, 0.45, 4, 4, 2, 8, false, false);
pathToObject.filters = [glowFilterName];
don't forget, export options = flash player 8 or above
grtz
We're here to speak Actionscript
Free 5-star rating system with swishmax and php
Free basic cms with swishmax and php
Free 5-star rating system with swishmax and php
Free basic cms with swishmax and php
#3
Posted 06 November 2009 - 09:28 AM
>>I don't use mimiMax but in swishmax3 you can find a generator, perhaps in miniMax also ?
...no, SWiSH miniMax3 does not have that option.
wolf
...no, SWiSH miniMax3 does not have that option.
wolf
#5
Posted 06 November 2009 - 09:31 AM
...but Aaron's advice will work 
wolf
wolf
Share this topic:
Page 1 of 1

Help
Start a new topic
Add Reply
MultiQuote











