[ Pobierz całość w formacie PDF ]
.Używajtej funkcji na wÅ‚asne ryzyko.swfbutton->setover() alias for addShape(shape,SWFBUTTON_OVER).See also swfbutton->addshape() and SWFAction().SWFbutton->setdown(unknown)SWFbutton->setdown -- Alias for addShape(shape,SWFBUTTON_DOWN))Descriptionvoid swfbutton->setdown (ressource shape)Ostrze¿enieTa funkcja jest w stadium EKSPERYMENTALNYM.Oznacza to, że zachowaniefunkcji, jej nazwa, w zasadzie wszystko udokumentowane tutaj może zostaćzmienione w przyszÅ‚ych wersjach PHP bez wczeÅ›niejszego uprzedzenia.Używajtej funkcji na wÅ‚asne ryzyko.swfbutton->setdown() alias for addShape(shape,SWFBUTTON_DOWN).See also swfbutton->addshape() and SWFAction().SWFbutton->setHit(unknown)SWFbutton->setHit -- Alias for addShape(shape,SWFBUTTON_HIT)Descriptionvoid swfbutton->sethit (ressource shape)Ostrze¿enieTa funkcja jest w stadium EKSPERYMENTALNYM.Oznacza to, że zachowaniefunkcji, jej nazwa, w zasadzie wszystko udokumentowane tutaj może zostaćzmienione w przyszÅ‚ych wersjach PHP bez wczeÅ›niejszego uprzedzenia.Używajtej funkcji na wÅ‚asne ryzyko.swfbutton->sethit() alias for addShape(shape,SWFBUTTON_HIT).See also swfbutton->addshape() and SWFAction().SWFbutton->addAction(unknown)SWFbutton->addAction -- Adds an actionDescriptionvoid swfbutton->addaction (ressource action, int flags)Ostrze¿enieTa funkcja jest w stadium EKSPERYMENTALNYM.Oznacza to, że zachowaniefunkcji, jej nazwa, w zasadzie wszystko udokumentowane tutaj może zostaćzmienione w przyszÅ‚ych wersjach PHP bez wczeÅ›niejszego uprzedzenia.Używajtej funkcji na wÅ‚asne ryzyko.swfbutton->addaction() adds the action action to this button for the given conditions.Thefollowing flags are valid: SWFBUTTON_MOUSEOVER,SWFBUTTON_MOUSEOUT, SWFBUTTON_MOUSEUP, SWFBUTTON_MOUSEUPOUTSIDE,SWFBUTTON_MOUSEDOWN, SWFBUTTON_DRAGOUT and SWFBUTTON_DRAGOVER.See also swfbutton->addshape() and SWFAction().SWFbutton->setAction(unknown)SWFbutton->setAction -- Sets the actionDescriptionvoid swfbutton->setaction (ressource action)Ostrze¿enieTa funkcja jest w stadium EKSPERYMENTALNYM.Oznacza to, że zachowaniefunkcji, jej nazwa, w zasadzie wszystko udokumentowane tutaj może zostaćzmienione w przyszÅ‚ych wersjach PHP bez wczeÅ›niejszego uprzedzenia.Używajtej funkcji na wÅ‚asne ryzyko.swfbutton->setaction() sets the action to beperformed when the button is clicked.Alias for addAction(shape,SWFBUTTON_MOUSEUP).action is a swfaction().See also swfbutton->addshape() and SWFAction().SWFAction(PHP 4 >= 4.5)SWFAction -- Creates a new Action.Descriptionnew swfaction ( string script)Ostrze¿enieTa funkcja jest w stadium EKSPERYMENTALNYM.Oznacza to, że zachowaniefunkcji, jej nazwa, w zasadzie wszystko udokumentowane tutaj może zostaćzmienione w przyszÅ‚ych wersjach PHP bez wczeÅ›niejszego uprzedzenia.Używajtej funkcji na wÅ‚asne ryzyko.swfaction() creates a new Action, and compiles thegiven script into an SWFAction object.The script syntax is based on the C language, but with a lot taken out- theSWF bytecode machine is just too simpleminded to do a lot of things we mightlike.For instance, we can't implement function calls without a tremendousamount of hackery because the jump bytecode has a hardcoded offset value.Nopushing your calling address to the stack and returning- every function wouldhave to know exactly where to return to.So what's left? The compiler recognises the following tokens:breakforcontinueifelsedowhileThere is no typed data; all values in the SWF action machine are stored asstrings.The following functions can be used in expressions:time()Returns the number of milliseconds (?) elapsed since the movie started.random(seed)Returns a pseudo-random number in the range 0-seed.length(expr)Returns the length of the given expression.int(number)Returns the given number rounded down to the nearest integer.concat(expr, expr)Returns the concatenation of the given expressions.ord(expr)Returns the ASCII code for the given characterchr(num)Returns the character for the given ASCII codesubstr(string, location, length)Returns the substring of length length at location location of the givenstring string.Additionally, the following commands may be used:duplicateClip(clip, name, depth)Duplicate the named movie clip (aka sprite).The new movie clip has namename and is at depth depth.removeClip(expr)Removes the named movie clip.trace(expr)Write the given expression to the trace log.Doubtful that the browserplugin does anything with this.startDrag(target, lock, [left, top, right, bottom])Start dragging the movie clip target.The lock argument indicates whetherto lock the mouse (?)- use 0 (FALSE) or 1 (TRUE).Optional parameters define a bounding areafor the dragging.stopDrag()Stop dragging my heart around.And this movie clip, too.callFrame(expr)Call the named frame as a function.getURL(url, target, [method])Load the given URL into the named target.The target argument correspondsto HTML document targets (such as "_top" or "_blank").The optional methodargument can be POST or GET if you want to submit variables back to theserver.loadMovie(url, target)Load the given URL into the named target.The target argument can be aframe name (I think), or one of the magical values "_level0" (replaces currentmovie) or "_level1" (loads new movie on top of current movie).nextFrame()Go to the next frame.prevFrame()Go to the last (or, rather, previous) frame.play()Start playing the movie.stop()Stop playing the movie.toggleQuality()Toggle between high and low quality.stopSounds()Stop playing all sounds.gotoFrame(num)Go to frame number num.Frame numbers start at 0.gotoFrame(name)Go to the frame named name.Which does a lot of good, since I haven't addedframe labels yet.setTarget(expr)Sets the context for action.Or so they say- I really have no idea whatthis does.And there's one weird extra thing
[ Pobierz całość w formacie PDF ]