Jodak Posted July 22, 2024 Share Posted July 22, 2024 Any ideas which selector i have to use to uncheck the last checkbox? Quote Link to comment
MullinRJ Posted July 23, 2024 Share Posted July 23, 2024 (edited) Hello @Jodak, This two line script will toggle the "Im Skizzenstil rendern" preference (Sketch hidden line results.) It will also BEEP when the preference is set (checkbox is selected.) SetPref(47, not GetPref(47)); if GetPref(47) then Sysbeep; To answer your question more directly, use: SetPref(47, False); { disable the "Im Skizzenstil rendern" preference } HTH, Raymond Edited July 23, 2024 by MullinRJ 3 Quote Link to comment
Jodak Posted July 23, 2024 Author Share Posted July 23, 2024 Thank you, @MullinRJ! But i want to uncheck the last checked box "Schnittkanten von Durchdringungen anzeigen" 🙂 I found all other boxes, but could not find a suiting translation for this one. I like the beep-idea though! 1 Quote Link to comment
MullinRJ Posted July 23, 2024 Share Posted July 23, 2024 (edited) Hi @Jodak, When you wrote "last checkbox" I took you literally. For what I would call the "first checkbox", as you so obviously depicted in the screenshot, use 144 instead. Hopefully, no harm, no foul. Yeah, the BEEP keeps me from having to open dialog boxes unnecessarily just to see where I am. And sometimes I don't even remember what dialog I have to open, so it saves lots of time over each year of use. Glad you like it. HTH, Raymond Edited July 26, 2024 by MullinRJ 1 1 Quote Link to comment
MullinRJ Posted July 24, 2024 Share Posted July 24, 2024 5 hours ago, Jodak said: I found all other boxes, but could not find a suiting translation for this one. The English version dialog box has the following titles for the checkboxes: Google Translate doesn't come close – "Schnittkanten von Durchdringungen zeigen" => "Show cut edges of penetration" If I run it the other way – "Generate intersecting lines" => "Erzeugen Sie sich überschneidende Linien" Not sure if this helps, but I'm glad I don't have the job of doing a language translation. Raymond 2 Quote Link to comment
Jodak Posted July 24, 2024 Author Share Posted July 24, 2024 15 hours ago, MullinRJ said: When you wrote "last checkbox" I took you literally. For what I would call the "first checkbox", as you so obviously depicted in the screenshot, use 144 instead. Hopefully, no harm, no foul. Thats it! Thanks! Where did you find the number? I can not find it in the appendix. 1 Quote Link to comment
MullinRJ Posted July 25, 2024 Share Posted July 25, 2024 Hi @Jodak, That's probably because it's not in the Appendix, local or online. There is a file in the SDK that lists "most" of the VW Preference #'s (ProgramVariables.h) and another that lists the Object Variables (ObjectVariables.h). I say "most" because it sometimes takes a while for new preference #'s to be reflected in the SDK documentation. Even with these files handy, it is also sometimes difficult to match a dialog field's text with a preference #, especially, I imagine, going from German to English. I'm happy I could find it for you. All the best, Raymond 2 Quote Link to comment
Jodak Posted July 25, 2024 Author Share Posted July 25, 2024 Thank you! I will have a look at the SDK! 1 Quote Link to comment
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.