的Javascript
var rewardObj = myComp.getStage().createChildSymbol("reward", "Stage");
$(rewardObj).css
({
left:500, //originSize[2].left,
top:500 //originSize[2].top
});
$(rewardObj).css
什么也没做,rewardObj.css
抛出错误。
我如何选择我刚制作的这个对象并移动它。我过去成功地使用了偏移来移动物体但是这个不会让步。我在想我选错了。
答案 0 :(得分:1)
我认为您需要使用公开的元素而不是对象
public static void main(String[] args) {
// Coordinates is your content " id, x_coor, y_coor, signal"
List<Coordinates> randomSorted = getRamdomlyGeneratedList();
Coordinates[] arrayToSort = randomSorted.toArray(new Coordinates[0]);
Coordinates[] sortedArray = sort(arrayToSort);
List<Coordinates> sortedList = new ArrayList<Coordinates>();
for (int i = 0; i < sortedArray.length; i++) {
sortedList.add(sortedArray[i]);
}
}