
Functions to check page, handle events of all click types. Still need to work on text input. Also trying to work capturing the location of the target, incase there is no information included once its captured. This will serve as a method of last resort.
44 lines
1.8 KiB
XML
44 lines
1.8 KiB
XML
<?xml version="1.0"?>
|
|
<?xml-stylesheet href="chrome://linktargetfinder/skin/skin.css" type="text/css"?>
|
|
<!DOCTYPE firerecord SYSTEM "chrome://firerecord/locale/translations.dtd">
|
|
<overlay id="sample" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
|
|
<script src="firerecord.js" />
|
|
|
|
<menupopup id="menu_ToolsPopup">
|
|
<menuitem label="&runlinktargetfinder;" key="link-target-finder-run-key" oncommand="firerecord.running()"/>
|
|
</menupopup>
|
|
<toolbox>
|
|
<menubar id="xulschoolhello-menubar">
|
|
<menu id="xulschoolhello-greeting-menu" label="testing">
|
|
<menupopup>
|
|
<menuitem label="Choose Text File"
|
|
oncommand ="firerecord.file()"/>
|
|
<menuitem label="Run File"
|
|
oncommand ="firerecord.readr()"/>
|
|
</menupopup>
|
|
|
|
|
|
|
|
</menu>
|
|
</menubar>
|
|
</toolbox>
|
|
<keyset>
|
|
<key id="link-target-finder-run-key" modifiers="accel alt shift" key="L" oncommand="firerecord.running()"/>
|
|
</keyset>
|
|
|
|
<toolbar id="status-bar">
|
|
<statusbarpanel id="link-target-finder-status-bar-icon" label="Record" class="statusbarpanel-iconic" src="chrome://firerecord/skin/toolbar-large.png" tooltiptext="&runlinktargetfinder;" onclick="firerecord.running()" />
|
|
|
|
</toolbar>
|
|
<toolbar id="status-bar">
|
|
<statusbarpanel id="Recording" type="menu" role="button" label="Record" class="statusbarpanel-iconic" src="chrome://firerecord/skin/toolbar-large.png" tooltiptext="Page to Page Recording" onclick="firerecord.running()" />
|
|
|
|
</toolbar>
|
|
|
|
<toolbarpalette id="BrowserToolbarPalette">
|
|
<toolbarbutton id="link-target-finder-toolbar-button" label="firerecord:" class="statusbarpanel-iconic" src="chrome://firerecord/skin/toolbar-large.png" tooltiptext="&runlinktargetfinder;" oncommand="firerecord.running()"/>
|
|
</toolbarpalette>
|
|
|
|
|
|
|
|
</overlay> |