Message 1 of 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
How to detect if this option is off and if it is off to turn it on, any example in Mel language?
Solved! Go to Solution.
Between mid-October and November, the content on AREA will be relocated to the Autodesk Community M&E Hub and the Autodesk Community Gallery. Learn more HERE.
How to detect if this option is off and if it is off to turn it on, any example in Mel language?
Solved! Go to Solution.
int $fit = `optionVar -q graphEditorAutoFit`;
if ($fit==0){
optionVar -intValue graphEditorAutoFit 1;
}
I hope it helps