ActionScript 3.0 :: Allow The User To Create A Circle With A Specific Radius And Colour In A Certain Frame?
Jul 28, 2009
I need to allow the user to create a circle with a specific radius and colour in a certain frame (lets say frame 2), and then add that circle as a symbol to a different frame (say frame 1). First off, im simply creating a circle.. This is what ive got in frame 2 so far:
(in Frame 2 of the timeline)
Code:
stop();
import flash.display.DisplayObject;
import flash.display.Graphics;
import flash.display.Shape;
[code]....
Ive got this much working, but I dont understand how to convert the output of this function to a symbol usable in another frame..
View 3 Replies
Similar Posts:
Jul 29, 2009
I want to create an input box which directs a user to a specific frame, based on what they enter.I'm making a text-based adventure game, in homage to the ones of old, and basically, if someone enters say the word, "light" into the box, I want it to take them to the frame labelled "light".I also want the input box to respond ONLY to enter key pressing.
View 9 Replies
Mar 31, 2006
i need to change the colour of a graphic in a specific movie in a specific frame. if i have a movie clip instance-named "sidetext" thats 15 frames long, and i want a graphic in the movie, called "letterp" to change to one of four colours that i want it to randomly at frame 10 and stay that colour uintil frame 15, how can i do this?
View 2 Replies
Nov 16, 2009
I am no master of Flash. I was wondering if there was a way to tween the radius of a circle to be placed on the circumference of the circle. I want a student to see the radius being transformed to a curve and then placed on the circle. I will be teaching my students the concept of a radian.
View 1 Replies
Jun 11, 2009
How to slice a circle into same radius wedges, like so[url]...
View 2 Replies
Apr 23, 2010
I want to draw a circle on the scrren of a random x,y position and a random radius. Then, I would like to draw a line that starts at the center of the circle and ends at the spot where the circle ends, at its perimeter. All I have been capable of doing by myself was creating that circle and set the drawing position with the moveTo function to its center, but I don't know how to calculate the length of the radius, so I have the coordinates for the lineTo function.
View 7 Replies
Aug 18, 2009
I am created a circle using the following script,
[CODE]...
Now what i want to know is that can I increase the radius of the circle by applying tween class?
View 5 Replies
Jun 29, 2009
I am new to Flash & ActionScript 3.0 platform.My issue is: I am loading an image onto the stage dynamically using Loader & URLRequest classes. Whenever I click on existing circle[which gets created when I click on the loaded image, which is of Sprite type], the size of the circle should be increased to some extent(let us assume, basically circle(Sprite)is created with radius=3 when we click on the image, but, when we click on the created circle, it's radius must be increased to 5). It is the requirement.
So, for this to implement, Do we have any property or method to change the Sprite object's size directly?
[Code]...
View 4 Replies
Aug 24, 2009
I`m working on a app that you can draw lines.....like circles, rectangles... my problem is when a user draw a circle for example....i wanna be able to paint (change color) inside of this circle. I`ve tried working on Shapes with cacheAsBitmap = true and Bitmaps with BitmapData but it doesn`t seens to work.
View 4 Replies
Oct 5, 2010
I've this tabs that I wanted to make rounded only on top-right and top-left corners. But it ended up rounding all 4 corners.
What I did:
<mx:TabNavigator id="myTabNav" x="58" y="61" width="584" height="200" creationComplete="setColors(event)" styleName="myTabStyle">
<pages:One label="ThisOne" id="one" name="One"/>
[Code].....
As you can see I have the "focusRoundedCorners" to point to top-right and top-left but no luck. What I got is:
View 2 Replies
Aug 6, 2009
if its possible, via AS3, to create a frame label in a movieclip on a specific frame.
Obviously I can do it by manually by setting up labels on the timeline within the target movieclip, but I would rather use an array so I can loop through it, creating a label name on a the specific frame each time?
so for example I would end up with:
myLabelOne on frame 10
myLabelTwo on frame 25
myLabelThree on frame 115
etc
View 3 Replies
Sep 16, 2009
I'm using Flash CS4 with AS3. I'm building a website for a friend the problem I have. When a user clicks on a button I want it to play a movie clip then stop at a specfic frame. I want all the buttons to play the same movieclip but go to a different frame.
The current actionscript I am using is located on frame 1 is:
home_btn.addEventListener(MouseEvent.CLICK, homebuttonClicked);
function homebuttonClicked(event:MouseEvent):void{
gotoAndStop(0)
}about_btn.addEventListener(MouseEvent.CLICK, aboutbuttonClicked);
function aboutbuttonClicked(event:MouseEvent):void {
gotoAndStop("aboutme")
[Code] .....
This allows me to navigate to the right frame but does not play for obvious reasons, if I use the gotoAndPlay function its carries on playing to the end of the movie.
View 2 Replies
Jul 14, 2010
I want to create a flash document that allows me to change the colous of an image using a colour palette of my own. I am a complete beginner and have no idea where to start this, hence i would need to know what to do and how to do it. I basically want the image to be a simple 2d image that i will create using different layers in photoshop and import them into flash, the layer images will all be one colour so the colour of the whole layer changes. so the colour palette will be on the side of this and when i click on an image and then a colour the image changes to the colour i clicked.
View 3 Replies
May 29, 2011
I've got two concentric circles with their centers at (centerX,centerY). The inner circle has a radius of 100 and the outer circle has a radius of 400. If take a point on the circumference of the inner circle, I can draw a line from the center to that point. Let's call that point x1,y1). I now want to continue that radius out to the outer concentric circle and calculate the position of that outer point (x2,y2).
I'm adding a 3px 'dot' just to show where x1, y1 is on the screen. (Subquestion: I can't see it...not sure why.)This is what I'm trying:
var x1:Number = 100;
var y1:Number = 50;
var x2:Number;[code].............
View 1 Replies
Apr 10, 2010
Trying to do circle circle collisions via math which I'm really having trouble with. One circle (player) just moves from keyboard. The ball reacts to the player. All the code shown is in my players class and I passed in a reference to the ball.
On my enterframe I have:
Code:
var xmov1 = xSpeed;
var ymov1 = ySpeed;
var xmov2 = ballRef.xSpeed;
var ymov2 = ballRef.ySpeed;
[code]....
Perhaps I'll go with a box2d equivalent instead of trying out my own physics shenanigans.
View 2 Replies
Aug 23, 2008
In last frame of my movie I have some code like this on: gotoAndPlay(125); Now I want to pause my movie in last frame for 10 seconds and then execute above code . How can I do it with AS 2.0?
View 10 Replies
Apr 26, 2011
I bought a Flash video tutorial online for Animating and the FIRST step is to create a circle with the circle tool, and the guy does it online, and it fills itself in. I repeat his actions exactly and I cannot get the same result at all. I just get a circle.
View 5 Replies
Mar 17, 2010
i have a situation whereby the user can upload an an image to my application. Then they can manipulate it by scaling etc. What I want to do now is allow them to change the tint/colour of their image, for the purpose of getting it to suit the other elements of the page better. Is there any simple/third party code to do this does anyone know? I'm picturing maybe a slider or something to tweak it.
View 1 Replies
Mar 6, 2009
What I'm trying to do is make a dial-type of interface, where you click on a point on the edge of a circle and that point will rotate to another point at the top of the circle. What I can't figure out is how the make "Point B" rotate to "Point A", where "Point A" is always fixed at the top of the circle and "Point B" (and Point C and Point D, etc...) are located along different points on the edge of the circle. I'm using the tween function to rotate, so what I need to figure out is how to get the difference in the rotation between the two points.
View 7 Replies
Sep 15, 2010
how do i export specific frames not all frame. ex: if flash has 1 to 200 frames. here i want to export 51 to 150 frames as a movie. if there is any command or plugin to export movie like this.
View 0 Replies
Oct 24, 2010
I'm working on a project for a client, they want a simple drawing api which requests the user to draw a circle, or a shape on screen. The circle is then analyzed and a Score/Percentage of correction is returned. The drawing I have covered, how to assess the drawn circle against a perfect circle?
My first idea was to put invisible trigger points around the circumference of the shape and check for hit tests when the user is drawing. Another would be to track the dimensions of the left, right, top and bottom most bounding box and then find the radius, or something to that effect.
View 4 Replies
Dec 3, 2009
I have been doing really well figuring everything out up until now.[code]How it stands, what is this link pointing to? Can I make it target a specific frame in a specific movie clip?And if someone would be so kind and explain what this is saying in 3rd grader terms.
View 3 Replies
Sep 21, 2009
Basically once my animation loads I want to pull in an external SWF at a specific frame, basically like the "home page" swf that will display first. Underneath that I will have "About Us, Contact, etc..." and those will each load an external SWF into my movie clip. My movieclip right now is called mcHolder. Here is the code I am currently using for the buttons:
Code:
//About Us Button
function test2(evt:Event):void{
[code].....
View 1 Replies
Sep 3, 2010
In a flashfile I have a cirkel and the user shal fill the circle with different parts.
Code:
var t = attachMovie("fifth", "fifth1"+counter5_1, _root.getNextHighestDepth());
cirk1Array.push(t);
[code]......
View 0 Replies
Jun 18, 2008
I have a circle and a square on the stage. When you click on the square the circle will go to "circle._x = 300" when the circle is at 300 I want to make it when you click on the square the circle will go "circle._x = 45"
Code:
moveCircle = function () {
circle._x = 300;
if (circle._x >= 300) {
circle._x = 45;
}} square.onRelease = function() {
moveCircle();
trace(circle._x + "is the position of the circle");
}
View 5 Replies
Aug 9, 2010
I have an image on my frame. (a circle). I need this circle to blink on the screen based on user's input. The circle display time and the hide time should be input in a input text box in the beginning. Also this has to blink for "x" number of user defined cycles. I know how to control the delay between blinks but I cannot control the amount of time the circle stays on screen.
View 4 Replies
Sep 1, 2010
I'm trying to get the following movieclip smallbutton to link to frame 5 on movieclip cont.The way the timeline is built is as so:content_mc > cont > (more mcs) > smallbuttonThis seems to be an issue from every answer I've tried so far since the movieclip "cont" is not being called in the main timeline; first there's content_mc and then comes cont.How would I go about getting the movieclip "smallbutton" to link to the 5th frame of movieclip "cont"?This is for AS 2.0So far I'm at:on (release) { _root.gotoAndPlay("cont"); _root.smallbutton.gotoAndPlay(5);
View 7 Replies
Oct 23, 2005
So what I'm trying to do is create a random red colour. I thought it would be as easy as
Math.random()*0xFF0000
View 2 Replies
Jul 22, 2011
Im using Color transform to change the stage background color.
However on the first pass it works, jumps to frame 3 and changes colour. Then I have a button which sends back to frame 2 and transforms colour to original.
On the second frame 3 does not change colour. The action script on frame 3 seems to only be executed once but it still manages to load the image from the url. So some of it is being executed.
View 3 Replies
Feb 25, 2010
I want to use flash's gui to do some tweens, creating line black and white drawings (which I know how to do).
NOW THE CHALLENGE:
I now want to be able to extract/infer from the stage which pixels are black and which are white (and fill up a array).
I have two lines of inquiry;
1. Convert the vectors created by the tweens into a "bitmapdata" and then use the getPixel() method to reference the pixels. - This would be great for me (if I could do this on a frame by frame basis), but I do not know how to convert the tween created vector into a bitmapdata object
2. Do some magic and be able to know what vector lines are on the stage, including their position, length etc.
View 1 Replies