Hello,
I created protytype auto copy function
function pageLoad_autoCopy()
{
var doc = CmdUtils.getDocument();
jQuery('body',doc).mouseup(function(){
var cur_selection = doc.getSelection();
if(cur_selection.length > 0)
{
CmdUtils.copyToClipboard(cur_selection);
if(cur_selection > 30){ cur_selection = cur_selection.substr(0,30)+'...'; }
displayMessage('To clipboard : '+cur_selection);
}
});
}
and once in a while the displayMessage gets called for the first time,
the popup stays on top of all my applications until i kill the firefox
process.
I'm using ff 3.0.6 on vista sp1
Greetings,
david
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"ubiquity-firefox" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/ubiquity-firefox?hl=en
-~----------~----~----~----~------~----~------~--~---