⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 button.pm

📁 Ming is a library for generating Macromedia Flash files (.swf), written in C, and includes useful ut
💻 PM
字号:
# ====================================================================# Copyright (c) 2000 by Soheil Seyfaie. All rights reserved.# This program is free software; you can redistribute it and/or modify# it under the same terms as Perl itself.# ====================================================================# $Author: peterdd $# $Id: Button.pm,v 1.3 2006/02/01 15:49:13 peterdd Exp $package SWF::Button;use SWF();$SWF::Button::VERSION = $SWF::VERSION;1;__END__=head1 NAMESWF::Button - SWF button class=head1 SYNOPSIS use SWF::Button;=head1 DESCRIPTIONCreates buttons for flash movies.=head1 METHODS=over 4=item new SWF::Button();Creates a new Button object.=item $button->addShape($shape, FLAG);Adds $shape to the button. Valid FLAGs are:    SWFBUTTON_HIT    SWFBUTTON_UP    SWFBUTTON_DOWN    SWFBUTTON_OVER=item $button->setOver($shape);Shortcut for $button->addShape($shape, SWFBUTTON_OVER);=item $button->setHit($shape);Shortcut for $button->addShape($shape, SWFBUTTON_HIT);=item $button->setUp($shape);Shortcut for $button->addShape($shape, SWFBUTTON_UP);=item $button->setDown($shape);Shortcut for $button->addShape($shape, SWFBUTTON_DOWN);=item $button->setAction($action [,FLAG]);Adds $action object (see SWF::Action). Valid FLAGs are:    SWFBUTTON_MOUSEUP    SWFBUTTON_MOUSEOVER    SWFBUTTON_MOUSEOUT    SWFBUTTON_MOUSEDOWN    SWFBUTTON_DRAGOVER    SWFBUTTON_DRAGOUTSWFBUTTON_MOUSEUP is the default value of FLAG.=item $button->setMenu(0|1);Parameter is 0 (off) or 1(on).Can be used for a slight different behavior of buttons.=back=head1 AUTHORwrapper written bySoheil Seyfaie   (soheil at users dot sourceforge dot net)Peter Liscovius (peterdd at users dot sourceforge dot net)and many others.=head1 SEE ALSOSWF, SWF::Action, SWF::Shape, SWF::Movie, SWF::MovieClip=cut

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -