Launch a Web Browser

Anyone, especially newbies, asking for help with Photoshop Scripting and Photoshop Automation - as opposed to those contributing to discussion about an aspect of Photoshop Scripting

Moderators: Tom, Kukurykus

shawny2005

Launch a Web Browser

Post by shawny2005 »

Is this possible from within PS?

Professional AI Audio Generation within Adobe Premiere Pro - Download Free Plugin here

xbytor

Launch a Web Browser

Post by xbytor »

From xtools:

Code: Select allfunction openURL(url) {
  var fname = "shortcut.url";
  var shortcut = new File(Folder.temp + '/' + fname);
  shortcut.open('w');
  shortcut.writeln('[InternetShortcut]');
  shortcut.writeln('URL=' + url);
  shortcut.writeln();
  shortcut.close();
  shortcut.execute();
  shortcut.remove();
};
shawny2005

Launch a Web Browser

Post by shawny2005 »

your the man
RipsMiel

Launch a Web Browser

Post by RipsMiel »

It really works and it has also helped me in making the site I was creating. The problem here in me I think is the other components like brushes and marquee tool has not working. Did I do anything wrong or maybe there is another codes for it to work?