A KeyQuencer Macro for toggling the Image preference in Explorer. by Lee Jorano
For Internet Explorer 3.01a I have created the following Keyquencer macro that creates a key to toggle graphics loading. First the plain macro and then the same macro with comments.
(Editors Note: the Macro also works with Explorer 4.01)
KeyQuencer Macro:
Menu "Edit" "Preference" partial
WaitWindow "Internet Explorer Preferences" 10 seconds quiet
click 60 15 window
key cmd right
key down
key down
Button "Show pictures"
key enter
Macro with comments:
Menu "Edit" "Preferences" partial
WaitWindow "Internet Explorer Preferences" 10 seconds quiet
Open the Preferences. If the Preferences window does not open in 10 seconds halt the macro.
click 60 15 window
The left portion of the Preference window contains an outline of the various preference sections. Click on the top section called "Web Browser" which always has the same x,y coordinated location (60,15).
key cmd right
Make sure that the "Web Browser" outline is expanded.
key down
key down
move down to the second item "Web Content"
Button "Show pictures"
Click the "Show pictures" button to toggle on/off setting.
Key enter
Hit "Enter" key to accept change to preferences.
|