ActionScript 2.0 :: Painting Program Key Press Variables

Dec 1, 2010

I'm currently working on a few small paint programs designed to emulate certain famous painters. I'm using a pretty basic AS2 painting program and simply manipulating it to my needs, but have run into a few problems that trial and error have not been able to fix.For two of the programs I would like the up and down arrows of the keyboard to change the size of the brush, which is currently set by the variable ranWidth (one of the other programs uses random widths for the brush).For one of the programs, the left and right arrows will increase or decrease the paint opacity.One of the programs will be a pointillism style drawing program, so instead of drawing a line as it does currently, I'm trying to have it draw a series of dots, without having to click down every time.Third, my color selection right now changes randomly each time the user clicks down. This works fine for some of the programs, but others it really is neccesary to choose a color. I've tried creating buttons with on release functions that would change the color variable but havn't got them to work properly.I know its a bit of a list but I think most of the coding is fairly simple, I'm just new to actionscript and trying to learn the ropes. I've used keys to change items before but am not having any luck.Here is my basic script for one of the painting programs. This one simply draws lines in different colors at random sizes.[code]

View 10 Replies


Similar Posts:


ActionScript 3.0 :: Integrating Painting Program With Fluid Layout

Jan 7, 2010

I am making a flash website and I am implementing a fluid layout. In the website I made a drawing program that is supposed to move along with the rest of the elements of the website when the window is resized. Now the problem is not the drawing program itself, ive got that working very well, the problem is when the canvas movieClip onto which the painting is being done is moved when the window is resized, the movie clip does not stay on centre, and the drawing is displaced outside the canvas movieClip and no longer happens on the mouse X and Y.For the sake of simplicity I made a simplified version of the drawing program with the fluid layout code and drawing code. No point in going through 200 lines of code when the problem lies within 10 lines of code.[code]The pink box is the canvas the user is able to draw on. The grey box is used to test the fluid layout code and to give coordinates for the pink box. When the file first loads both the pink and grey boxes are side by side, during the resize event they should stay side by side, however they do not.

View 1 Replies

ActionScript 3.0 :: Change The Name Of The Variables While The Program Is Running?

Oct 19, 2010

I have this code:

ActionScript Code:
for (var j:int = 0; j < 20; j++){
if (values==j){
var "ingredient"+j:"Ingredient"+j = new "Ingredient"+j();

[Code].....

it doesn't work for what are probably obvious reasons but I show it to give you an idea of what I'm trying to do which is change the name of the variables while the program is running.

View 6 Replies

Options For Passing Variables From AS2 Swf To AS3 Swf On AS3 Button Press?

Feb 14, 2011

I have 2 swfs, one image loader which I built a while ago and will eventually update to AS3 and a newer swf I built in AS3. I want to be able to 'pull' a variable from the AS2 swf when a button on the AS3 swf is pressed. How might i be able to do this. LocalConnection wont do it I dont think - i cant load the AS2 swf into the AS3 swf and obviously cant do the reverse though this would be the way to do it if it were possible. So when a button in the AS3 swf is pressed I want to call the AS2 swf and return a variable from the AS2 swf (the filename of the current image). Would both swfs sharing ExternalInterface work?

View 2 Replies

ActionScript 2.0 :: Setting Variables On Press And Release?

Oct 14, 2002

I am trying to create a scrolling text section for a cd-rom I am creating.I have created buttons for the scroll up and scroll down and so far all I am able to get is a click click click to scroll up and down 1 line at a time.Would prefer to make a loop so when you hold down the button it "scrolls" until you release.Have had no luck in setting variables on press and release.

View 6 Replies

ActionScript 2.0 :: [CS3] Setting Variables Through Button Press For Scripted Animation?

Jun 3, 2009

getting the following working:

Code:
stop();
import mx.transitions.Tween;
import mx.transitions.easing.*;

[code].....

What's supposed to happen is when you click button "go_0", the object "square" will animate moving down.

View 2 Replies

ActionScript 3.0 :: Add An Exit Button Onto Program So When Its Clicked It Exits The Program Completely

Nov 4, 2008

Im trying to add an exit button onto my program so when its clicked it exits the program completely.. I've tried some of the suggestions on the forums but they arnt working. what I have been using and its not working..

// CLICK to Exit
exit_Btn.addEventListener("mouseUp", goExit);
function goExit(evt:MouseEvent) {
fscommand("quit");
};

View 9 Replies

ActionScript 2.0 :: Start An Unrelated Program (such As Window's Media Player) From Inside Of A Flash Program?

Sep 29, 2010

Is there a way to start an unrelated program (such as Window's media player) from inside of a flash program?

View 2 Replies

ActionScript 2.0 :: Program A Timer For A Typing Tutorial Program?

Mar 24, 2003

I need to program a timer for a typing tutorial program. It needs to go to 5 minutes. When the timer gets to 5 minutes the movie has to go to frame 13 which displays the results of the typing test.

View 1 Replies

ActionScript 3.0 :: Painting DataGrid Cell?

Jun 20, 2011

var cr:CellRenderer = dgv.getCellRendererAt(0,0) as CellRenderer;
cr.setStyle("upSkin", new CustomCellBackground());

where dgv is DataGrid instance, CustomCellBackground - is my MovieClip which is simple rectangle filled with some color.

View 7 Replies

ActionScript 2.0 :: Painting Movieclips With Masks?

Nov 9, 2011

I am dynamically creating moviclips.. when I create a movieclip(mc1) this movieclip present a wall(for painting).. On this wall I create several windows(holes) which a present as mask for a wall, so that only the color of the wall is viewed, but the window is transparent..

when I am done with this I have for example 3 walls(mc1, mc2, mc3) with masks included..now on a button action I want to enable each movie clip for painting->painting is done so that you pick a color in a palllete and then click the wall you want to paint.. I do this with this code:

btn_color.onRelease = function(){
for(i=1; i<=stMC; i++) //stMC is nubmer of created mc's
{

[code]....

The code works great for the last movieclip created.. but when painting others it paints the entire wall in chosen color, so it colors the transparent windows(were set as masks as well)..

View 2 Replies

Actionscript 3.0 :: Screating A Painting App In Flash?

Jan 12, 2011

i have a problem with functions, i'm creating a painting app in flash as3. i want to draw two different style a pen and rectangle.

When i draw pen style in first frame there is no problem, but when i click rectangle style in second frame it is drawing with both style. How can i stop or kill other function?

How do I make both of the not drawing. And How can i undo my last action in drawing?

Fla is in the attachement (CS4 version)

in first frame drawing pen;

Code: Select allvar clip : Shape = new Shape();
addChild (clip);
stage.addEventListener(MouseEvent.MOUSE_DOWN, _handleMouseEvent);
stage.addEventListener(MouseEvent.MOUSE_UP, _handleMouseEvent);

[Code]....

View 1 Replies

ActionScript 2.0 :: 2 IPs Painting At The Same Time On Same Canvas?

Jun 18, 2004

I`trying to create an MC that when browsed two people on two different terminals (2 IPs, on two different continents) can actually draw on the same canvas...

View 8 Replies

ActionScript 3.0 :: Painting Text While MOUSE_DOWN?

Jun 8, 2011

I'm developing a word game for mobile and I'm trying to solve a bug:I have many squares with letters and when the user mouses down (or touches) a letter, the app starts to put together a word. Every letter that is moused over is added to the word and I have a textfield that shows the current word the user is trying to put together.Every letter added to the word (text.change event) I check if this is a word that is available in my dictionary (array of words). If this word is correct and exists, I want to paint the color of the textfield showing the word so the user would know that this is a valid word, even if he doesn't know the word.

My problem is that this code runs and traces correct and in the right moment (the trace "word exists" is being called when I add a letter that makes the word valid. But the painting of the word just happens when the text changes again. This causes the app to make the word blue after adding or removing a letter from a "valid" word, but in this case I want it to happen immediately when the user reaches a valid word.Can the problem be happening because the mouse is down?

Code:
if (dict.wordExists(word))
{

[code]......

View 1 Replies

IDE :: CS5 Tapered Painting - Convert The Lines

Jul 9, 2011

I've recently decided to trace over an animation from a cartoon as a reference for my own animation that I am making. Now, my hang up is that I use the line tool for the tracing, and then convert the lines to paint so that I can shape them better to match how the characters from the show look. Where the legs connect to the body the line get gradually thinner from where it started.

I don't have a tablet and trying to do it with the mouse leaves too many lumps. The results are not acceptable, nor efficient. In all, I have about forty frames to optimize my traced lines, to the good looking tapered paint. The show was done in flash, so I know it must be possible in CS5. Aside from the subselection tool (Which horribly warps my lines and is extremely tedious for a frame by frame animation), does anybody know a more efficient way to do this?

View 1 Replies

ActionScript 3.0 :: Textfields Painting Into BitmapData Alias?

Jan 24, 2009

If I create a simple Textfield and place it on the stage, it looks good.

If I take the same Textfield, and paint it into a BitmapData (first putting the Textfield into a Sprite so I can paint it), the resulting BitmapData is not the same, pixel for pixel, as the original textfield on the stage.

refer to the attached image for a zoomed in view on the differences in the aliasing.

What can I do to keep the two pixel-for-pixel identical?

Code:
private static function doTest( stg:Stage ):void
{
var tf:TextField = new TextField();
tf.text = "TESTING";

[Code].....

View 1 Replies

ActionScript 3.0 :: Switching Between Painting Ellipses And Squares

Jun 23, 2010

I'm doing a tutorial from Adobe Flash CS4 classroom in a book. They're suggesting the following: "create buttons that allow users to switch between painting ellipses and painting squares". I've created the class files for the cirlcle and the square and I've set two hot keys to switch between painting circles and rectangles(it does not work) Now I'm trying to create the buttons.

package {
import flash.display.MovieClip;
public class Rect extends MovieClip {
public function Rect(w:Number = 40,h:Number = 40, color:Number = 0xff0000) {
graphics.beginFill(color);
[Code] .....

View 1 Replies

ActionScript 3.0 :: Stop A Function In Drawing ( Painting ) App?

Jan 12, 2011

i have a problem with functions, i'm creating a painting app in flash as3. i want to draw two different style a pen and rectangle.

When i draw pen style in first frame there is no problem, but when i click rectangle style in second frame it is drawing with both style. How can i stop or kill other function?

How do I make both of the not drawing. And How can i undo my last action in drawing?

Fla is in the attachement (CS4 version)

in first frame drawing pen;

Code:
var clip : Shape = new Shape();
addChild (clip);
stage.addEventListener(MouseEvent.MOUSE_DOWN, _handleMouseEvent);

[Code]....

View 5 Replies

ActionScript 2.0 :: Implement A House Painting Application?

Oct 5, 2011

I am trying to implement a house painting application. I've done it so far that I can draw a shape(creates a movie clip) and fill it with any color. But now I don't know how to "make holes"/transparent areas into a certain movie clip for windows or anything that should not be colored so taht the backgorund will be displayed. [URL]

View 5 Replies

ActionScript 2.0 :: When Press A Button Mc Starts A Countdown But Every Other Press Doesn’t Reset It?

Jan 13, 2009

How can i make it so a when you press a button it starts a countdown but every other press dosent reset it?

View 14 Replies

Make An Interactive Flash Movie That Explains A Painting?

Mar 5, 2010

I'm new ActionScript, and programming in general, however I've been doing a lot of tutorials and reading my Flash CS4 Bible, and cruising the forums like crazy trying to figure out how to go about scripting for my project.

Situation: I need to make an interactive flash movie that explains a painting.when you rollover different sections of the painting, I would like the rest of the painting to dim, and for that section to grow. if you are to roll out, it goes back to the first frame and the same thing happens for all of the sections.

If you are to click on any given section, there will be a voiceover, and possibly a little animation that goes along with it. if you either watch the whole thing or click anywhere on the painting, it should go back to frame.I've thought of a few ways to do it, but can't seem to get the scripting right.for now, I'm only worried about the first part because the rest is going to be similar.Frame 1 I have the painting and an invisible button over a section. frames 2-7 is that section growing and the rest of the painting getting dim there is a stop(); on frames 1 and 7

[Code]...

View 5 Replies

ActionScript 3.0 :: Combining Painting Application And Jpeg Encoder?

Feb 8, 2011

I am trying to create a painting application that allows you to export as a jpeg. I have the code for the jpeg encoder, and for the color changing--but I am having trouble combining the two...

This is the jpeg encoder sketching app:

ActionScript Code:
import flash.display.Sprite;
import flash.events.MouseEvent;
import com.adobe.images.JPGEncoder;

[Code]....

It would also be great to be able to clear the canvas_mc by clicking a button..

View 7 Replies

ActionScript 3.0 :: Combine One Tab Press And Continuously Press On Keyboard

Mar 13, 2010

I have a problem when I making a game Flash with action script 3,. I want tomake my character move when the key helding and I want  my character attackwith one tab press either

View 3 Replies

ActionScript 1/2 :: Press +1 Text Increases By One, And When Press -1 It Decreses

Aug 29, 2011

I have text field which is 0 by default (score_txt)Two buttons +1 and -1 (plus_btn and minus_btn) When I press +1 text increases by one, and when i press -1 it decreses

View 4 Replies

Actionscript 3 :: Flex: Difference Between Defining Sprite's X - Y Coordinates And Painting Object In Some Location

Oct 14, 2009

I have a task: I need to place about 100 sprites on one canvas (with prepared grid on it). I need to place them as invisible (circles) stones, on the board, and make visible only on mouseover. The problem I come across is following, I can't place those objects accurately into the nodes on the grid.

[Code]...

View 2 Replies

Actionscript :: Connection From Program To The Server Using XAMPP Server And Program In Flex?

Oct 26, 2010

i have the following code ]

[Code]...

but no connection established what is the reason behind not know help required and one more thing XAMPP is installed in D: drive.

View 1 Replies

ActionScript 2.0 :: Press Start Drag On Press Stop Drag?

Jun 17, 2005

i have an object that i want to drag and drop with the same event.Something like on press start drag and on press again stop drag. I'm sure it's pretty simple with and if and else statment but i can't find how to do that...The best i have done so far was this:

[Code]...

View 4 Replies

Flash8 : Run A Flash Program From Another Flash Program?

Jan 29, 2010

I have created a flash program and I would like to run a second flash program from inside the first. To explain, say I am running a program that draws a circle and fills it with a color. Then, I have designed a second program that will divide a circle into sectors by entering percentages, to turn that circle into a pie chart. Is there a way to be running the "draw a circle" program and have a button that opens the "divide the circle into sectors" program in a new window and then passes information from that program to the first program. I am sure I will have to send the information from the second program to an XML file and then have the first program recieve it from the XML file (which I can do), but I don't know if I can run the second program from inside the first program.

View 1 Replies

ActionScript 3.0 :: Use A Web Program?

Dec 7, 2009

I am trying to make a tutorial on how to use a web program. I have some screens from the website and I need to animate some text and arrows to show up on Q once the voice over mentions them. I have set marker tracks on my MP3 files, to which I want certain action to happen when the player reaches each track.

View 5 Replies

C++ :: Program Interacting With Web

Jan 4, 2012

How or what do I need to know programming wise in order to interact with the web using c++. For instance i want to wrote a program that automatically sends invites to players on yahoo chess. How would i go about doing this?

View 2 Replies







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