Search found 2 matches

by gvboy
Sun Jul 02, 2017 9:31 pm
Forum: General Moho Discussion
Topic: Professionally Used
Replies: 24
Views: 9821

Re: Professionally Used

I was really excited to talk to a studio in Glendale last November. I thought the idea was to introduce them to Moho and show them how they might try it out. But I was surprised to learn they were already using it in a number of productions, and the head of the studio is quite an advanced user. He'...
by gvboy
Wed May 07, 2014 8:53 pm
Forum: Scripting
Topic: Need help with lua script to start Photoshop.
Replies: 9
Views: 4316

Re: Need help with lua script to start Photoshop.

Using the modified code below worked for me on Mac... just need to edit the actual app name of your version of photoshop (mine is "Adobe Photoshop CS5")

Hope this helps.

Code: Select all

else
 os.execute('open -a "Adobe Photoshop CS5" ' .. image)  -- for MAC- Edit Photoshop App name
 end