Регистрация Войти
Войти через VK Войти через FB Войти через Google Войти через Яндекс
Войти через VK Войти через FB Войти через Google Войти через Яндекс
Поиск по сайту
swf_addbuttonrecord
(PHP 4)
swf_addbuttonrecord — Controls location, appearance and active area of the current button
Описание
void swf_addbuttonrecord ( int $states , int $shapeid , int $depth )Allow you to define the specifics of using a button.
Список параметров
states -
Defines what states the button can have, these can be any or all of the following constants: BSHitTest, BSDown, BSOver or BSUp.
shapeid -
The second parameter, the shapeid is the look of the button, this is usually the object id of the shape of the button.
depth -
This parameter is the placement of the button in the current frame.
Возвращаемые значения
Эта функция не возвращает значения после выполнения.
Примеры
Пример #1 swf_addbuttonrecord() example
swf_startButton($objid, TYPE_MENUBUTTON);
swf_addButtonRecord(BSDown|BSOver, $buttonImageId, 340);
swf_onCondition(MenuEnter);
swf_actionGetUrl("http://www.example.com", "_level1");
swf_onCondition(MenuExit);
swf_actionGetUrl("", "_level1");
swf_endButton();
Смотрите также:
Описание на ru2.php.net
Описание на php.ru