ActionScript 3.0 :: Create Buttons That Let Users Set The Size Of The Shapes That They Paint?

Jan 30, 2012

HOW CAN I CREATE BUTTONS THAT LET USERS SET THE SIZE OF THE SHAPES THAT THEY PAINT? I have written syntax that let mouse movements paint ellipses and rectangles and I have also added buttons that allow users to switch between painting ellipse and painting rectangles.

[Code]...

View 2 Replies


Similar Posts:


ActionScript 2.0 :: Brush Size Change And Undo For Paint App?

May 8, 2006

im currently developing a flash paint app for the psp and im stuck in a little rut here i need a way to allow the user to change brush size depending on what they press aka if they press pencil get a thin line stroke,if big brush big line stroke is there anyway of doing this?

and the next one how can i make a undo button so it undos the last line done

[Code]...

View 7 Replies

Create Paint Splatter Effect?

May 20, 2009

Does anyone know how to create this effect? http:[url]............

View 1 Replies

ActionScript 2.0 :: Create A Cut Tool Like MS Paint?

Aug 11, 2008

how to create a cut tool like MS Paint with flash8.

View 2 Replies

ActionScript 3.0 :: Create A Set Of Buttons Based On Loaded Images From Xml That OnClick Turn Red Or Grow In Size?

Jul 11, 2008

I want to create a set of buttons based on loaded images from xml that onClick turn red or grow in size, whatever, Clicking another turns that button red and the old one back to default. Alsoo it will attach a animated movieclip onclick to the button and when pressing another button, it swifts to that button.

Code:

var tracktype:Array = new Array;
var imgArray:Array = new Array;
var links:int;

[code]....

But Now the problem is that when another button is clicked I have to add the listeners back on the button, but I cant get the button because they all have the same name. Same with addChild the animated movieclip. Can't remove it. The buttons have a variable name, and can be unlimited.

View 8 Replies

ActionScript 3.0 :: Create MS Paint Like Application In Flash?

May 30, 2010

I am creating a MS paint like application in flash.... for this i have taken a movie clip named board.....nd i am allowing to draw different shapes in it through drawing API. But i want to create a bucket tool so that when user click in the shape drawn in movie clip (through addchild()). The color of that shape should change..

View 5 Replies

ActionScript 2.0 :: Create Paint Application / Sketch Book In Flash?

Mar 27, 2007

I want to create an paint application or sketch book in flash. But finally the design should get saved for perticular user. need to store it in database.

Can i send Movieclip to PHP? Will i able to retrive that movieclip again to show what user has saved.

View 4 Replies

Flash :: Professional :: Create A Simple Paint Visualizer - Display Walls

Apr 4, 2011

i'm trying to create a simple paint visualizer in flash. need to display two walls for example and a vertical color palette for the user to choose from. an example would be the following link [URL] (it's very advanced compared to what i need but i couldnt' find a simpler one on the web).

View 3 Replies

ActionScript 2.0 :: Make The Site So That Its Size Is Dependant On The Users Resolution

Feb 3, 2003

I have created a website 900px by 600px, and need to know how to make the site so that its size is dependant on the users resolution.( I have had complaints of the text being too big in 800 by 600, but too small in 1600px by 1200px) the site itself is created in flash 5 if that is of any use.(although wouldn't it be something more to do with the html coding?

View 3 Replies

C# :: Create Images Using Shapes?

May 24, 2011

Im trying to create a drag and drop module which can be used to build an Image. EX: Using a triangle and rectangles to create a House.

I have created the drag and drop module but I cant make them fix with each other.

I'll explain the functionality a little bit, but forgive my English if any mistakes since it's not my native language. The user is given a set of shapes and a question like "CREATE A HOUSE" so he should be able to drag the shapes that is given and and build the house.

View 3 Replies

ActionScript 3.0 :: Auto-resize Image Based On The Users Screen Size?

Dec 10, 2010

How can i make a image resize based on the users screen size in flash?

View 4 Replies

ActionScript 3.0 :: Way To Create Custom Shapes

May 27, 2011

Go about to making a custom shape for a hill. I want to import it from photoshop where I made it but when I do it comes in as a square so instead of the character moving up the hill it goes to the top of the square and drops when the image ends.

View 2 Replies

ActionScript 3.0 :: Center A 1966px Wide Flash Regardless Of The Users Resolution Or Size Of The Monitor

Nov 1, 2009

how to center a 1966px wide flash regardless of the users resolution or size of the monitor?

..and without resizing it just cropping both sides of it in the browser.

View 5 Replies

ActionScript 3.0 :: Make Image Resize Based On The Users Screen Size In Flash?

Dec 12, 2009

How can i make a image resize based on the users screen size in flash?

View 4 Replies

ActionScript 2.0 :: How To Create Class That Draw Custom Shapes

Jan 5, 2007

I'd like to learn how to create classes. For instance, I'd like to create a class that draws a custom shape. Like an arrow that is just a rectangle with a triangle on the end. I'd like to be able to do this sort of thing:

myArrow = new Arrow();
myArrow._x = 10;
myArrow._y = 50;
myArrow._width = 100;
etc . . .

View 2 Replies

ActionScript 3.0 :: Import Shapes Directly From The Library As Shapes And Not As Sprites / MovieClips?

Feb 17, 2009

I have a question about shapes (i mean the flash.display.Shape class). Is it possible to import Shapes directly from the library as Shapes and not as Sprites/MovieClips? Shapes are supposed to be faster than MovieClips/Sprites, right? So why is it only possible to import MCs/Sprites from the library? I understand that generally shapes could be created solely by actionscript, but in my case the shape comprises of many points and is curved - so it's quite infeasible.

Is there maybe some sort of plugin to generate code that would draw the desired shape from a drawn shape in CS4? And a last one: Are there any benchmarks out there for performance comparison between sprites/mcs/shapes? How much performance do i loose by using a sprite instead of a shape?

View 2 Replies

Flash :: Create New Shapes In The Graphics Folder In The Library Of A Cs4 Project?

Jul 5, 2010

Here in Flash CS4 Explorer, I have shapes. It's intuitive that I be able to right-click on Scene1, and be able to Insert Shape. Can't. I go to the frame. Can't. I right-click everywhere. I see 'Create Shape', but everywhere I see it, it's grayed out - won't let me.
 
How do I create new shapes in the graphics folder in the library of a flash cs4 project?

View 2 Replies

Actionscript 3 :: Create Multiple Shapes And Store Them In An Array To Dynamically Move And Change Them?

Mar 31, 2012

i want to be able to create multiple shapes and store them perhaps in an array to be able to dynamically move them and change them.is there a way to have a shape object and store it an array?so that i can do something like shapeArray[0].x =100 current code

for(var i=0; i<10; i++){
var sprite:Sprite=new Sprite();
sprite.graphics.lineStyle(1)

[code]...

View 1 Replies

ActionScript 3.0 :: Users To Navigate With Solely The Previous And Next Action Buttons?

Sep 16, 2009

as a follow-up to my question earlier. Where would I be able to locate the transition script so that I can delete it alltogether and allow users to navigate with solely the previous and next action buttons.  (And what verbiage [more or less] am I looking for)?

View 3 Replies

ActionScript 2.0 :: Create A Swf That Retrieves Users Location

Mar 2, 2009

i'm trying to create a swf that retrieves the users location (town)I've looked about online and it seems this could be done by using longitutde/latitude values for example(Guessing thats how you would do it - open to suggestions though!)I've seen working examples of this on various peices of flash that magically tell you what town your.

View 2 Replies

ActionScript 3.0 :: Create A Grid Where The Users Can 'draw' Across It?

Jun 8, 2009

I'm trying to create a grid where the users can 'draw' across it and change the colors of the grid squares to a chosen color.In the following code, I'm creating the grid with squares. I've got the functionality 'working', but it's only working on the last square instanced.How do I get it to work on all the squares, not just the last one?

Code:
package {
import flash.display.MovieClip;
import flash.display.Sprite;
import flash.events.MouseEvent;

[code]....

View 5 Replies

ActionScript 1/2 :: One Button Active At Once - Force The Order In Which Users Can Click Buttons?

Oct 7, 2010

I have 8 movie clips.  They are set up to disappear when clicked.on (release) {this._visible = false;}The problem I am facing is that I want the movie clips to be clicked in a certain order, so mc1 has to be clicked (and disappear) before mc2 can be active and click-able.  That way the user has to click on them in order for them to disappear.

View 22 Replies

ActionScript 2.0 :: One Button Active At Once - Force The Order In Which Users Can Click Buttons?

Oct 7, 2010

I have 8 movie clips. They are set up to disappear when clicked.

on (release) {
this._visible = false;
}

I want the movie clips to be clicked in a certain order, so mc1 has to be clicked (and disappear) before mc2 can be active and click-able. That way the user has to click on them in order for them to disappear.

View 1 Replies

Create A Database That Logged In Users Could Access And Add Customization?

Nov 27, 2010

I want to make a game where a user logs in. Once the user logs in, they have access to a database (let's just say a database of weapons). They could choose a certain amount of "weapons" and every time they log in, they still have the same weapons, regardless of cookies, because the "weapons" are linked to their username. Then the users could use their weapons to battle other users. Also, the user's username keeps track of their wins and losses. I have newb to basic flash knowledge (I took an animations class); I could animate, make buttons, websites, etc. Does anyone have some insight that could point me in the right direction?

View 2 Replies

ActionScript 3.0 :: Flash App That Allows Users To Create Mini Animations?

Jan 17, 2011

I am looking to build an app that allows end users to draw and save mini animations (simple predetermined shapes that move in 2D).  So far I have a written a app that allows the user to draw a single frame using simple shapes and lines, but I am having some small troubles at this stage, and have not attempted to allow the user to animate or save the drawing.
 
If anyone knows of a tutorial or some other resource to put me on the right path I would be very grateful.  I can also share what I have if anyone would be willing to give me some pointers

View 2 Replies

Flash :: C# - Plugin That Allows Users To Create A PDF Or Image File?

Jul 10, 2010

I am developing a ASP.NET web site where users will need to be able to create their own business cards. So, I'm looking for a tool (most likely Flash) that I can easily integrate into a web site and lets users add text and custom images to their cards and then create an image and/or PDF from their work.

is there a plugin that does this?

View 2 Replies

Javascript :: Create A Web Widget For My Website Users To Insert On Their Blog?

Nov 24, 2009

For my wishlist site, I would like to propose widgets to my users in order to publish their wishlist on their blog or personal website. The idea is to propose a few lines of code to my users that they only need to copy/paste to insert the widget displaying their wishlist. What is the best way to create/develop a widget ?

[Code]...

View 2 Replies

ActionScript 2.0 :: Create An Online Brochure That Users Design With Products?

Aug 12, 2003

i'm trying to create an online brochure that users design with products/images they've selected. users will be able to drag a thumbnail to a pre-designed area, then swap them around to their liking. currently i'm in the beginning stages and just learning the power of actionscript.

i've attached two sample .fla files i've been working with. the first sample i have two thumbnails drag to a target and enlarge to a defined size. the second sample i used a tutorial from flashkit --- drag drop swap. it works but the as is not up-to-date. i'm trying to incorporate the two ideas together but get bizarre effects. most of the examples i find are close but no cigar.

View 7 Replies

Create A Flash Application Where Users Will Have Access To 10, 5 Seconds Audio Loops

Oct 8, 2010

I want to create a flash application where users will have access to 10, 5 seconds audio loops. They can choose any 4 tracks to make a 20 second track. I then want that mp3 to be stored somewhere or flash to create to a file which can be sent to friends in facebook where they can listen to that beat. There will be a little button at the bottom saying 'click here' to make your own beat.

View 1 Replies

Create Simple Flash File That Allows Users To Make Their Own Spider Diagram And Then Print It?

Aug 30, 2011

I was wondering is it possible to create a simple flash file that allows users to make their own spider diagram and then print it.

Is it just a matter of letting them create their own boxes and labeling them?

View 3 Replies







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