in

Quark Forums

Extension to Unlock All Items

Last post 03-09-2011 3:47 AM by Jean-Marie Schwartz. 24 replies.
Page 1 of 2 (25 items) 1 2 Next >
Sort Posts: Previous Next
  • 02-28-2011 6:19 AM

    Extension to Unlock All Items

    It seems to be the 'done' thing nowadays for designers to lock most, if not all, items in their Quark documents before sending them for printing. Whether they think it makes their jobs safer I don't know, but it makes it awkward for me when I have to edit them later. So is there an extension available that will either unlock all items on a page, or throughout an entire document?

    Britsmith
    __________________________________________________
    iMac • 3.06Ghz • 4Gb RAM • OS 10.6.7 • QuarkXPress 8.5
    PC WinXP • QuarkXPress 8.5 • Adobe CS5
  • 02-28-2011 11:26 AM In reply to

    • max.peter
    • Top 25 Contributor
    • Joined on 09-11-2010
    • Bucharest, Romania
    • Posts 962

    Re: Extension to Unlock All Items

     What if there are used different layers (or just a single one)? You can block a whole layer with a single click.

    HTH

    Every day is a good day to learn something new.

    http://romanianstampnews.blogspot.com/
  • 03-01-2011 1:13 AM In reply to

    Re: Extension to Unlock All Items

    I would simply run an AppleScript that'd unlock all locked items.

    Jean-Marie Schwartz

    > Mac Pro Quad Core Intel 2.8 GHz, OS X.6.8, Quark XPress 9.2, Adobe CS5 <
  • 03-01-2011 4:13 AM In reply to

    Re: Extension to Unlock All Items

    That would be perfect, but I've never really explored AppleScript. Would you write one for me Jean-Marie? I'd be very grateful!

    Britsmith
    __________________________________________________
    iMac • 3.06Ghz • 4Gb RAM • OS 10.6.7 • QuarkXPress 8.5
    PC WinXP • QuarkXPress 8.5 • Adobe CS5
  • 03-01-2011 4:16 AM In reply to

    Re: Extension to Unlock All Items

    max.peter:
    What if there are used different layers (or just a single one)? You can block a whole layer with a single click.

    HTH

    Unfortunately, no, the documents are usually only one layer, and some items are locked and some are not.

    Britsmith
    __________________________________________________
    iMac • 3.06Ghz • 4Gb RAM • OS 10.6.7 • QuarkXPress 8.5
    PC WinXP • QuarkXPress 8.5 • Adobe CS5
  • 03-01-2011 4:38 AM In reply to

    Re: Extension to Unlock All Items

    Hi britsmith,

    how about Command+A and F6 (per spread)?

    Regards
    Matthias

    Matthias Günther
    Senior Product Manager
    Quark Software Inc.

    (Please note: As I am traveling and do not have access to the forums, I will not be able to respond to forum posts currently.)


    Want to easily publish for the iPad, using high-fidelity designs with stunning interactivity? See here:
    English: http://youtu.be/Gldk5lvXXTA
    French: http://youtu.be/nsgB4Q7lQzg
    German: http://youtu.be/lecdenqaUGY
    Italian: http://youtu.be/wjBpYZsF-8s


    Need immediate help? Please contact Quark's support: http://support.quark.com/contact_us.html

  • 03-01-2011 4:58 AM In reply to

    Re: Extension to Unlock All Items

    Thanks Matthias, but will that unlock both the Position and the Content of all boxes, regardless of whether the content is text or graphics?
    Britsmith
    __________________________________________________
    iMac • 3.06Ghz • 4Gb RAM • OS 10.6.7 • QuarkXPress 8.5
    PC WinXP • QuarkXPress 8.5 • Adobe CS5
  • 03-01-2011 5:47 AM In reply to

    Re: Extension to Unlock All Items

    Hi britsmith,

    no, it doesn't. Then you need to a second click (for unlock content).

    Out of curiosity, do you have any insight why they do that?

    Thanks
    Matthias

    Matthias Günther
    Senior Product Manager
    Quark Software Inc.

    (Please note: As I am traveling and do not have access to the forums, I will not be able to respond to forum posts currently.)


    Want to easily publish for the iPad, using high-fidelity designs with stunning interactivity? See here:
    English: http://youtu.be/Gldk5lvXXTA
    French: http://youtu.be/nsgB4Q7lQzg
    German: http://youtu.be/lecdenqaUGY
    Italian: http://youtu.be/wjBpYZsF-8s


    Need immediate help? Please contact Quark's support: http://support.quark.com/contact_us.html

  • 03-01-2011 6:42 AM In reply to

    Re: Extension to Unlock All Items

    britsmith:

    That would be perfect, but I've never really explored AppleScript. Would you write one for me Jean-Marie? I'd be very grateful!

    OK so there you go:


    tell application "QuarkXPress"
    activate
    tell document 1
    try
    set locked of (every generic box whose locked is true) to false
    end try
    end tell
    end tell


    beep 2

    Let me know if it does the trick. (Note: depending on the complexity of your doc, it might take a while. It's unpredictable "from here". After the script is done it beeps twice so you know when it's finished.)

    Jean-Marie Schwartz

    > Mac Pro Quad Core Intel 2.8 GHz, OS X.6.8, Quark XPress 9.2, Adobe CS5 <
  • 03-01-2011 8:58 AM In reply to

    Re: Extension to Unlock All Items

    Matthias Guenther (Quark):
    Out of curiosity, do you have any insight why they do that?
     

    I have no idea, and cannot contact the designers because these files come to me via an intermediate agency. I have the same trouble with InDesign files too, so maybe a design college somewhere is advocating the practice.

    Britsmith
    __________________________________________________
    iMac • 3.06Ghz • 4Gb RAM • OS 10.6.7 • QuarkXPress 8.5
    PC WinXP • QuarkXPress 8.5 • Adobe CS5
  • 03-01-2011 9:01 AM In reply to

    Re: Extension to Unlock All Items

    Jean-Marie Schwartz:

    OK so there you go:

    tell application "QuarkXPress"
    activate
    tell document 1
    try
    set locked of (every generic box whose locked is true) to false
    end try
    end tell
    end tell

    beep 2

    Let me know if it does the trick. (Note: depending on the complexity of your doc, it might take a while. It's unpredictable "from here". After the script is done it beeps twice so you know when it's finished.)

    Thanks Jean-Marie, it looks so easy when you know how! I will try it and let you know.

    Britsmith
    __________________________________________________
    iMac • 3.06Ghz • 4Gb RAM • OS 10.6.7 • QuarkXPress 8.5
    PC WinXP • QuarkXPress 8.5 • Adobe CS5
  • 03-02-2011 9:20 AM In reply to

    Re: Extension to Unlock All Items

     Hi guys, I've tested your suggested methods ...

    Jean-Marie, the script works only to unlock picture box Positions, it doesn't unlock the contents. Is there a way to make it do both?

    Matthias, the F6 command similarly only works on picture box Position, not the content. Is there another command to unlock content? Also if a box is not locked, F6 will lock it, which is no good.

    Thanks for you help so far.

    Britsmith
    __________________________________________________
    iMac • 3.06Ghz • 4Gb RAM • OS 10.6.7 • QuarkXPress 8.5
    PC WinXP • QuarkXPress 8.5 • Adobe CS5
  • 03-02-2011 10:09 AM In reply to

    Re: Extension to Unlock All Items

    Sorry! You should add those two lines after the similar one in the code you got yesterday.


    set content lock of (every image whose content lock is true) to false
    set content lock of (every story whose content lock is true) to false

    No time to test that right now. Please report any trouble. HTH.

    Jean-Marie Schwartz

    > Mac Pro Quad Core Intel 2.8 GHz, OS X.6.8, Quark XPress 9.2, Adobe CS5 <
  • 03-02-2011 10:40 AM In reply to

    Re: Extension to Unlock All Items

     Thanks Jean-Marie, I've tested it, and Applescript accepts the syntax OK (with your corrected spelling of 'iamge'), but it still doesn't work. Text areas highlight momentarily, but remain locked, as do pictures. It would be great if you could crack this for me and my colleagues.

    Britsmith
    __________________________________________________
    iMac • 3.06Ghz • 4Gb RAM • OS 10.6.7 • QuarkXPress 8.5
    PC WinXP • QuarkXPress 8.5 • Adobe CS5
  • 03-03-2011 1:45 AM In reply to

    Re: Extension to Unlock All Items

    Sorry! I've tried it too and no way. That's very odd cause if I run "get content lock of story 1" it returns true. But I can't seem to set it to false as it's supposed to accept. I'll try to play with it and to get it work but it might take me a while. Unless Michel is around and knows the trick to get it run! Stay tuned!

    Jean-Marie Schwartz

    > Mac Pro Quad Core Intel 2.8 GHz, OS X.6.8, Quark XPress 9.2, Adobe CS5 <
Page 1 of 2 (25 items) 1 2 Next >
Powered by Community Server (Commercial Edition), by Telligent Systems