Turn of the cross-hair / selection pointer

Asked by MrEndorphine

Hi. I would like to take screen shots using a script.
However I do not like to have the "cross hair" in the middle of the screen.
Is there a way to turn it off? Alternatively, to make it bigger?

Question information

Language:
English Edit question
Status:
Solved
For:
Stellarium Edit question
Assignee:
No assignee Edit question
Solved by:
MrEndorphine
Solved:
Last query:
Last reply:
Revision history for this message
Khalid AlAjaji (kajaji) said :
#1

If you have selected an object and you know the name then

core.selectObjectByName("achernar", true); will show the cross hair

core.selectObjectByName("achernar", false); will hide the cross hair

you can use catalog numbers also. Instead of "achernar" you can use "HIP 7588"

Revision history for this message
Khalid AlAjaji (kajaji) said :
#2

If you do not want the cross hair to show for any object use:

core.selectObjectByName("", false);

To Show use:
core.selectObjectByName("", true);

Revision history for this message
MrEndorphine (bastian-brand) said :
#3

Hi Khalid. For some reason, the second option did not work. the first however did.
Thanks a lot