![]() |
|
||||||||||
|
|
|
|||||
|
Регистрация: Sep 2000
Адрес: Москва
Сообщений: 239
|
Что я делаю не так?
class Item extends MovieClip {
private var menu_cm:ContextMenu;
/////////////////////////////////////////////
function Item() {
this.menu_cm = new ContextMenu();
this.menu_cm.customItems.push(new ContextMenuItem("Replace", replace));
//
this.menu = this.menu_cm;
}
//////////////////////////////////////////////
function replace(menu,obj) {
trace("Success!");
}
}
**Error** D:\My Projects\Site Plan\Flash\classes\Item.as: Line 9: There is no property with the name 'menu'. this.menu = this.menu_cm; ??? |
|
|||||
|
[++]
|
Ты ведь пишешь this.menu , то есть обращаешься к члену класса с названием menu, а такого нету.
|
|
|||||
|
Регистрация: Sep 2000
Адрес: Москва
Сообщений: 239
|
Специально для Nucer
class Item extends MovieClip {
private var menu_cm:ContextMenu;
/////////////////////////////////////////////
function Item() {
this.menu_cm = new ContextMenu();
this.menu_cm.customItems.push(new ContextMenuItem("Replace", replace));
//
this.menu = this.menu_cm;
this._alpha = 50;
this.onEnterFrame = function() {
//
}
}
//////////////////////////////////////////////
function replace(menu,obj) {
trace("Success!");
}
}
|
![]() |
Часовой пояс GMT +4, время: 19:24. |
|
|
« Предыдущая тема | Следующая тема » |
|
|