import fl.containers.ScrollPane;
import fl.controls.ScrollPolicy;
import fl.controls.DataGrid;
import fl.data.DataProvider;
var aSp:ScrollPane = new ScrollPane();
var aBox:MovieClip = new MovieClip();
drawBox(aBox, 0xFF0000);
aSp.source = google;
aSp.setSize(480, 480);
aSp.move(0, 0);
addChild(aSp);
function drawBox(box:MovieClip,color:uint):void {
box.graphics.beginFill(color, 1);
box.graphics.drawRect(0, 0, 480, 480);
box.graphics.endFill();
}import fl.containers.ScrollPane;
function updateScroller() : void
{sourcecontainer.source = google;
sourcecontainer.update();
sourcecontainer.verticalScrollPosition = sourcecontainer.maxVerticalScrollPosition;}
updateScroller();
AS 2 is it possible to make characters click-to-move?
-
What I'm asking specifically is, is it possible to make characters (or just
plain symbols) dynamically move to your cursor when you click on something?
I'v...
1 week ago
0 comments:
Post a Comment