Advertisement
Guest User

Untitled

a guest
Nov 26th, 2014
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. function Component()
  2. {
  3. var page = gui.pageWidgetByObjectName("Dialog2");
  4. }
  5.  
  6. Component.prototype.isDefault = function()
  7. {
  8. // select the component by default
  9. return true;
  10. }
  11.  
  12. Component.prototype.createOperations = function()
  13. {
  14. try {
  15. // call the base create operations function
  16. component.createOperations();
  17. //component.addOperation("Execute", "touch", "install.log", "UNDOEXECUTE", "rm", "install.log")
  18. component.addOperation(\"CreateShortcut\", \"@TargetDir@/uninstall.exe\", \"@HomeDir@/Start Menu/$XML_STARTMENUDIR/uninstall.lnk\");
  19. } catch (e) {
  20. print(e);
  21. }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement