How to write in jsx "Not equal"?
i need to check, if all bleeds have the same value:
with (app.activeDocument.documentPreferences){
if (documentBleedBottomOffset==documentBleedTopOffset==documentBleedInsideOrLeftOffset==documentBleedOutsideOrRightOffset){
alert ("Make bleeds equal!"); exit()
}}
But if i try:
if (!documentBleedBottomOffset==documentBleedTopOffset==documentBleedInsideOrLeftOffset==documentBleedOutsideOrRightOffset){
nothing changes: line "alert" executes anyway. Why?
