ActionScript 2.0 :: When Creating A Dynamic Square With The Api - Won't Drawing Api Square Object
Dec 2, 2010when creating a dynamic square with the api. 400 by 400. I am not sure why it wont draw the object
[Code]...
when creating a dynamic square with the api. 400 by 400. I am not sure why it wont draw the object
[Code]...
I have this game, and some levels have a moving square as the player, you move the square with your arrow keys.... I want to have an enemy square that chases the player square.... They only chased mario when you didn't look at them? Kinda like that...... but in this regards:
I only want the enemy square to chase the player square when the player square moves.... soo say the player square moves 5 pixels per movement (know how to do all that), I want the enemy square to move when the player square moves..... towards the player square at like 7 pixels per movement..... so eventually you won't be able to avoid the enemy square....
I am trying to work with this flash tutorial -[URL] So far it draws with a simple rounded line. I have been extending this application by making the drawing board bigger and other small things. I now want to be able to choose the line style. Currently it is rounded and I want to choose and draw with other shapes - square, forward slash (/), backward slash (). Is this possible? If so, could you explain how I could go about it?
View 1 RepliesI have a function that draws a square, when that square is clicked on another function draws a line. I want to erase that line when its clicked on a second time. Graphics.clear, erases both the square and the line. Remove child gives me an out of bounds error. Not sure what to do.
[Code]....
I've found a similar thread to this but my problem's a little different.I've never used the drawing function on Flash and I followed the fairly simple tute on it just recently.Is there any way to confine the drawing area to a specific shape. Mine's a rectangluar shape that's rotated. You can download my FLA with the background image here > url...I'd like to try and keep it confined to the notepad area.I think it might be a hitTest thing with if/else. My other thing would be to just rotate the notepad so that it's straight.Even still i'd like it confined to the area beginning with the corner of the notepad, not the corner of my movie.
View 2 RepliesI what to make a function that is drawing a square without the fill only the lines in refresh(sometime fast, sometime slow). And I don't have a clue about the starting point of this function.
View 1 RepliesI am trying to make an effect where a bunch of square fade in sequence (without using Voetsjoebas code btw, I'm practicing my own), but I have a problem with the handlers. I want to assign a handler to _root["square"+(i-1)] but it doesnt work if I do. Check out the comments in the code as well. What you see now is the proper effect but I need to move the handler to a different place so that I can assign a different handler to _root.
View 9 RepliesI have a square object in the middle of circle.and i can move square object using up, down, left, riht arrow keys. I need script for when square object touches circle, then it goes to back, I have use for this below code :
var myobjdim:Array=new Array;[code].....
In above code "myobjdim" is square object and "bg1" is circle object..
I am making some buttons in Flash cs3. The text (button-name) within the button and the url will be set outside of flash. I want the text in this square to be centered in the width (this i can do simply in Flash) and I want the text to be centered in the height too doesn't matter if the text is one line or two line text.
View 1 Repliesi am making some buttons in Flash cs3. The text (button-name) within the button and the url will be set outside of flash. I want the text in this square to be centered in the width (this i can do simply in Flash) and i want the text to be centered in the hight too doesent matter if the text is one line or twoo line text. find images of what i mean in the attachments
View 0 RepliesI developed so far, a function to resize objects (images, shapes) and center them inside a hexagone clip (similar to the bees hexgagon cells).
function imageResizer (b, maxW:Number, maxH:Number) {
var r:Number;
r = b.height / b.width;
if (b.width > maxW) {
b.width = maxW;
b.height = Math.round(b.width * r);
} if (b.height > maxH) {
b.height = maxH;
b.width = Math.round(b.height / r);
}}
Symptoms: The function resizes the object being passed to it, but, there's still some room to fill inside the square, but now it's empty! is there any solution to resize the objects with max width/height and still be able to fill the whole area of the hexagone resizes.
I've had this problem with a couple of different files. Whenever I contiuously change variables that define Dynamic Text using ActionScript, the text begins to appear with square characters in front of it. Note: This doesn't happen on the computer that I made the Flash file on, just every other computer I've tried it on.
View 2 RepliesI would like to change backgroundColor of an drawn object(square) by mouseover. I acutally found the function for mouseover in action scripts but BackgroundColor("#ccc") does not work.
View 3 RepliesI've been using flash for a whopping 3 days now, and I've stumbled onto a problem that I can't seem to find a way around. I'm using flash 4, due to the fact that #1 it's all I've got, and #2 the new flash mx 6 won't run on the old ass computer I'm using. This is my problem: I import a .bmp image and edit it in flash to make portions of it animated. The image is a symbol (I think it has to be anyway to animate it...) Everything runs fine when I use the basic play/rewind buttons to test the animiation, but when I make it into an executable, or when I go to the menu and hit "Test Movie", the image shows up as a red square. The animation I added still runs, but the actual image I imported is a red square.
View 5 RepliesWhen I'm working on the .fla I don't see anything unexpected, but when I view the .swf or export it there's a little red square in the animation. It moves with some of the stuff I have moving in the animation like they're attached somehow, but I can't find it in the fla to get rid of it.
View 1 Repliesif I set the stage to be 800 px X 800 px, it does not appear square, neither does holding shift + drawing a rectangle. However, drawing an oval and holding shift seems to create a circle(though it could be I can't notice it because it's too small). Is there some way to make these appear square?
View 6 RepliesBeen looking around this forums (without result) how I can add a square to make a 1 pixel border around my thumbs. I've been using following gallery
[URL]
change to the original code off the gallery.
I found the following code within a tutorial on the Kirupa website showing how to draw a square using ActionScript but I was wondering if it would be possible to modify this so that each line is animated in turn to construct a square (similar to the mouseover effect on the URL...website (right column 'Showcase' graphic)):[code]
View 3 RepliesThis is my code:
Code:
var userData = new Array();
userData[0] = 100;
userData[1] = 24;
var dataLength = userData.length;
for(i = 1;i < (dataLength + 1); i++){
_root.createEmptyMovieClip('box' + i, i + 999);
['box' + i]beginFill(0x000000, 100);
['box' + i]moveTo(0,0);
['box' + i]lineTo(100, 0);
['box' + i]lineTo(100, 100);
['box' + i]lineTo(0, 100);
['box' + i]endFill();
['box' + i]_x = (i * 100) - 100;
trace(['box' + i]);
}
What should happen is it displays 2 squares, one called box1, the other box2, but it only displays one, I think it is only displaying the second one.
Lets say I have a square like this[code]...
How can I change the color of the border (i.e lineStyle) from 0xffffff to 0x000000 at runtime, so if a user clicks a button the color of the border changes from black to white.
I created a square using the rectangle tool, there are a few options on how to change it in the properties panel, however I don't see anything allowing to to round the corners of it. How do I do that? (I'm using Adobe Flash CS4 by the way.
View 2 RepliesHow can i find the square of a number?
View 5 Replies1 is the main body of the website, and the other file has hundreds of layers that each contain some sort of code that imports XML and JPG images to create a slideshow. Now, I have created a grey square and then on playing of it I want the square to be replaced by this Slideshow, but still be able to apply some motion tweens like Fading etc in the main body.
View 1 RepliesI recently purchased a new Acer notebook computer for my business travel in late March 2011. The machine is running Windows 7 64bit OS and had IE8 64bit installed. I installed IE9 upon receipt of an update notice from Microsoft and downloaded Adobe Flash Player 'Square'. I am unable to view any internet video on news websites (ie: CNN, Fox, MSNBC, etc). The screen is completely blank, but does contain the audio. I do receive video for any 'You Tube' file I have attempted. I have removed and reinstalled both IE9 and Flash 'Square' multiple times after attempting various 'fix' I have found on line, but the problem persists and I cannot view video content. This is forcing me to use 'Chrome' when using this machine.
View 4 RepliesI am relatively new to flash. I am trying to create a square grid and add it to the movie.When I open the actionscript panel by pressing F9 and when I type the following code, var square:SquareClip = new SquareClip();addChild(square);
Things are working fine (the squareclip is appearing in the movie). Instead when I do this however, I deleted the above code and just create a new instance of Main,
[Code]...
import flash.display.Sprite;
var bin:Sprite = new Sprite();
var cir:Sprite = new Sprite();
cir.graphics.beginFill(0x00ff00,1);
cir.graphics.drawCircle(0,0,30);
cir.graphics.endFill();
bin.graphics.beginFill(0xff0000,1);
bin.graphics.drawRoundRect(40,40,100,100,5,5);
bin.graphics.endFill();
addChild(bin);
bin.addChild(cir);
Here why do the circle added outside the square box?
simple code, to alpha out the square when clicked on. However, the release function keep getting called when the flash is started causes all the square alpha out.[code]
View 1 RepliesNormally when we draw a rectangle with linewidth 1 no problem.But if we apply a linewidth more than 10, the corners of rectangle seems rounded shape.[code]
View 2 RepliesId like to set a grid based on the closest square. I know in my mind that 3x3=9 and i know that if i have 10 items, well 9 isnt enough, but 12 is....
View 2 RepliesI'm just learning how to use transformation matrices and i'm wondering if its possible to apply a transformation that pinches one end of a shape. i.e. transforming a square/rectangle into a trapezoid by pinching the top.
View 1 Replies