Method: Origami::Page#add_flash_application
- Defined in:
- lib/origami/page.rb
#add_flash_application(swfspec, params = {}) ⇒ Object
Embed a SWF Flash application in the page.
717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 |
# File 'lib/origami/page.rb', line 717 def add_flash_application(swfspec, params = {}) = { windowed: false, transparent: false, navigation_pane: false, toolbar: false, pass_context_click: false, activation: Annotation::RichMedia::Activation::PAGE_OPEN, deactivation: Annotation::RichMedia::Deactivation::PAGE_CLOSE, flash_vars: nil } .update(params) annot = create_richmedia(:Flash, swfspec, ) add_annotation(annot) annot end |