Pacote | org.osmf.elements |
Classe | public class SWFElement |
Herança | SWFElement LoadableElementBase MediaElement EventDispatcher Object |
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | OSMF 1.0 |
Versões de runtime: | Flash Player 10, AIR 1.5 |
The basic steps for creating and using a SWFElement are:
- Create a new URLResource pointing to the URL of the SWF to be loaded.
- Create the new SWFElement, passing the URLResource as a parameter.
- Create a new MediaPlayer.
- Assign the SWFElement to the MediaPlayer's
media
property. - Get the DisplayObject from the MediaPlayer's
displayObject
property, and add it to the display list. Note that thedisplayObject
property may not be immediately available, in which case you can listen for the MediaPlayer'sdisplayObjectChange
event. - When done with the SWFElement, set the MediaPlayer's
media
property to null, and remove the DisplayObject from the display list.
Elementos da API relacionados
org.osmf.elements.SWFLoader
org.osmf.media.MediaElement
org.osmf.media.MediaPlayer
org.osmf.media.URLResource
org.osmf.media.MediaElement
org.osmf.media.MediaPlayer
org.osmf.media.URLResource
Propriedades públicas
Propriedades protegidas
Métodos públicos
Método | Definido por | ||
---|---|---|---|
Constructor. | SWFElement | ||
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registra um objeto de ouvinte de evento em um objeto EventDispatcher, de forma que o ouvinte receba a notificação de um evento. | EventDispatcher | ||
Adds a Metadata object to this MediaElement under the specified namespace URL. | MediaElement | ||
Envia um evento para o fluxo de eventos. | EventDispatcher | ||
Returns the Metadata object that is stored under this MediaElement with
the specified namespace URL. | MediaElement | ||
Returns the media trait of the specified type. | MediaElement | ||
Verifica se o objeto EventDispatcher tem ouvintes registrados para um tipo específico de evento. | EventDispatcher | ||
Indica se um objeto tem uma propriedade especificada definida. | Object | ||
Determines whether this media element has a media trait of the
specified type. | MediaElement | ||
Indica se uma ocorrência da classe Object está na cadeia de protótipos do objeto especificado como o parâmetro. | Object | ||
Indica se a propriedade especificada existe e é enumerável. | Object | ||
Remove um ouvinte do objeto EventDispatcher. | EventDispatcher | ||
Removes the Metadata object that was stored under this MediaElement with
the specified namespace URL. | MediaElement | ||
Define a disponibilidade de uma propriedade dinâmica para operações de repetição. | Object | ||
Retorna a representação da string deste objeto, formatado segundo as convenções específicas para a localidade. | Object | ||
Retorna a representação de string do objeto especificado. | Object | ||
Retorna o valor primitivo do objeto especificado. | Object | ||
Verifica se um ouvinte de evento está registrado nesse objeto EventDispatcher ou em qualquer um de seus ancestrais para o tipo de evento especificado. | EventDispatcher |
Métodos protegidos
Eventos
Detalhes do construtor
SWFElement | () | Construtor |
public function SWFElement(resource:URLResource = null, loader:SWFLoader = null)
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | OSMF 1.0 |
Versões de runtime: | Flash Player 10, AIR 1.5 |
Constructor.
Parâmetrosresource:URLResource (default = null ) — URLResource that points to the SWF source that the SWFElement
will use.
| |
loader:SWFLoader (default = null ) — SWFLoader used to load the SWF. If null, the SWFLoader will be created.
|
Exemplos Como usar este exemplo
SWFElementExample.as
package { import flash.display.Sprite; import flash.display.StageAlign; import flash.display.StageScaleMode; import org.osmf.elements.SWFElement; import org.osmf.media.MediaPlayerSprite; import org.osmf.media.URLResource; public class SWFElementExample extends Sprite { private var mediaPlayerSprite:MediaPlayerSprite; public function SWFElementExample() { super(); stage.scaleMode = StageScaleMode.NO_SCALE; stage.align = StageAlign.TOP_LEFT; mediaPlayerSprite = new MediaPlayerSprite(); var swfElement:SWFElement = new SWFElement(); swfElement.resource = new URLResource("http://mediapm.edgesuite.net/osmf/content/test/ten.swf"); addChild(mediaPlayerSprite); mediaPlayerSprite.media = swfElement; } } }
Wed Jun 13 2018, 11:10 AM Z