ActionScript 2.0 :: Draw With A Ruler?

Nov 30, 2004

I was wondering if I can draw a straight line along the edge of a ruler that I make that students can manipulate (drag,rotate, etc.)

Let's say that I ask students to draw a line on a grid that has a slope of 4 and a y-intercept of -2. In a Flash file, they would manipulate the ruler to where the line would be drawn. Let's say the ruler is where it should be. They then press a button to initiate the drawing function.[code]...

View 5 Replies


Similar Posts:


Change Ruler Zero Settings?

May 2, 2009

how can I change my rulers' zero points on the stage? In Photoshop I just drag new points from the top left corner, but that doesn't seem to work in Flash. This is very useful for me, e.g., setting "0" at the center of the stage, or quickly measuring some space.

P.S. Where's the email alert button on this Forum's posts?

View 11 Replies

ActionScript 2.0 :: Set Ruler At Runtime?

Jun 17, 2006

how to put ruler at runtime.I want to use dat ruler for measuring the size of images.Is it possible to do dat.

View 1 Replies

Add Ruler Guides To Stage With JSFL?

May 21, 2009

Since Flash doesn't allow you to specify exact coordinates to place guides, I wanted to create a command to "fit guides to stage". When manually dragging and watching the "Info" panel, you always end up skipping pixels, causing you to zoom way in for precise coordinates.
 
I can't seem to find (and it's possible it doesn't exist) a way to place guides on the stage using JSFL.

View 1 Replies

ActionScript 2.0 :: Mouse Not Drawing Over Or Under The Ruler

Nov 30, 2004

I was wondering if I can draw a straight line along the edge of a ruler that I make that students can manipulate (drag,rotate, etc.) Let's say that I ask students to draw a line on a grid that has a slope of 4 and a y-intercept of -2. In a Flash file, they would manipulate the ruler to where the line would be drawn. Let's say the ruler is where it should be. They then press a button to initiate the drawing function. Can the edge of the ruler be used to help them draw a nice, straight line ... the mouse not drawing over or under the ruler???

[Code]...

View 5 Replies

FLASH :: IDE - Change The Color Of The Ruler In CS4?

Aug 4, 2010

I want to change the color of the Ruler in FLASH CS4. How can I change it?

View 2 Replies

Professional :: Place Ruler 0,0 Anywhere On Stage To Measure From?

Feb 1, 2011

I have two artworks on stage which have a common shape within the artwork. I need to make the one I have just added to stage fit the prior one by getting that common shape the same size for both. In Freehand I would drag the junction of the two rulers out onto stage to the left edge of the item, to create a zero point from which to take a measurement. I would drag a guide out to the right edge and read from the info panel an x value, thats my width, or double click the guide to get a reading from the guides palette. Repeat that for the other artwork then get a calculator and divide one measurement by the other to work out the scaling factor I need.
 
How in CS5 Flash does one place a ruler zero point on stage ?  I can drag guides out, but how do I make the left hand guide to be zero ?

View 2 Replies

ActionScript 2.0 :: [FMX2004] Zoom The Coordinate Ruler?

Jul 19, 2007

what i'm trying to create is a map system with pan and zoom functions similar to google maps. that part is easy. what i'm having trouble with is figuring out how to scale the coordinates at the top and left of the map.so if at 100% my map is viewable from mile 0 to mile 99 (numbers are only for the sake of example) then when i zoom in on the center to 150% i would need to show coordinates from mile 25 to mile 75 ... i think if that example is not clear just look at flash or photoshop. when you zoom in just look how the ruler around the stage changes with the zoom level.

View 1 Replies

ActionScript 3.0 :: BitmapData Draw() Method - Draw The Bitmap On The Stage At Design Time?

Mar 18, 2009

I am using the draw() method of the BitmapData to encode a jpeg of part of the image. Now this should be easy enough given the object I want to draw to the bitmap is on the stage at design time so I know its location and dimetions exactly! Heres the code I have in place.

Code:
var myBitmapSource:BitmapData = new BitmapData ( street.width, street.height, false, 0x333333);
myBitmapSource.draw(street, null, null, null, new Rectangle( 96, 5, 571, 450 ), true );

I know for a FACT that no part of the street clip I am drawing out is in negative space, and it's registration is (0,0). However, it cuts off A lot of the top of my image. y=5 in the above rectangle is where I need the top to be, but it cuts the top off of the image... even if I change it to 0, it has no effect.

View 2 Replies

ActionScript 3.0 :: Youtube Api Draw - Error #2121: Security Sandbox Violation: BitmapData.draw

Jun 30, 2011

I'm making something that requires me to draw() the youtubeplayer Giving me this pretty error:

[Code]...

View 4 Replies

ActionScript 3.0 :: BitmapData.draw() Failing To Draw Entire MovieClip?

Dec 15, 2009

I'm trying to do some lean blitting for an object that rotates by rotating it once at startup and capturing a BitmapData snapshot of each 5 degrees. The problem I'm having is that the draw() method of the BitmapData object is only picking up pixels in the MovieClip that are below and to the right of the registration point. If I change the MC so that the registration point is in the top left corner, I sometimes get what looks like most of the pixels, but the entire object rotates into and out of the frame, since it's rotating around the corner and not the center.

View 5 Replies

Actionscript 3 :: Movieclip - Draw Line Without Using The Draw API?

Apr 5, 2012

I need to be able to draw a thick patterend line between 2 points in AS3, I can't use the draw API because it doesn't all me to actually put detail (pattern etc) into the thickness of the line, I thought about perhaps using the line to create a bitmap version and then using that as a mask, but I remember many years ago seeing some examples that use a movieclip as a source for a line.

View 1 Replies

ActionScript 3.0 :: Using BitmapData.draw(stage) - Error #2123 Security Sandbox Violation: BitmapData.draw

Jan 9, 2012

I am having an issue with using BitmapData.draw(stage). I am getting the following error:

SecurityError: Error #2123: Security sandbox violation: BitmapData.draw: file:///C|/Documents%20and%20Settings/bla...bla...bla.swf cannot access null. No policy files granted access. Here is a portion of my code:

var bd:BitmapData = new BitmapData(2800, 2100); bd.draw(stage);//this is where the error happens All of the files referenced (.xml/.jpg/.swf) are located in the same local folder as the main .swf. How do I get around this error? The main objective is to print the stage using PrintJob(). I am using Flash Professional CS5.5 and publishing to Flash 10.0/10.1. Let me know if I need to supply any more info.

View 4 Replies

Flex :: BitmapData Draw - Set Where To Draw?

Dec 16, 2010

i have a class thats create a class with bitmapData that merge 2 IBitmapDrawable. one of them is 24*20 while the other is 16*16.i want to draw the smaller first in a bitmapData object which its width and height are 24*20 but i want to draw it in the center of the big bounds.

[Code]...

View 2 Replies

Draw A Line Across A Map?

Oct 19, 2009

How do I draw a line across the USA starting in San Francisco in frame 1, moving through Kansas City in frame 5, and then extending to New York in frame 10. By frame 10 I'd like to see the whole line, representing the whole journey I took in my car over summer vacation.
 
I can make a "dot" do this in flash (ie without leaving a line trailing behind it) but I don't know how to make the line "grow" across the USA over time.

View 4 Replies

How To Draw During Runtime

Oct 23, 2009

I am wonder what tools or options I can use in order to have an object look like it is being drawn out while you watch a flash movie.So far all I can think if is draw it piece by piece over a few keyframes, but that could look choppy and take a lot of time.

View 1 Replies

ActionScript 2.0 :: Possible To Draw A Box

Mar 6, 2006

i was just wondering if it is possible to draw a box with as ( that ive done) and then using as select it and convert it into a symbol enabling me to use it later on.the code for my box is[code]

View 5 Replies

IDE :: How To Draw A Line

Jun 7, 2009

how to draw a simple line? Im not using designer (which means i call Document class method that ouputs everything).

View 2 Replies

Draw An Arrow In Flash?

Nov 9, 2009

Is there a quick way to draw an arrow in Flash? I have seen postings from 2006 which say there isn't, but I wondered if there is a way in CS4?

View 1 Replies

Can't Draw Over Imported Images?

Nov 15, 2009

why I can't draw over impoted images? I've animated something on paper and scanned in the frames. When I import them to flash it either deletes the line as soon as I draw it, or if I create a new layer the drawing stays in all frames, not just one.

View 3 Replies

ActionScript 3.0 :: How To Draw A Line

Jan 12, 2010

i am trying to create a line that can be draggable and extedable from start and end points of line.

View 1 Replies

Professional :: Draw On A Symbol?

May 5, 2011

I have a head drawn in Adobe Flash CS5. I've converted it to a symbol. I want to be able to draw a mouth, add a frame, erase the mouth (without erasing the head), and draw a new mouth, and repeat. However, when I convert the head to a symbol the mouths I draw ontop of it do not show up, and appear behind the head. I know converting the mouths into symbols will fix this, but that would take too long, defeating the purpose of what I'm trying to do.Is there any way to draw on a symbol?

View 1 Replies

Draw A Motion Path?

Jul 24, 2011

Any way which allow me to draw an arbitrary line with the pencil tool for instance, and then tell to flash to use this path as a motion path for an object on the stage by creating a motion tween. I know that this can be achieved by classic tween, but I look for a way to achieve the same effect but by using the new animation model of motion tween.

View 5 Replies

Flash :: How To Create Draw

Nov 25, 2011

How to create Draw with Flash ?

View 1 Replies

Flex :: Draw Dot On Linechart In It?

Jul 17, 2009

I have a line series in a linechart and a slider that goes from 0 to 200. When I now move the slider, I want to have a dot appearing at the chart so when I move the slider to 150, there should be a dot where the x-coordinate of the chart is 150.

View 2 Replies

Actionscript 3 :: Draw A Circle Using It?

Jul 27, 2010

How to draw a circle using action script (as a component) i tried some xample did not work.

View 2 Replies

Actionscript 3 :: Draw Something Like THIS Using Flex 3?

Nov 9, 2010

I am trying to create a "radar-like" control within our Flex application. See the following link for an example (sorry, small image...) [URL] This is my first foray into drawing with Flex. I would like to draw the main circles of the radar, the radar scanning shape, and circles/balls representing objects within the radar. These objects need to have the ability to be clicked on or hovered over so the user can get more information. I'm looking at Sprite's and Shapes, etc. but confused as which to use to create such a control.

View 3 Replies

ActionScript 3.0 :: Draw From Following Mouse

Dec 5, 2008

I'm trying to draw exactly what my mouse does in a movieclip and it works great except when i release my mouse it continues to draw. I have a MOUSE_DOWN that points to a function that listens for MOUSE_MOVE...this works fine. Then I have a MOUSE_UP and when I'm releasing my mouse it is not stop drawing? Anyone know how to stop the drawing but also not clear everything I just drew?

View 9 Replies

ActionScript 3.0 :: Draw Gradient Box?

Nov 7, 2009

i have drawn a gradient shape on the stage and i want to replicate it with code now.how the gradient looked on the stage.how do i spread it out more?, you can see on the picture that its wider than shape's height.and i am also guessing the angle...

Code:
var upColor:uint = 0x9999cc;
var downColor:uint = 0x000000;[code].....

View 0 Replies

ActionScript 2.0 :: Draw A Circle With It?

Jan 7, 2010

I am making a simple drawing application, and i have come across a problem. Im not very good with trig at all so i got the code for drawing a circle and customised it and it goes a little dodgy. Could someone tell me why it is happening, and how i should fix it?

View 3 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved