ActionScript 3.0 :: Getting 200 Lines For One Class?
Apr 2, 2011is it ok if i reached a thousand of lines?i was just wondering because i got 200 lines for one class
View 3 Repliesis it ok if i reached a thousand of lines?i was just wondering because i got 200 lines for one class
View 3 RepliesI have been working on a map viewer based blitting technique. As part of the map I need to draw approximately 50000 lines and performance is currently really poor.
Code: Select allvar movie:Shape = new Shape();
for( ... )
{
movie.graphics.clear();[code].....
My code is on the main timeline.I call a function loop to draw lines between them.The lines are drawing between the right x, y values BUT between those values on the main stage, not those values within the kite.For example, dot1_mc is at x100, y0 inside kite. the line that should go from its center, draws from stage x100, 0.How do I draw the lines inside kite so that they draw between the dots?Heres my code that draws the linesPHP Code:
function loop():void{ lineDrawing.graphics.clear(); var a:Point = new Point(kite_mc.dot1_mc.x, kite_mc.dot1_mc.y); var b:Point = new Point(kite_mc.dot2_mc.x, kite_mc.dot2_mc.y); var c:Point = new
[code].....
[URL]
Are they just constantly adding MC's to the display list as the mouse is moved around? Doesn't that kill memory?
Is there a way to draw lines with Flash's core graphic class but attach a custom bitmap to that line?
I am trying to create a mindmap where the user can drag points about the screen. I have gotten as far as drawing the line via actionscript, and drag+drop the points (defined as movie clips on stage). This is the existing script - I don't know how to get the lines to follow the points. Something to do with ENTER_FRAME or updateAfterEvent?
var line:MovieClip = new MovieClip();
line.graphics.lineStyle(1,1);
line.graphics.moveTo(ptOne.x,ptOne.y);
[code]....
I have two lines. One is straight and one is curved. Both were created with the Flash Graphics interface. How would I compare the different Y value for the curved line for any given X. In other words, how do I find a point on curve if I used the CurveTo method.
View 2 RepliesI have a function ( basically its the click on a reset buttons ) that sets back quite a loooooot of variables and text boxes. But after ( I think 200 lines ) , actionscript simply stops with that particular function and doesnt even give me an error.So it looks like there is a lines per function limit or something like that.I also tried it with an external .as but its the same.Creating functions for all these commands didnt work either.The only thing I can do is move a few lines up so that they get processed earlier.... ( but the last few still don't work )I even tried to make a function with 300 lines of myTextField.text = "hello"and a line: myTextField.text = "how are you" at the endDidnt work... it stayed at hello.
View 1 RepliesI am wondering about making lines with a corner radius. It seems that the smaller the scale, the corners sort of distort, and end up looking jaggy. Maybe its just the way it is, but is there any remedy? I tried shifting the registration points, etc, but still the only way it looks smooth is when enlarged.
View 2 RepliesI'm quiet new to Flash and I'm trying to make some lines grow. I have lines that cross each other and how to get this to work. I want the lines to start with nothing and then grow. [URL]
View 3 RepliesI use cs4 flash 9 I use a css stylesheet I set margins with it and they work fine. I read that leading is supported byt when I try it it doesn't work. Could someone show ne a simple stylesheet that implements leading?
View 4 RepliesI'm stumbling my way through designing my first Flex app, using Flex Builder 4 Beta 2. I'm trying to use a ComboBox, but they always seem to have lines around it and I can't figure out how to get rid of them. The ComboBox looks like this: [URL] All I did was drag the ComboBox from the Controls section in the Design section of the UI onto the screen. I haven't changed any settings, no special css, just used the default ComboBox and this is what I get.
View 1 RepliesIs there a tool that calculates various LOC statistics? It would have to support popular languages like C++, C#, Python, PHP, JavaScript, ActionScript, etc and interpret code accordingly.
An example of the statistics I'm looking for:
350 Physical lines of code -- including braces
200 Logical lines of code -- actual code
190 Comment lines
68 Variables
28 Methods/Functions
5 Classes
3 Namespaces
just going through my code and I want to reduce it where possible. is there a way to combine these two lines into one?
ActionScript Code:
this.mainClip_mc.item0.percentage_txt.setTextFormat(perTextFormat);
this.mainClip_mc.item1.percentage_txt.setTextFormat(perTextFormat);
I am getting this message, but I am not sure how to read lines 2, 3, and 4.[code]
View 3 RepliesI'm trying to create something similar (and w/fewer lines) to what is on this site[url]...
I've done plenty of searching and have found some good stuff, but what i'm having trouble finding is how to incorporate random motion/bending of the lines.
I am trying to have a line draw in my movie with actionScript...
have made three lines.
if I want line 1 to draw.... then..... line 2.... then line 3
do I put the script on three separate frames ?
and.... right now... they are just there...
how do I make it like an animation where the line starts at the edge of my movie draws line 2 changes direction draws line 2 changes direction draws line 3 then stops.
I was wondering if anyone knew the code to count how many lines are being used by the text. And yes the above example has 3 lines (dont know why u said this).
View 3 RepliesI have a line on the stage created using the lineTo and moveTo methods. How do I erase it?
View 2 Repliesanyone know why this isnt drawing lines for me?
[Code]...
Just opened flash for the first time to find that the pen tool will only draw straight lines.It can still plot points and the lines will join up but curves are impossible.Is there some setting that disable drawing curves? I haven't found anything in the annoyingly-online files.
View 2 RepliesI need to translate this AS2 code into AS3 ASAP! how to translate a few lines from AS2 to AS3 [URL]I was supposed to make a flash 9.0 cs3 menu with buttons that stay down until another button is clicked.I've found an example of this on the net, one that is perfect in every way for what I need to have done.However, as always, there's a catch. The code on that site is written in AS2, which doesn't work for me because I'm using some functions which are incompatible with it (I suppose they're AS3 supported only, e.g. loaderComplete)
View 2 RepliesI am facing a curious issue. Generally when we draw lines in Flash either vertically or horizontally or through exact 45 degrees on either of the sides, they come out as straight and anti-aliased. While if they are drawn deviated from either 0 or 45 degrees, they come out as jagged. I want that to be anti-aliased too
View 1 RepliesI've been working on a banner for a website where I want to have wavy lines moving slowly in the background. I found a script that does exactly what I want and works great, the only problem is that the wavy lines the script is drawing are always on top of my buttons and images I'm using in the banners. What I need help with is getting them to display behind my buttons rather than on top of them. I have the actionscript on a separate layer from everything else, but regardless of the layer being above or below the content layer the lines still appear on top. How would I go about accomplishing what this? here is the code
Code:
/*
set up vars
p = number of points along the line; more = smoother curve[code]....
How can I make this blue effect of lines? like in diablo 3 site
View 1 Repliesmain.fla: this file has 1 movieclip centered on the stage named "box"
Code:
import flash.events.*;
var upKey:Boolean;
var downKey:Boolean;[code].....
What I'dd like to do is automate the following lines in the main.fla;
1: var dtime:dTime = new dTime();
2: dtime.updatedTime();
My question is how I automate them?
I hope I can explain this well enough. I have these four lines of code
Code:
if (ChPoint >= 3){CdefRan = 1;}
if (CaPoint >= 3){CdefRan = 2;}
if (CbPoint >= 3){CdefRan = 3;}
if (ClPoint >= 3){CdefRan = 4;}
The contents of each line must always match: So ChPoint must always result in CdefRan being 1 But I want the order of the four lines to be random, as it is, if ClPoint is 3 then CdefRan will always be 4 even if ChPoint becomes 3. I suppose I basically want the script to choose which order they're in when the parent function is called. I'm trying to figure out the best way to be able to randomise the lines. There are 24 possible variations of the four lines and I could just create an outer IF with a random(24) like so:
[Code]....
I am using a listbox and have worked out how to alter the format of the text. However, how do i:make the black lines between each item a different colouralter the height of each item - I thought that by making the font bigger, and the leading this would force the list item deeper - but it didn't work
View 3 RepliesI am having the most frustrating time with htmlText in TextField.apparently, if you set the htmlText of a TextField, you always get an extra line at the end.Here is what I have found out:Below, a multiline TextField is created and the text property is set. I then grab the htmlText property, set the htmlText to "" and then reapply the htmlText I had just grabbed. This causes a new line to be added to the Textfield:
Actionscript Code:
var tf:TextField = new TextField();tf.width = tf.height = 200;tf.border = true;tf.multiline = true;tf.wordWrap = true;addChild(tf);tf.text = "this is not htmlText";
[code].....
I am trying to bend 2 parallel lines into a circle, but with a motion tween, it curves under eachother... (see att)how would I make them curl to a circle
---------------
/-------------
/----------
[code].....
I want to create a movie that allows boxes to be dragged around, and for lines to be connecting each box, wherever they are dragged. I have made the boxes draggable with the attached code.
what I mean, here is an example FLA: boxes.fla
I have no idea where to start on this, because searching for things like AS3 draggable movie clip with lines attaching, etc isn't very helpful.