Я вот тут опять вспоминаю про знаменитую старинную программку под названием Директор. Современный ФП приблизился к ней по весу, а по функционалу так и не догнал (в Директоре, например, реализовано реальное 3D). Так вот, слышал я, что директорщики скрывали-таки контекстное меню в своих презентациях. Но каким именно способом - не знаю (как то не довелось использовать). Если это было сделано стандартными средствами Директора, то вопрос "можно/нельзя скрывать контекстное меню" становится риторическим.
add:
Вот, нашел в справке по современному Директору:
Цитата:
settingsPanel()
Usage
-- Lingo syntax
spriteObjRef.settingsPanel({integerPanelIndex})
// JavaScript syntax
spriteObjRef.settingsPanel({integerPanelIndex});
Description
Flash sprite command; invokes the Flash Settings dialog box to the specified panel index. This is the same dialog box
that can be opened by right-clicking (Windows) or Control-clicking (Mac) on a Flash movie playing in a browser.
The Settings dialog box will not be displayed if the Flash sprite’s rectangle is not large enough to accommodate it.
If you want to emulate the Flash Player by invoking the Settings dialog box when a user right-clicks (Windows) or
Control-clicks (Mac), you can use this command in a mouseDown handler that tests for the rightMouseDown
property or the controlDown property.
In order to emulate the Flash Player by enabling the Settings dialog box in a Director movie running in a browser,
you must first disable the Shockwave Player context menu that is available by right-clicking (Windows) or Controlclicking
(Mac) on a movie with Shockwave content playing in a browser. For information on how to disable this
menu, see the Using Director topics in the Director Help Panel.
|