Working on script to count stars in an image

Scripts and programs to automate Astroart
Forum_2017
Posts: 275
Joined: 10 Dec 2018, 16:23

Re: Working on script to count stars in an image

Post by Forum_2017 »

Hi Fabio
thanks for the insight - will use for reference

Do you have any comments on the inputbutton issue I have highlighted - if it is not possible to ammend the functionality let me know and I will use a different approach
like a message box with the inputbutton

Forum_2017
Posts: 275
Joined: 10 Dec 2018, 16:23

Re: Working on script to count stars in an image

Post by Forum_2017 »

Hi, the attach in the last message cannot be opened, by the way here is a working example:

Code: Select all

if ContinueOn("Test") then
   print "OK Continue"
else
   print "Let's stop"
end if

sub ContinueOn(ShowInfo)
   r = InputButton("Carry On ? " + ShowInfo, "Yes", "No")
   return r = "Yes"
end sub

Post Reply