File: SWF%3A%3AMovieClip.html

package info (click to toggle)
ming 1%3A0.4.3-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 27,236 kB
  • ctags: 11,055
  • sloc: ansic: 55,058; sh: 9,111; cpp: 3,752; yacc: 2,808; makefile: 2,155; python: 1,864; perl: 1,472; php: 678; tcl: 13
file content (180 lines) | stat: -rw-r--r-- 5,695 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
<?xml version="1.0" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>SWF::MovieClip - MovieClip Class</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<link rev="made" href="mailto:feedback@suse.de" />
</head>

<body style="background-color: white">


<!-- INDEX BEGIN -->
<div name="index">
<p><a name="__index__"></a></p>

<ul>

	<li><a href="#name">NAME</a></li>
	<li><a href="#synopsis">SYNOPSIS</a></li>
	<li><a href="#description">DESCRIPTION</a></li>
	<li><a href="#methods">METHODS</a></li>
	<li><a href="#author">AUTHOR</a></li>
	<li><a href="#see_also">SEE ALSO</a></li>
</ul>

<hr name="index" />
</div>
<!-- INDEX END -->

<p>
</p>
<h1><a name="name">NAME</a></h1>
<p>SWF::MovieClip - MovieClip Class</p>
<p>
</p>
<hr />
<h1><a name="synopsis">SYNOPSIS</a></h1>
<pre>
        use SWF::MovieClip;
        my $movieclip = new SWF::MovieClip();</pre>
<p>
</p>
<hr />
<h1><a name="description">DESCRIPTION</a></h1>
<p>SWF::MovieClip allows you to add animated objects to your Flash movies.</p>
<p>
</p>
<hr />
<h1><a name="methods">METHODS</a></h1>
<dl>
<dt><strong><a name="movieclip" class="item">$mc= new SWF::MovieClip()</a></strong>

<dd>
<p>Returns an SWF::MovieClip object.</p>
</dd>
</li>
<dt><strong><a name="add" class="item">$item = $mc-&gt;<code>add($swfobject)</code></a></strong>

<dd>
<p>When you add following types of objects to the $mc they will return a SWF::DisplayItem:</p>
</dd>
<dl>
<dt><strong><a name="swf_button" class="item">SWF::Button</a></strong>

<dt><strong><a name="prebuiltclip" class="item">SWF::PrebuiltClip (a whole external swf file)</a></strong>

<dt><strong>SWF::MovieClip (you can nest them like a tree)</strong>

<dt><strong><a name="swf_shape" class="item">SWF::Shape</a></strong>

<dt><strong><a name="swf_text" class="item">SWF::Text</a></strong>

<dt><strong><a name="swf_textfield" class="item">SWF::TextField</a></strong>

<dt><strong><a name="swf_videostream" class="item">SWF::VideoStream</a></strong>

</dl>
<p>[ToDo: to be verified: 
When you add a SWF::Sound the return value is a SWF::SoundInstance:
$si = $mc-&gt;<a href="#add"><code>add($sound)</code></a>; ]</p>
<dt><strong><a name="startsound" class="item">$si = $mc-&gt;<code>startSound($sound)</code></a></strong>

<dd>
<p>Starts making noise and returns an object of SWF::SoundInstance class.</p>
</dd>
</li>
<dt><strong><a name="stopsound" class="item">$mc-&gt;<code>stopSound($sound)</code></a></strong>

<dd>
<p>Stops sound started by <a href="#startsound"><code>startSound()</code></a> method.</p>
</dd>
</li>
<dt><strong><a name="remove" class="item">$mc-&gt;<code>remove($di)</code></a></strong>

<dd>
<p>Removes SWF::DisplayItem $di from the display list.</p>
</dd>
</li>
<dt><strong><a name="nextframe" class="item">$mc-&gt;<code>nextFrame()</code></a></strong>

<dd>
<p>Move to the next frame in the timeline of SWF::MovieClip $mc</p>
</dd>
</li>
<dt><strong><a name="setnumberofframes" class="item">$mc-&gt;<code>setNumberOfFrames($i)</code></a></strong>

<dt><strong><a name="setframes" class="item">$mc-&gt;<code>setFrames($i)</code></a></strong>

<dd>
<p>Sets total number of $mc frames to $i
This is an optional autofiller, e.g. when you want to be sure that 2 different movieclips
have 100 frames when playing, but the number of <a href="#nextframe"><code>nextFrame()</code></a> calls in these 2 movieclips is unknown or
dynamic (dependent on data from databases, whatever). By default a movieclip the number of frames
in the timeline is how often you called $mc-&gt;nextFrame for this clip.</p>
</dd>
</li>
<dt><strong><a name="labelframe" class="item">$mc-&gt;<code>labelFrame($name)</code></a></strong>

<dd>
<p>Sets frame name to $name.
You are then able to access this frame by name in ActionScript, not just by frame number.</p>
</dd>
</li>
<dt><strong><a name="setscalinggrid" class="item">$mc-&gt;setScalingGrid($x, $y, $w, $h)</a></strong>

<dd>
<p>This function (available from SWF&gt;=8) sets a 9 slice scaling grid:
1 2 3 
4 5 6 
7 8 9
X, y, w and h define a rectangle, which is the dimension of the center slice
(5). All other slices are determined out of the characters bounds and the
defined rect. While slice 5 is scaled vertical and horizontal, slice 2 and 8
are only scaled horizontal. Slice 4 and 6 only vertical. The 4 corner slices
are not scaled (1, 3, 7, 9).
[ToDo: to be verified]</p>
</dd>
</li>
<dt><strong><a name="removescalinggrid" class="item">$mc-&gt;<code>removeScalingGrid()</code></a></strong>

<dd>
<p>Removes scaling grid rectangles.</p>
</dd>
</li>
<dt><strong><a name="addinitaction" class="item">$mc-&gt;<code>addInitAction($action)</code></a></strong>

<dd>
<p>Adds an initial ActionScript block to MovieClip $mc.
These actions are executed before the MovieClip is available
as a script object.
[ToDo: to be verified]</p>
</dd>
</li>
<dt><strong><a name="setsoundstream" class="item">$mc-&gt;setSoundStream($sound, $rate, [$skip])</a></strong>

<dd>
<p>Includes streaming sound to a movie. 
[ToDo: add more doc and a demo here.]</p>
</dd>
</li>
</dl>
<p>
</p>
<hr />
<h1><a name="author">AUTHOR</a></h1>
<p>Soheil Seyfaie (<a href="mailto:soheil@netcom.ca">soheil@netcom.ca</a>)
Peter Liscovius</p>
<p>see AUTHORS of ming distribution (ming.sf.net)</p>
<p>
</p>
<hr />
<h1><a name="see_also">SEE ALSO</a></h1>
<p>SWF::DisplayItem for how you can modify the instances in a SWF::MovieClip or SWF::Movie
SWF, SWF::Action, SWF::InitAction, SWF::Button, SWF::Movie, 
SWF::Shape, SWF::Sound, SWF::SoundStream, SWF::Text, SWF::TextField, SWF::VideoStream</p>

</body>

</html>