PHP Velho Oeste 2024

Класс SWFAction

(PHP 5 < 5.3.0, PECL ming SVN)

Введение

SWFAction.

Обзор классов

SWFAction {
/* Методы */
__construct ( string $script )
}

Описание

Синтаксис сценария основан на языке Си, но с большим упущением - машина байт-кода SWF слишком проста, чтобы делать много вещей, которые могут нам понравиться. Например, мы не можем реализовать вызовы функций без огромного количества хакерских атак, потому что байт-код перехода имеет жестко закодированное значение смещения. Не отправляйте ваш вызывающий адрес в стек и не возвращайте его - каждая функция должна точно знать, куда возвращаться.

Так что осталось? Компилятор распознает следующие токены:

  • break
  • for
  • continue
  • if
  • else
  • do
  • while

Там нет типизированных данных; все значения в компьютере действия SWF хранятся в виде строк. Следующие функции могут использоваться в выражениях:

time()
Возвращает количество миллисекунд (?), Прошедших с начала фильма.
random(seed)
Возвращает псевдослучайное число в диапазоне 0-seed.
length(expr)
Возвращает длину данного выражения.
int(number)
Возвращает указанное число, округленное до ближайшего целого числа.
concat(expr, expr)
Возвращает конкатенацию заданных выражений.
ord(expr)
Возвращает код ASCII для данного символа
chr(num)
Возвращает символ для данного кода ASCII
substr(string, location, length)
Возвращает подстроку длины length в расположении location заданной строки string.

Кроме того, могут использоваться следующие команды:

duplicateClip(clip, name, depth)
Дублируйте указанный фильм clip (он же спрайт). Новый фильм с названием name находится на глубине depth.
removeClip(expr)
Удаляет указанный фрагмент ролика.
trace(expr)
Запишите данное выражение в журнал трассировки. Сомнительно, что плагин браузера делает что-нибудь с этим.
startDrag(target, lock, [left, top, right, bottom])
Начните перетаскивать фрагмент ролика target. Аргумент lock указывает, блокировать ли мышь (?) - использовать 0 (FALSE) или 1 (TRUE). Необязательные параметры определяют ограничивающую область для перетаскивания.
stopDrag()
Хватит тянуть мое сердце. И этот ролик тоже.
callFrame(expr)
Вызвать ууказанный фрейм как функцию.
getURL(url, target, [method])
Загрузите указанный URL в названную цель. Аргумент target соответствует целям документа HTML (например, "_top" или "_blank"). Необязательный аргумент method может быть POST или GET, если вы хотите отправить переменные обратно на сервер.
loadMovie(url, target)
Загрузите указанный URL в названную цель. Аргументом target может быть имя кадра (я думаю) или одно из магических значений "_level0" (заменяет текущий фильм) или "_level1" (загружает новый фильм поверх текущего фильма).
nextFrame()
Перейти к следующему кадру.
prevFrame()
Перейти к последнему (или, скорее, предыдущему) кадру.
play()
Начать проигрывать фильм.
stop()
Перестать проигрывать фильм.
toggleQuality()
Переключение между высоким и низким качеством.
stopSounds()
Прекратите играть все звуки.
gotoFrame(num)
Перейти к номеру кадра num. Номера кадров начинаются с 0.
gotoFrame(name)
Перейти к указанному фрейму name. Что очень хорошо, так как я еще не добавил метки кадров.
setTarget(expr)
Устанавливает контекст для действия. Или так они говорят - я действительно понятия не имею, что это делает.
И есть одна странная дополнительная вещь. Выражение frameLoaded (num) может использоваться в операторах if и while, чтобы проверить, загружен ли еще данный номер кадра. Ну, так или иначе, но я никогда не проверял это, и я серьезно сомневаюсь, что это действительно работает. Вы можете просто использовать /:framesLoaded вместо этого.

Видеоклипы (все вместе теперь спрайты) имеют свойства. Вы можете прочитать их все (или можете?), вы можете установить некоторые из них, и вот они: they are:

  • x
  • y
  • xScale
  • yScale
  • currentFrame - (только для чтения)
  • totalFrames - (только для чтения)
  • alpha - уровень прозрачности
  • visible - 1=on, 0=off (?)
  • width - (только для чтения)
  • height - (только для чтения)
  • rotation
  • target - (только для чтения) (???)
  • framesLoaded - (только для чтения)
  • name
  • dropTarget - (только для чтения) (???)
  • url - (только для чтения) (???)
  • highQuality - 1=high, 0=low (?)
  • focusRect - (???)
  • soundBufTime - (???)
Итак, установить позицию спрайта x так же просто, как /box.x = 100;. Почему же косая черта перед блоком? Вот так flash отслеживает спрайты в фильме, точно так же, как файловая система Unix - здесь показано, что окно находится на верхнем уровне. Если бы в указанном спрайте блока был бы другой спрайт с именем biff, вы бы установили его позицию x с помощью /box/biff.x = 100;. По крайней мере, я так думаю; поправьте меня, если я ошибаюсь.

Содержание

add a note add a note

User Contributed Notes 12 notes

up
1
jon at nux dot co dot uk
15 years ago
A little story that may help some others - part 2

and this didn't work... why not.. the trace gave me a clue:

Warning: createEmptyMovieClip is not a function

After a bit of digging around I found that this was because the flash movie was not running in the right version. There is a ming option that is mentioned in other posts but does not seem to be well documented and that is:

ming_useswfversion(setversion)

This makes the world of a difference as it sets what version of flash ming outputs its movies as.

So the monent I added:

ming_useswfversion(6)

To the top of my php I not only did the createEmptyMovieClip function work but so did the loading and the variable was accessible. Huruh!

So my final code now looks like this:

<?php
    ming_useswfversion
(6);
   
   
$m = new SWFMovie();
   
$m->setRate(30.000000);
   
$m->setDimension(480, 400);
   
$m->setBackground(0xff, 0xff, 0xff);

   
$m->add(new SWFAction('
        myvar = "variable to pass to flash";
        this.createEmptyMovieClip("mc", 99999);
        mc.loadMovie ("/flash_file_created_by_hand.swf");
    '
);
   
   
header('Content-type: application/x-shockwave-flash');
   
$m->output();
?>

instead of this:

<?php
    $m
= new SWFMovie();
   
$m->setRate(30.000000);
   
$m->setDimension(480, 400);
   
$m->setBackground(0xff, 0xff, 0xff);

   
$m->add(new SWFAction('
        myvar = "variable to pass to flash";
        LoadMovie("/flash_file_created_by_hand.swf", "mc");
    '
);

   
/* -- make movie clip 'mc' that we will load flash_file_created_by_hand.swf into -- */
   
$s1 = new SWFSprite();  /* (1 frames) */
   
$s1->nextFrame();  /* (end of sprite frame 0) */
   
$i1 = $m->add($s1);
   
$i1->setName('mc');
   
$m->nextFrame();  /* (end of frame 0) */

   
header('Content-type: application/x-shockwave-flash');
   
$m->output();
?>

I dont pretend to be a flash guru.. but i know it took me a while to figure this all out.. so I thought that this post might one day be of help to someone.
up
2
diem at writeme dot com
22 years ago
Sorry Guys ....
the /box.x syntax is for fash version 4 ... and _root.box._x is used for flash version 5 ....
Ming >= 0.2 assumes version 5 by default .... to use version 4 syntax, you must use ming_useswfversion before ...
up
1
jon at nux dot co dot uk
15 years ago
A little story that may help some others - part 1

Upgrading from:

I have used ming for several years now for injecting variables into flash, usually for menus. In a recent move to a new server all the ming/php stopped working. Ming was working and properly installed but the variables just weren't apparent within the flash movie.

The old server is running:
ming-0.2a_1         LGPL'ed Flash 4/5 movie output library with many languages
php4-ming-4.4.1_1   The ming shared extension for php

The new one is running:
ming-0.3.0_3        LGPL'ed Flash 4/5 movie output library with many languages
php5-ming-5.2.6_1   The ming shared extension for php

So the way I have always done this is to put all my data together in php, and then put it into an array/variable in Flash. I then create a movie clip and load my movie.swf (made by hand in flash) into the movieclip.

I know there are now cleaner ways of getting data loaded into Flash (even directly from Flash without ming) but as I have many many movies out there using ming it is far easier to change a few lines of php to get them working again than change every flash movie.

So anyhow, here is the code:

<?php
    $m
= new SWFMovie();
   
$m->setRate(30.000000);
   
$m->setDimension(480, 400);
   
$m->setBackground(0xff, 0xff, 0xff);

   
$m->add(new SWFAction('
        myvar = "variable to pass to flash";
        LoadMovie("/flash_file_created_by_hand.swf", "mc");
    '
);

   
/* -- make movie clip 'mc' that we will load flash_file_created_by_hand.swf into -- */
   
$s1 = new SWFSprite();  /* (1 frames) */
   
$s1->nextFrame();  /* (end of sprite frame 0) */
   
$i1 = $m->add($s1);
   
$i1->setName('mc');
   
$m->nextFrame();  /* (end of frame 0) */

   
header('Content-type: application/x-shockwave-flash');
   
$m->output();
?>

So what stopped working. Well this took me a while to work out, and even know I am not 100% sure but I can tell you what does work and how I got there.

Firstly I needed some more debugging, and so installing the flash debug player http://www.adobe.com/support/flashplayer/downloads.html and 'Flash Tracer' https://addons.mozilla.org/en-US/firefox/addon/3469 enabled me to see trace output of the ming movie and my loaded movie (flash_file_created_by_hand.swf).  If you don't already know then this is worth knowing about. I had to play around a bit to get the debug player to write its log file, but it is worth it.
Make sure you have the write settings when you publish your movie otherwise you will not be able to see the trace output.

So now I can see trace... well I used to this run a few checks to see for instance if the movie clip was there :

$s1->add(new SWFAction('
    trace ("location of movie clip is: " + this._target);
');   

and so I played around.. and I could see that the movie clip 'mc' was being created and that the movie flash_file_created_by_hand.swf was being loaded into  it but well not much else. So I still coudn't see what was happening to the data. I currently suspect that the loadMovie was loading the movie into level0 or _root rather than into /mc (_root.mc) as thus wiping out the ming vabiables.. but I can't be sure. Given that the trace of the target etc happens before the loadmovie function I think this is entirely possible.

Anyhow, I thought I may aswell try to do this a differt way.. that is create the movieclip from actionsript rather than with php/ming.. ie:

$m->add(new SWFAction('
    this.createEmptyMovieClip("mc", 999);
');

instead of:

/* -- make movie clip 'mc' that we will load flash_file_created_by_hand.swf into -- */
$s1 = new SWFSprite();  /* (1 frames) */
$s1->nextFrame();  /* (end of sprite frame 0) */
$i1 = $m->add($s1);
$i1->setName('mc');
$m->nextFrame();  /* (end of frame 0) */
up
1
PHP User
16 years ago
Typo in first example above:

  $m->add(new SWFAction("/box.x += 3;"));

Should be:

  $m->add(new SWFAction("box.x += 3;"));
up
1
tore dot aurstad at ntebb dot no
16 years ago
There is some difficulty adressing objects in the swfmovie using swfaction, at least when using Windows and Flash Player 9. I debugged the .swf file generated with php ming in
Adobe Flash CS3 and saw that my references on swfdisplayitems was not set correctly. I tried labelling a submovie (swfsprite object) "showmovie", but the actionscript did not seem to be able to reference the object. The debugging in Adobe Flash 9 showed the "showmovie" object to instead have the labelling "_level0.instance1", I adjusted the code and then was able to manipulate the objects in my swfmovie. The naming scheme seems to follow this "_level0.instanceX" labelling, check by debugging your .swf movies generated from php ming at least in Windows+Flash player 9 to check if swfdisplayitem's method setname also does not work here.

Tore Aurstad, Norway
up
1
samrerb at gmail dot com
17 years ago
for creating a play/pause button I used this script:
<?php
//pause button
 
$b = new SWFButton();
 
$b->addShape(rect(0, 0xff, 0), SWFBUTTON_HIT | SWFBUTTON_UP | SWFBUTTON_DOWN | SWFBUTTON_OVER);
 
$b->addAction(new SWFAction("stop();"),SWFBUTTON_MOUSEDOWN);
 
$i = $movie->add($b);

//play button
 
$b = new SWFButton();
 
$b->addShape(rect_two(0, 0xff, 0), SWFBUTTON_HIT | SWFBUTTON_UP | SWFBUTTON_DOWN | SWFBUTTON_OVER);
 
$b->addAction(new SWFAction("play();"),SWFBUTTON_MOUSEDOWN);
 
$i = $movie->add($b);
?>
it has to be run during every frame for the buttons to be in every frame... hope that helps somebody....
up
1
julien/*AT*/theoconcept.com
18 years ago
fscommand, the proper way to call a javascript function from a flash animation seems not to work in Ming at the moment, here is a commented example on how to do that :

http://blog.theoconcept.com/flashlink.php
up
1
ifrost at uos dot de
19 years ago
If you want to open an URL in a new window, define a shape ($ashape) and use this code:

<?php
$b
= new SWFButton();
$b->addShape($ashape, SWFBUTTON_HIT | SWFBUTTON_UP | SWFBUTTON_DOWN | SWFBUTTON_OVER);
$b->addAction(
    new
SWFAction(
   
'getURL("http://www.php.net","_blank");' // _blank is the target like in html
   
), SWFBUTTON_MOUSEDOWN
);
?>

But if you want it in the same window use this addAction():

<?php
$b
->addAction(
    new
SWFAction(
   
'this.getURL("http://www.php.net");'
   
), SWFBUTTON_MOUSEDOWN
);
?>
up
1
jamesNOSPAMbarros at hotNOSPAMmail dot com
21 years ago
Printing Flash Movies

When a browser tries to print flash, the autoscaling can make it look ugly. users have to right click on the flash and select "print" to get it to print properly. (so that thier flash player is handling the printing, not the browser) If you dont want to require this of your users, you can create a print button with the following action:

getURL('print:', '/');

by default, this prints ALL frames. to avoid this, just put:

$m->labelFrame("#p");
before:
$m->nextFrame();

where $m is your SWFMovie. the #p label denotes a printable frame. (this also allows you to build your movie, then throw the print button into the next frame and not have it show up when you print. )
up
0
Mark Omohundro, ajamyajax dot com
15 years ago
<?php
// tip: if you want to STOP an animation using SWFAction(),
// add a nextFrame() method immediately after, like this:

$p = new SWFSprite();
// ...
$i->rotate(15);
$p->nextFrame();
// ...
$p->add(new SWFAction("stop();"));
$p->nextFrame();  // stops right here
//(eop)

// this also seems to work, stopping a movie *exactly* where you want
// but only if not using SWFSprite() movie clips... then try the above.
$m->add(new SWFAction("stop();"));
$m->nextFrame();
//(eop)

// also: setFrames(n) doesn't seem to stop animation immediately...
// by design, or perhaps a current version/older release bug(?)
// the above was only tested with Ming 0.3beta1.  hope this helps.
?>
up
-1
jerryscript at aol dot com
20 years ago
Ming 0.3 (current cvs) can use most MX actionscript, just set the swf version to 6

ming_useswfversion(6);
up
-1
Anze
20 years ago
fscommand() doesn't work (at least in Ming 0.2a), but there is a workaround.
Instead of:
fscommand("do","something");
use:
getURL("fscommand:do","something");
To Top