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

Setting Zero Point zooms in so unable accurately place it

New Here ,
Nov 23, 2023 Nov 23, 2023

Hello,

 

I am having trouble moving the zero point to another part of the document. 

 

When I attempt to drag it, the window instantly zooms in, the window goes white, and I am unable scroll across the document to see where I am moving the zero point to.

 

I assume this is a new ‘design feature’ in a recent update, as it has never happened before.

 

I’m running Indesign 19.0.1 on Mac OS 14.1.1

 

I’ve spent an hour trying to figure out what has changed and am now stuck. It makes InDesign almost useless being unable to set the zero point accurately for my current job.

 

Thanks in advance.

Angus

 

TOPICS
Bug
272
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

correct answers 1 Correct answer

Community Expert , Nov 23, 2023 Nov 23, 2023

One of known issues on Sonoma. InDesign doesn't officially support Sonoma yet (you can search the forum for Sonoma for more details). One of the solutions to solve the display issues on Sonoma is to disable the rulers - which in your case defies the purpose. Revert to Ventura if you can.

Translate
Community Expert ,
Nov 23, 2023 Nov 23, 2023

You might try...

Turning off GPU Acceleration (or on; or off and on)

Reset InDesign and other troubleshooting

Mike Witherell
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
New Here ,
Nov 23, 2023 Nov 23, 2023

Thanks. I don't have a CPU and monitor supported for GPU performance, so it can only be off.

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
Community Expert ,
Nov 23, 2023 Nov 23, 2023

One of known issues on Sonoma. InDesign doesn't officially support Sonoma yet (you can search the forum for Sonoma for more details). One of the solutions to solve the display issues on Sonoma is to disable the rulers - which in your case defies the purpose. Revert to Ventura if you can.

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
Community Expert ,
Nov 24, 2023 Nov 24, 2023
LATEST

Hi @Angus5FFD , You might be able to use a script to set the zero point and bypass the ruler bug. Something like this:

 

app.scriptPreferences.measurementUnit = MeasurementUnits.POINTS;
var x, y;
makeDialog();
function makeDialog(){
    var theDialog = app.dialogs.add({name:"Set Zero Point", canCancel:true});
    with(theDialog.dialogColumns.add()){
        staticTexts.add({staticLabel:"X:"});
        staticTexts.add({staticLabel:"Y:"});
    }
    with(theDialog.dialogColumns.add()){
        x = measurementEditboxes.add({editUnits:MeasurementUnits.INCHES, editValue:0, minWidth:90});
        y = measurementEditboxes.add({editUnits:MeasurementUnits.INCHES, editValue:0, minWidth:90});
    }

    if(theDialog.show() == true){
        app.activeDocument.zeroPoint = [x.editValue, y.editValue];
        theDialog.destroy();
	}
}
app.scriptPreferences.measurementUnit = AutoEnum.AUTO_VALUE;

 

Screen Shot 14.png

 

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