legit alfa gradient objects
+4
BlueShenron
SXR123
Rapidfir3Pho3nix
supersmashbro
8 posters
- supersmashbroSpritan
- Age : 25
Number of posts : 409
Registration date : 2012-11-21
Location : East London
legit alfa gradient objects
11/24/2012, 4:52 pm
Legit Alpha Gradient Masking Without Actionscript
So this is something that's bugged me for a while. I remember being able to have an alpha gradient as a mask in earlier versions of flash, so that I could take a solid object and make parts of it more or less transparent depending on the mask, but a few years ago when I tried to do this it wouldn't work right, and no one I talked to could tell me how to do it the proper way. Everyone said that they knew it could be done, but wasn't sure how. Well, recently I took it upon myself to do some research and rediscover this long lost technique, and it's fairly simple, so I've decided to make a small tutorial to share with you today.
THE PROBLEM
Now, a regular mask involves 2 layers. One layer is the shape that's getting masked, and the other layer is the mask itself that will show/hide parts of the shape beneath it depending on where the mask's shapes are. That looks like this:
Notice the layers showing which is the mask and which is going to get masked. On the stage, we see the big red area which will be what content is shown, and we see the text that is to bed masked. When the mask is applied, it looks like this:
See how the part of the text that was covered by the big red box in the previous image is now showing, whereas the rest is hidden? This is because the big red box is "masking" the text to only show where I want it to as defined by the box itself. To further illustrate this, say I want to make the text polka-dotted:
Now, this is useful for certain applications, but say I want to have a soft edge to the mask, so that it looks like it's fading in. You'd think I could just make a gradient on the mask and be done with it right? Well let's try that:
So this LOOKS like the end result will have a nice smooth transition for the text from solid black to completely transparent, right? Here's how it actually looks when the mask is applied:
So what happened? Where's our nice fading effect on the text? Well, the way these masks work is based on the SHAPE of the mask, and not the color or transparency. The mask will be applied wherever there is a shape. For example, this image has a striped mask on it, but I made it 100% transparent so you can't see it:
When the mask is applied, you can see it, even though it looks like there is nothing there:
A SOLUTION
So how do we get the desired effect? Well, a lot of people will simply make a solid gradient over top of what they want to mask if the background is a solid color. So for example, the background of my project is white, so I could make a white to transparent gradient box and position it over the text like so:
This looks OK, and creates the desired effect simply. But it's not a mask, and it's a cheap workaround. What if I had a wacky and complicated background?
That white gradient is no longer sufficient. So now what can we do?
THE SOLUTION
The solution is deceptively simple, and has to do with movieclip blending. So far in my project I have 2 layers: The Background, and The Text:
I want to mask the text so that it fades from solid to transparent. So my first step is to draw the mask. This can be on the same layer as the text, or on a new layer above it. Doesn't matter, but keep them close for convenience during a later step.
Turn the mask shape into a movie clip. Call it what you want, I'm going to call mine theMask.
Select your Mask Movieclip, go to it's Properties and set it's Blending to Alpha.
It will vanish. This is normal. Next, select both the newly created mask movieclip, and the object you want masked (in this case, the text) and put them both into their own movie clip. I'm going to call my movieclip theContainer.
Once created, set your container movie clip's blending to Layer, and voila:
The mask is applied, fading out regardless of what is in the background.
This can be used to achieve a reflective effect, regardless of background:
The effect used with animation: h t t p : / / f i lz . u s / 3 n L
Also used as a reflective effect: h t t p : / / f i l z . u s / 3 n M
Or simple shadows: h t t p : / / f i l z . u s / 3 n Q
If you have any questions or need any clarification, please let me know!
So this is something that's bugged me for a while. I remember being able to have an alpha gradient as a mask in earlier versions of flash, so that I could take a solid object and make parts of it more or less transparent depending on the mask, but a few years ago when I tried to do this it wouldn't work right, and no one I talked to could tell me how to do it the proper way. Everyone said that they knew it could be done, but wasn't sure how. Well, recently I took it upon myself to do some research and rediscover this long lost technique, and it's fairly simple, so I've decided to make a small tutorial to share with you today.
THE PROBLEM
Now, a regular mask involves 2 layers. One layer is the shape that's getting masked, and the other layer is the mask itself that will show/hide parts of the shape beneath it depending on where the mask's shapes are. That looks like this:
Notice the layers showing which is the mask and which is going to get masked. On the stage, we see the big red area which will be what content is shown, and we see the text that is to bed masked. When the mask is applied, it looks like this:
See how the part of the text that was covered by the big red box in the previous image is now showing, whereas the rest is hidden? This is because the big red box is "masking" the text to only show where I want it to as defined by the box itself. To further illustrate this, say I want to make the text polka-dotted:
Now, this is useful for certain applications, but say I want to have a soft edge to the mask, so that it looks like it's fading in. You'd think I could just make a gradient on the mask and be done with it right? Well let's try that:
So this LOOKS like the end result will have a nice smooth transition for the text from solid black to completely transparent, right? Here's how it actually looks when the mask is applied:
So what happened? Where's our nice fading effect on the text? Well, the way these masks work is based on the SHAPE of the mask, and not the color or transparency. The mask will be applied wherever there is a shape. For example, this image has a striped mask on it, but I made it 100% transparent so you can't see it:
When the mask is applied, you can see it, even though it looks like there is nothing there:
A SOLUTION
So how do we get the desired effect? Well, a lot of people will simply make a solid gradient over top of what they want to mask if the background is a solid color. So for example, the background of my project is white, so I could make a white to transparent gradient box and position it over the text like so:
This looks OK, and creates the desired effect simply. But it's not a mask, and it's a cheap workaround. What if I had a wacky and complicated background?
That white gradient is no longer sufficient. So now what can we do?
THE SOLUTION
The solution is deceptively simple, and has to do with movieclip blending. So far in my project I have 2 layers: The Background, and The Text:
I want to mask the text so that it fades from solid to transparent. So my first step is to draw the mask. This can be on the same layer as the text, or on a new layer above it. Doesn't matter, but keep them close for convenience during a later step.
Turn the mask shape into a movie clip. Call it what you want, I'm going to call mine theMask.
Select your Mask Movieclip, go to it's Properties and set it's Blending to Alpha.
It will vanish. This is normal. Next, select both the newly created mask movieclip, and the object you want masked (in this case, the text) and put them both into their own movie clip. I'm going to call my movieclip theContainer.
Once created, set your container movie clip's blending to Layer, and voila:
The mask is applied, fading out regardless of what is in the background.
This can be used to achieve a reflective effect, regardless of background:
The effect used with animation: h t t p : / / f i lz . u s / 3 n L
Also used as a reflective effect: h t t p : / / f i l z . u s / 3 n M
Or simple shadows: h t t p : / / f i l z . u s / 3 n Q
If you have any questions or need any clarification, please let me know!
Re: legit alfa gradient objects
11/24/2012, 6:36 pm
Question. Did you actually make this tutorial yourself?
Re: legit alfa gradient objects
11/24/2012, 10:30 pm
*claps*
now. this is what we need right here.
Thanks for the tut dude! New member and already helping us out!
now. this is what we need right here.
Thanks for the tut dude! New member and already helping us out!
- BlueShenronSpritan
- Age : 28
Number of posts : 198
Registration date : 2012-04-05
Re: legit alfa gradient objects
11/24/2012, 11:17 pm
i saw this same tutorial on stickpage
- supersmashbroSpritan
- Age : 25
Number of posts : 409
Registration date : 2012-11-21
Location : East London
Re: legit alfa gradient objects
11/25/2012, 4:52 am
yes this tutorial is on SP as well, I got permission from jeff (one of the admins on SP) to post this here because this was his original tutorial. I'm sorry if this caused confusion.
- _AfterAfter_Spritan
- Age : 24
Number of posts : 33
Registration date : 2012-11-18
Location : Japan
Re: legit alfa gradient objects
11/25/2012, 5:06 am
I read the tutorial and it's really good but since I was a newbie at flash I didn't really understand it that well
Not the tuts fault though
Not the tuts fault though
Re: legit alfa gradient objects
11/25/2012, 9:50 am
help is help, whether or not it's yours doesn't really matter I guess. as long as you got permission.
- Luigiman364Spritan
- Age : 29
Number of posts : 3090
Registration date : 2010-12-13
Location : Massachusetts
Re: legit alfa gradient objects
12/16/2012, 3:33 pm
Just incase ppl are super lazy for the links
http://www.fileize.com/view/91db666f-8cb/ (1st one)
http://www.fileize.com/view/805bd6f1-883/ 2nd one
and 3rd one http://www.fileize.com/view/60edf91f-76e/
http://www.fileize.com/view/91db666f-8cb/ (1st one)
http://www.fileize.com/view/805bd6f1-883/ 2nd one
and 3rd one http://www.fileize.com/view/60edf91f-76e/
Re: legit alfa gradient objects
12/16/2012, 8:06 pm
Put some disclaimer that it wasn't you and the link to the original place you found it
- v2Administrator
- Age : 27
Number of posts : 5600
Registration date : 2012-05-17
Location : your girls DMs
Re: legit alfa gradient objects
12/16/2012, 8:48 pm
You're not the boss of him
Re: legit alfa gradient objects
12/16/2012, 9:30 pm
Sieghart wrote:You're not the boss of him
notsureifsrs. I'm not bossing him but he's taking credit for something that's not his, whats the difference between this and someone posting NASF on their account? You all thought this was his tut and it was amazing just like people might assume that NASF was made by whoever posted that.SXR123 wrote:Yeah granny, don't tell him what to do.
- v2Administrator
- Age : 27
Number of posts : 5600
Registration date : 2012-05-17
Location : your girls DMs
Re: legit alfa gradient objects
12/17/2012, 4:19 pm
No he's notGranadico wrote:he's taking credit for something that's not his,
He stated himself that he didn't make it and that some guy from stickpage didGranadico wrote:whats the difference between this and someone posting NASF on their account?
No I didn't because I'm not illiterate and I'm more than capable of reading the full topic.Granadico wrote:You all thought this was his tut
- Luigiman364Spritan
- Age : 29
Number of posts : 3090
Registration date : 2010-12-13
Location : Massachusetts
Re: legit alfa gradient objects
12/17/2012, 7:35 pm
Sieghart wrote:No he's notGranadico wrote:he's taking credit for something that's not his,He stated himself that he didn't make it and that some guy from stickpage didGranadico wrote:whats the difference between this and someone posting NASF on their account?No I didn't because I'm not illiterate and I'm more than capable of reading the full topic.Granadico wrote:You all thought this was his tut
SXR Im going to need you to checkoff one of these boxes
[_] Told
[_] Fucking Told
[_] Damn, Sure did get Told in here
[_] Someone ordered a nice Told Ice cream cone
[_] NO WAY DUDE , you just rented Knights of the Told Republic
Re: legit alfa gradient objects
12/17/2012, 11:13 pm
Sieghart wrote:No he's notGranadico wrote:he's taking credit for something that's not his,He stated himself that he didn't make it and that some guy from stickpage didGranadico wrote:whats the difference between this and someone posting NASF on their account?No I didn't because I'm not illiterate and I'm more than capable of reading the full topic.Granadico wrote:You all thought this was his tut
supersmashbro wrote:I've decided to make a small tutorial to share with you today.
Rapidfir3Pho3nix wrote:Question. Did you actually make this tutorial yourself?
Yes he states it after but in the original place he says he made it himself, he should've just said it in the first place instead of saying he made it himself.supersmashbro wrote:yes this tutorial is on SP as well, I got permission from jeff (one of the admins on SP) to post this here because this was his original tutorial. I'm sorry if this caused confusion.
- v2Administrator
- Age : 27
Number of posts : 5600
Registration date : 2012-05-17
Location : your girls DMs
Re: legit alfa gradient objects
12/18/2012, 4:29 pm
Granny it's okay to admit you're so mad that you have to photoshop quotes
Re: legit alfa gradient objects
12/18/2012, 5:25 pm
Luigiman364 wrote:Sieghart wrote:No he's notGranadico wrote:he's taking credit for something that's not his,He stated himself that he didn't make it and that some guy from stickpage didGranadico wrote:whats the difference between this and someone posting NASF on their account?No I didn't because I'm not illiterate and I'm more than capable of reading the full topic.Granadico wrote:You all thought this was his tut
SXR Im going to need you to checkoff one of these boxes
[_] Told
[_] Fucking Told
[_] Damn, Sure did get Told in here
[_] Someone ordered a nice Told Ice cream cone
[_] NO WAY DUDE , you just rented Knights of the Told Republic
ROFLMAO XD OMG DUDE THAT'S HILARIOUS! XD IM CRYING OVER HERE!! XD
- v2Administrator
- Age : 27
Number of posts : 5600
Registration date : 2012-05-17
Location : your girls DMs
Re: legit alfa gradient objects
12/18/2012, 6:49 pm
Said the quote photoshopper
Re: legit alfa gradient objects
12/18/2012, 8:14 pm
Sieghart wrote:Said the quote photoshopper
He's got a point granny.
Re: legit alfa gradient objects
12/18/2012, 10:04 pm
Fixed.SXR123 wrote:Sieghart wrote:Said the quote photoshopper
He's got a wrong point granny.
- v2Administrator
- Age : 27
Number of posts : 5600
Registration date : 2012-05-17
Location : your girls DMs
Re: legit alfa gradient objects
12/18/2012, 11:59 pm
FixedGranadico wrote:I'm mad.SXR123 wrote:Granny's madSieghart wrote:Granny's mad
Re: legit alfa gradient objects
12/19/2012, 12:45 am
I can't help but concur with you joey.
seriously though, we're kinda offtopic. so we should like, stop or something.
seriously though, we're kinda offtopic. so we should like, stop or something.
Permissions in this forum:
You cannot reply to topics in this forum