Ticket #7634 (confirmed Bug)
flash dialog sets only false param
| Reported by: | datalink | Owned by: | |
|---|---|---|---|
| Priority: | Normal | Milestone: | |
| Component: | General | Version: | |
| Keywords: | Cc: |
Description
If I unset checkbox menu in flash dialog, source shows
<param name="menu" value="false" />
But if I set it to true, source shows nothing. Should be
<param name="menu" value="true" />
Change History
comment:2 Changed 2 years ago by datalink
OK, you are right. But allowfullscreen must be set to true, that it works.
<param name="allowfullscreen" value="true" />
and
<embed allowfullscreen="true" ...
comment:3 Changed 2 years ago by j.swiderski
- Status changed from pending to confirmed
According to: http://www.adobe.com/devnet/flashplayer/articles/full_screen_mode.html, section "security" allowfullscreen option defaults to false so checking this option in flash properties dialog should result in:
<param name="allowfullscreen" value="true" />
and
<embed allowfullscreen="true" ...
Note: See
TracTickets for help on using
tickets.

But "menu" is one of optional parameters which if omitted is set to true. Further more if this parameter is omitted, menu is displayed.
What exactly is the problem here?