Created
July 3, 2011 15:59
-
-
Save farhaven/1062334 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
print("new window: class=\"" .. (c.class and c.class or "none") .. | |
"\", instance=\"" .. (c.instance and c.instance or "none") .. | |
"\", name=\"" .. (c.name and c.name or "none") .. "\"") | |
if c.class and c.class:find("OpenOffice") then | |
print("new oo window managed") | |
if c.instance and c.instance == "VCLSalFrame" then | |
c.ontop = true | |
else | |
print("new ooimpress window managed") | |
-- press F5 to immediately start presentation mode | |
root.fake_input("key_press", "71") | |
root.fake_input("key_release", "71") | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment