ActionScript 3.0 :: Possible To Use Graphic Lines As A Mask?
Aug 16, 2009
I have some programmatically drawn lines, (sort of like growing vines) that I want to texture to make it look watercolor-like or hand-drawn. I thought of placing a texture image as a background which is revealed only by the lines (using the lines as a mask) should work.However, that doesn't seem to work.In a test, I have a square and a line. The square can be used as a mask for the line but it doesn't seem like the line can be used as a mask for the square?
Code:
//a line
var myline:Sprite = new Sprite();
[code]........
View 5 Replies
Similar Posts:
Jul 19, 2009
dows graphic.draw work in a mask ?I need to add lines to my mask dynamically
View 4 Replies
Jul 19, 2009
dows graphic.draw work in a mask ? I need to add lines to my mask dynamically.
View 13 Replies
Feb 22, 2011
I'm having trouble setting up a Graphic object (a solid filled rectangle) to be masked with an image that gets loaded at runtime. I've managed to get it to work with the following code:
<?xml version="1.0"?>
<s:Application xmlns:fx="[URL]"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx"
creationComplete="init()"
[Code] .....
Setting the PNG inside the <s:mask> makes the stage render nothing, while adding the mask programmatically in the init() method causes correct behaviour. It took me quite a while to figure this out and I'd like to understand what it is that I'm doing incorrectly in the MXML approach, as that seems to be what is being done in the Cookbook (other than me using an Image and the example using a Group wrapped BitmapImage).
View 1 Replies
Mar 31, 2009
[URL]
Are they just constantly adding MC's to the display list as the mouse is moved around? Doesn't that kill memory?
Is there a way to draw lines with Flash's core graphic class but attach a custom bitmap to that line?
View 10 Replies
Aug 17, 2011
I have been working on a map viewer based blitting technique. As part of the map I need to draw approximately 50000 lines and performance is currently really poor.
Code: Select allvar movie:Shape = new Shape();
for( ... )
{
movie.graphics.clear();[code].....
View 2 Replies
Nov 15, 2009
My code is on the main timeline.I call a function loop to draw lines between them.The lines are drawing between the right x, y values BUT between those values on the main stage, not those values within the kite.For example, dot1_mc is at x100, y0 inside kite. the line that should go from its center, draws from stage x100, 0.How do I draw the lines inside kite so that they draw between the dots?Heres my code that draws the linesPHP Code:
function loop():void{ lineDrawing.graphics.clear(); var a:Point = new Point(kite_mc.dot1_mc.x, kite_mc.dot1_mc.y); var b:Point = new Point(kite_mc.dot2_mc.x, kite_mc.dot2_mc.y); var c:Point = new
[code].....
View 4 Replies
Sep 10, 2010
I have a startDrag function set up on a loader and mask that when the mouse is down on the loader it drags, when not it doesn't. There is also 2 buttons that control whether mask1 or mask2 is used. What i would like however is when the mouse is down - the area of the loader outside of the mask is visible but only by about 10/20% alpha, that way the user can see where all the image is while dragging. Is this possible? Full code can be seen below and i have attached the zip with the .fla file:
[Code]...
View 2 Replies
Aug 19, 2003
what i am doing is to make something along the lines of the "scriptable mask" tutorial Inigo was kind enough to put up.My idea is to have a large mask behind the whole of my flash site, this masks a colour image with a black & white one (nothing tricky). The image I am using is actually 5 separate images combined, and each is a pic of certain parts of the site.I also have a very basic set of buttons along the bottom... each corresponding to each section.
All I want is to set it up so that when I mouse over the buttons, the _x of the mask moves to correspond with the correct image... really very basic... or so I thought .If anything it should be easier to do than what is in Inigo's tut (where he uses the _x of the mouse to move the mask)... i just cant seem to get it to work with a nice easing effect (its easy to get the mask to simply snap to each coordinate, but I need it to smoothly move).
View 4 Replies
Dec 4, 2009
maybe point me towards a better way to mask. png file is way too big. I have been using the mask layer option to create my own mask around a jpg image by drawing around it on the mask layer. There has to be a fetter and faster way to do this. Is it possible to maybe have a specific color range have an alpha value of 0. Similar to green screening whereas If I put the item I want to clip on a green background flash will auto take out the green for me. and by auto I mean action script maybe. I think this can be done but im not finding it.
how are these guys clipping these images [URL] they have the movie clips set up where the black background on the 3 layers of shoes is getting masked out. When I go into the shoe movie clips I see there is a black background but it just disappears when I go back to main timeline.
View 3 Replies
Apr 8, 2010
ive gotten one movie clip to mask another in the actions frame but i cant seem to be able to mask the flames which are a shape with a movieclip in this as file. im not getting any errors but the mask isnt covering anything look near the bottom at s.mask=mask_mc; there are about 20 "s" shapes spawning per second if that has anything to do with it
Code:
//this package turns an mc into a flaming button that calls a javascript function
package
{
import flash.display.MovieClip;
[Code].....
View 3 Replies
Nov 26, 2009
I was wondering if its possible to mask multiple MC or Sprites under one mask, when using AS3.abc.mask = a;cba.mask = a;something like that
View 2 Replies
Jul 21, 2010
I am trying to create a mindmap where the user can drag points about the screen. I have gotten as far as drawing the line via actionscript, and drag+drop the points (defined as movie clips on stage). This is the existing script - I don't know how to get the lines to follow the points. Something to do with ENTER_FRAME or updateAfterEvent?
var line:MovieClip = new MovieClip();
line.graphics.lineStyle(1,1);
line.graphics.moveTo(ptOne.x,ptOne.y);
[code]....
View 1 Replies
Jan 12, 2009
I've searched every possible actionscript forum for this and i cant seem to find it. How can i create an "area" of blur which blurs everything beneath it?Like some kind of masked blur effekt?
View 0 Replies
Apr 1, 2009
I'm trying to create a mini-gallery. The background is an image which auto-centres, cropping the relevent areas to ensure it fits perfectly central at the right aspect ratio.However, when I add a bar across the top, it gets 'cropped' with the image (ie. If I make the window thinner, it will get cut-off. Is there any way to keep an image exactly 10px from the top of the visible area - no matter how the background is cropped?
Code:
orig_stage_width = 960;
orig_stage_height = 600;
orig_back_width = 1600;
orig_back_height = 1200;
[code]....
View 1 Replies
Jul 20, 2010
So lets say I make a chess board in flash that is a top down view. Then if I want it in isometric view I simply go to the transform window and enter the skew properties of 60 and 30.
Now here is my question, is there a way to change from this ISO view back to the normal top down view?
View 3 Replies
May 10, 2009
I am building an RPG type game in flash and have hit upon my first problem.I have created a character out of various different body parts (upper arm, lower arm, hand, head, etc..) I would like to make it possible to change the look of each of these body parts (different types of armor / clothing) whilst maintaining the whole body animations.I'm becoming confused about how many things are inside each other! Rather than recreate a whole new set of animations for every conceivable combination of armor and clothing it should be possible to simply change one of the graphics within the movieclip that is the character.
So the structure I have thought of is like this:Whole body > Changeable graphic > Base Body Part (bare arm for instance)What is a sensible way to go about doing this? I'd like to have a solution that is easily scalable and won't require notably more work if there are 10 different types of changeable graphic or 1000.I think that I need use the event that triggers the armor / clothing to change for that body part, to run a script that either somehow changes which graphic it is displaying, possibly inside the Base Body Part movieclip.
View 2 Replies
Jun 19, 2009
I have a giant image that I vectorized in flash in order to stretch it to the stage size, but obviously this lags a ton (vector size is about 700x500). Is there a way to convert this vector (in a MC) to a graphic after resizing in order to reduce the lag?
View 2 Replies
Apr 18, 2010
I am trying to play a sound and display a graphic when a key is pressed , so far i have been able to play my sound when i press the 'a' key but i also want to display a graphic that gets displayed while the key is down , i have created the graphic as a movie clip, not sure if thats right, iam not sure of the code i need to display the graphic.
View 1 Replies
Nov 23, 2010
I am creating graphics that are to be integrated into a new website booking system. I want to emulate the graphic on this site. http:[url]...Is this flash or macromedia or XHTML or what??Could i create something like this fairly easily or do i have to know in-depth action script?
View 3 Replies
Jun 6, 2009
I've created a small animation containing a few images which i have converted to graphic symbols so I can alpha-tween them. I tweened the first image then copy/pasted the frames to do the next using the swap symbol function. When swapping the symbol I selected the desired symbol and pressed okay but nothing happened - I then dragged the desired symbol out of the library and onto the stage then deleted the previous symbol. As soon as I did that the new symbol I had just dragged out switched back to the previous symbol.
View 1 Replies
Sep 20, 2011
I'm using Flash 8 and I have a Flash movie created some while ago that I need to change from time to time. Over the years the centre of some of the graphics/movie clips has moved as the clips grow and reduce in size. I now find I cannot edit the wording on one of the projects (project 10). [url]...
View 2 Replies
Apr 2, 2009
I know how to animate with Flash, and I know the basics of Actionscript 2.0 enough to make simple games.I have a project to do which I wanted to do with Javascript/CSS, but instead I'd like to hone my Flash skills to do it.If someone could point me in the right direction that would be awesome! I'm making an image move in a path about a web page without regard to other content on the page.I was thinking that I could make a Flash vid with a transparent background and lay it over the page.If so, how do I make a transparent background? If that's not the solution, can I even do this with Flash?
View 2 Replies
Aug 4, 2009
(without using a button)I have a square MC with a dummy graphic. I want that MC to display (based on conditions, so with AS3) a different graphic. Something like myMC.picture=otherMc.picture
View 2 Replies
Dec 14, 2009
[code]...
This does not!. I'm not even referencing tile109 but by having the same graphic it errors real weird!. I am using the same graphic just for test purposes so would change it later - does seem very strange though.
The error occurs in my copypixel (null source), but as said tile109 isn't even used. Some mangling/reference prob?
View 5 Replies
Jun 27, 2010
so i tried to make an emoticon in chat, it worked actually. but only if you type "/smile", it will turn into "" << colon and closed parenthesis. not if you type "bla bla bla ".
so here's the code i use:
Code:
function onSendBtClick(evt:MouseEvent):void
{
if (ti_message.text == "/smile")
[Code]....
all I wanna do is change the "", "", and ":/" into animated emoticon (for example: "smile.swf", "sad.swf", "frown.swf") anyone know the code to replace the text-emoticon code i used..?
View 2 Replies
Jul 11, 2011
I am trying to import a SWF inside my flash file. I keep trying to import the SWF to the library, but the library denotes it with an icon as a graphic, not a movie. As such, it won't play or anything.
View 1 Replies
Jun 29, 2006
I downloaded this script: [url] I works fine, but i want some graphic on top of the images, without adding the graphic to all the images, so i made a new layer in flash, made the graphix i wanted... But when i run the script, the images is fading over the graphic i made....
View 2 Replies
May 12, 2009
make a graphic like this:
when i press the button the graphic go up, if press again go down, always like this.
View 2 Replies
Jun 30, 2009
I imported a panorama .jpg file (i.e., several overlapping landscape photos stitched together) onto the Flash MX 2004 stage, changed it to a symbol (graphic), and used Tween to simulate the panorama panning back and forth. The effect looks great when I click on the .swf file in Windows Explorer, but when I created a box on a PowerPoint 2000 slide and linked the .swf file to it, instead of the graphic, there is a red rectangle. The rectangle moves the way the graphic would, but you cannot see the photograph. By the way, I followed the steps at [URL] to link the .swf file to the PowerPoint slide.
View 1 Replies