Показать сообщение отдельно
Старый 20.06.2008, 12:53
alexcon314 вне форума Посмотреть профиль Отправить личное сообщение для alexcon314 Найти все сообщения от alexcon314
  № 2  
Ответить с цитированием
alexcon314
listener

модератор форума
Регистрация: Jun 2006
Сообщений: 3,260
Записей в блоге: 28
Отправить сообщение для alexcon314 с помощью ICQ
Вроде swc надо в профиль класть.
Рекомендации с mdm-форума
Цитата:
To use the Flash CS3 SWC:

1) Copy the mdm.swc file into this folder:
C:\Documents and Settings\[USERNAME]\Local Settings\Application Data\Adobe\Flash CS3\en\Configuration\Components

2) When you have done this and opened Flash CS3, the "{mdm} Script v2 AS3 library for Flash CS3" component will appear in the components panel. Drag this component into the Library.

3) Now you can use mdm Script as normal. Remember that you need to initialise mdm script first e.g
Код:
import mdm.*
mdm.Application.init(this)
button.addEventListener(MouseEvent.CLICK, openDialog)
function openDialog(event:MouseEvent):void {
    mdm.Dialogs.prompt("The SWC is finally here!")
}
Also, a significant change has been made to the way the Forms class is to be called. From now on it is not possible to call a Forms function like this
Код:
mdm.Forms.MainForm.show()
With the new SWC's, it is required that you use this syntax (which is not ever likely to change):
Код:
mdm.Forms.getFormByName("MainForm").show()
Еще http://www.multidmedia.com/support/a...on=detail&id=9


Последний раз редактировалось alexcon314; 20.06.2008 в 14:29.