Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Set doc.rulerOrigin to 0,0 Illustrator CS4 js

Participant ,
Feb 05, 2010 Feb 05, 2010

Hi, I need to set doc.rulerOrigin to 0, 0 in Illustrator. How can I do it.

Thank you very much for your help.

Yulia

TOPICS
Scripting
801
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe
Guru ,
Feb 06, 2010 Feb 06, 2010

#target illustrator

var docRef = app.activeDocument;

with (docRef) {

pageOrigin = [0,0];

rulerOrigin = [0,0];

}

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Participant ,
Feb 08, 2010 Feb 08, 2010
LATEST

Thank you, Mark!

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines