SelectOnScreen operation hint

SelectOnScreen operation hint

Anonymous
Not applicable
389 Views
4 Replies
Message 1 of 5

SelectOnScreen operation hint

Anonymous
Not applicable
hi,

when using SelectOnScreen to select objects on screen,

it is possible to change the help message to make the operation much easier
to understand.

SelectOnScreen just gives the hint of "Select objects"

thanks
0 Likes
390 Views
4 Replies
Replies (4)
Message 2 of 5

Anonymous
Not applicable
Is that a question or just a comment?
0 Likes
Message 3 of 5

Anonymous
Not applicable
I don't think so. Use a prompt first.
ThisDrawing.Utility.Prompt "...."
ss.SelectOnScreen

"youngman" wrote in message
news:5435126@discussion.autodesk.com...
hi,

when using SelectOnScreen to select objects on screen,

it is possible to change the help message to make the operation much easier
to understand.

SelectOnScreen just gives the hint of "Select objects"

thanks
0 Likes
Message 4 of 5

Anonymous
Not applicable
Correct me if I am wrong:

Sub Test()
'' Declarations
On Error GoTo Err_Control
ThisDrawing.Utility.Prompt "...."
ThisDrawing.Setvariable "NOMUTT", 1
ss.SelectOnScreen
ThisDrawing.Setvariable "NOMUTT", 0
'' do something else

Err_Control:
MsgBox Err.Description
ThisDrawing.Setvariable "NOMUTT", 0
End Sub

~'J'~
0 Likes
Message 5 of 5

Anonymous
Not applicable
Thanks for your answers,
Especially to Paul Richardson and Fatty,
why do you always have the best answers.
thanks after all


wrote in message news:5435166@discussion.autodesk.com...
Correct me if I am wrong:

Sub Test()
'' Declarations
On Error GoTo Err_Control
ThisDrawing.Utility.Prompt "...."
ThisDrawing.Setvariable "NOMUTT", 1
ss.SelectOnScreen
ThisDrawing.Setvariable "NOMUTT", 0
'' do something else

Err_Control:
MsgBox Err.Description
ThisDrawing.Setvariable "NOMUTT", 0
End Sub

~'J'~
0 Likes