我在网上找到了这个代码,他实现了我想要使用的特定动作。不幸的是,他正在使用数值而不是文本。我按照他的所有说明操作,但我尝试用数组替换Vector,并收到错误。我收到的错误是“1199:带有非参数化类型的类型参数”。那是因为我添加了一个数组值而不是一个向量,这个人已经完成了。他在教程中的内容与数值是正确的。他还创建了一个名为Item.as的.as类。这是AS代码,它位于名为rotate.fla的.fla文件的一个名为actions的新图层的主时间轴中:
//Save the center coordinates of the stage
var centerX:Number=stage.stageWidth/2;
var centerY:Number=stage.stageHeight/2;
//The number of items we will have (feel free to change!)
var NUMBER_OF_ITEMS:uint=6;
//Radius of the menu circle (horizontal and vertical)
var radiusX:Number=200;
var radiusY:Number=100;
//Angle difference between the items (in radians)
var angleDifference:Number = Math.PI * (360 / NUMBER_OF_ITEMS) / 180;
//How fast a single circle moves (we calculate the speed
//according to the mouse position later on...)
var angleSpeed:Number=0;
//Scaling speed of a single circle
var scaleSpeed:Number=0.0002;
//This vector holds all the items
//(this could also be an array...)
var itemVector:Array.<Item>=new Array('1', '2', '3', '4', '5').<Item>;
//This loop creates the items and positions them
//on the stage
for (var i:uint = 0; i < NUMBER_OF_ITEMS; i++) {
//Create a new menu item
var item:Item = new Item();
//Get the angle for the item (we space the items evenly)
var startingAngle:Number=angleDifference*i;
//Set the x and y coordinates
item.x=centerX+radiusX*Math.cos(startingAngle);
item.y=centerY+radiusY*Math.sin(startingAngle);
//Save the starting angle of the item.
//(We have declared the Item class to be dymamic. Therefore,
//we can create new properties dynamically.)
item.angle=startingAngle;
//Add an item number to the item's text field
item.itemText.text=i.toString();
//Allow no mouse children
item.mouseChildren=false;
//Add the item to the vector
itemVector.push(item);
//Add the item to the stage
addChild(item);
}
//We use ENTER_FRAME to animate the items
addEventListener(Event.ENTER_FRAME, enterFrameHandler);
//This function is called in each frame
function enterFrameHandler(e:Event):void {
//Calculate the angle speed according to mouse position
angleSpeed = (mouseX - centerX) / 5000;
//Loop through the vector
for (var i:uint = 0; i < NUMBER_OF_ITEMS; i++) {
//Save the item to a local variable
var item:Item=itemVector[i];
//Update the angle
item.angle+=angleSpeed;
//Set the new coordinates
item.x=centerX+radiusX*Math.cos(item.angle);
item.y=centerY+radiusY*Math.sin(item.angle);
//Calculate the vertical distance from centerY to the item
var dy:Number=centerY-item.y;
//Scale the item according to vertical distance
item.scaleY = (dy / radiusY);
//If we are above centerY, double the y scale
if (item.y<centerY) {
item.scaleY*=2;
}
//Set the x scale to be the same as y scale
item.scaleX=item.scaleY;
//Adjust the alpha according to y scale
item.alpha=item.scaleY+1.1;
}
}
}
同样如上所述,有一个名为Item.as的.as类。这是一个单独的文件。代码如下:
package {
import flash.display.MovieClip;
public dynamic class Item extends MovieClip {
public function Item() {
}
}
}
如果您按照他的指示操作,它将适用于数值,但我想使用数组并将数组中的字符串值放在Item影片剪辑中,您将看到数值在其中圆形。我有他的旋转菜单教程的链接,这是9个步骤。这是链接:
谢谢大家的帮助。我刚回到ActionScript / Flash
答案 0 :(得分:0)
Erk,只需阅读您关联的教程,然后从Vector
更改为Array
(我不建议),这似乎是您最不关心的问题。我建议你把它保留为Vector
(效率更高,静态类型在这种情况下除此之外什么都没有帮助)并保留大部分代码。您需要更改的代码是:
//Add an item number to the item's text field
item.itemText.text=i.toString();
item.itemText.text
实际上持有String
,所以你很清楚。发生的事情是您将i
(向量中Item
的索引)转换为String
,以便显示。现在你必须改变它,以便显示你想要的东西。
有很多方法可以做到这一点 - 因为你正在使用Flash程序,你实际上可以使用内置的东西!自Item
扩展MovieClip
以来,您可以使用以下代码替换该行:
//Changes the item's frame to the same as its index
item.gotoAndStop(i);
然后在创作环境(Flash)中,为每个菜单项设置不同的框架。
希望这有帮助!
我在下面介绍了如何从Vector更改为数组,以防万一你有理由这样做。注意:我上面所说的假设您没有进行此修改。
我还没有阅读所有代码,但看起来问题就在这里:
//This vector holds all the items
//(this could also be an array...)
var itemVector:Array.<Item>=new Array('1', '2', '3', '4', '5').<Item>;
.<Item>
语法仅适用于矢量,因此您需要摆脱它。对于数组,此行看起来像这样:
var itemVector:Array = new Array('1', '2', '3', '4', '5');
代码可能有更多问题,但这专门解决了您提到的错误。