Search found 263 matches

by Forum_2018
26 Dec 2018, 20:43
Forum: Scripts
Topic: script commands documentation
Replies: 6
Views: 4079

script commands documentation

Does anyone know of a source that, in depth, describes the AA script commands? The AA7 manual lists many commands that I don't know how to use.

I found this: http://sintiniobservatory.interfree.it/ ... ns_ing.pdf
But this is from AA4 and a lot of commands has since been added.
by Forum_2018
26 Dec 2018, 20:42
Forum: Scripts
Topic: Is there a debayer function in teh script language?
Replies: 2
Views: 2019

Re: Is there a debayer function in teh script language?

Thanks Fabio,

That worked well.
by Forum_2018
26 Dec 2018, 20:42
Forum: Scripts
Topic: Is there a debayer function in teh script language?
Replies: 2
Views: 2019

Re: Is there a debayer function in teh script language?

Hi, not directly. You could enable the option "Demosaic on load" so that the images are demosaiced when you open them with the command: Image.Open If this is a single task, another solution is to convert (and debayer) all your images to FITS before running the script, using the option "Save all imag...
by Forum_2018
26 Dec 2018, 20:41
Forum: Scripts
Topic: Is there a debayer function in teh script language?
Replies: 2
Views: 2019

Is there a debayer function in teh script language?

Hi,

I am writing a script, that processes a bunch of fits files. They need to be saved as *.png.
Since the fits files originates from a Canon DSLR, I need to debayer the fits before saving as png.
Is that possible with AA7 scripting?
by Forum_2018
26 Dec 2018, 20:41
Forum: Scripts
Topic: I/O error 112
Replies: 2
Views: 1634

Re: I/O error 112

Thanks Fabio, that was it. It had been longer than I thought since moving out old files. Thanks for the pointer! --Rick
by Forum_2018
26 Dec 2018, 20:41
Forum: Scripts
Topic: I/O error 112
Replies: 2
Views: 1634

Re: I/O error 112

It should be "Disk full". Are you saving on a removable drive?
Greetings,
Fabio.
by Forum_2018
26 Dec 2018, 20:40
Forum: Scripts
Topic: I/O error 112
Replies: 2
Views: 1634

I/O error 112

I get the following error message occasionally when running my script in AA6 SP4. The window is titled "Script" and it contains "I/O error 112 - Line 248". That line in the script is "Image.Save(FilePath$)". I'm using the script to control an allsky camera and it takes/saves 1500 or so images per ni...
by Forum_2018
26 Dec 2018, 20:40
Forum: Scripts
Topic: Scripting and external dll
Replies: 2
Views: 1878

Re: Scripting and external dll

Thanks for reply will have a think and see what I can do.
by Forum_2018
26 Dec 2018, 20:40
Forum: Scripts
Topic: Scripting and external dll
Replies: 2
Views: 1878

Re: Scripting and external dll

Hello, it's not possible directly, but can be done in this way: 1) Using any programming language you create a program(s) which commands the heater with those COM functions. 2) You call the program with the script command "System.Execute()" The program should command the heater then exit. It could a...
by Forum_2018
26 Dec 2018, 20:39
Forum: Scripts
Topic: Scripting and external dll
Replies: 2
Views: 1878

Scripting and external dll

Hi me again is it possible to interact with an external dll from the script language - the reason I ask is I would like to control my Hitecastro power hub - specifically the dew heaters from astroart scripting - I have done a little research but it is 5 years since I did any serious programming with...
by Forum_2018
26 Dec 2018, 20:39
Forum: Scripts
Topic: Camera connect
Replies: 2
Views: 1843

Re: Camera connect

Thanks Fabio, now it works.
by Forum_2018
26 Dec 2018, 20:38
Forum: Scripts
Topic: Camera connect
Replies: 2
Views: 1843

Re: Camera connect

Hallo,
InputButton should be inside the loop, so:

conn$ = ""
butconnect = ""
while butconnect <> "End"
butconnect = InputButton("Connect"+Conn$, "Cam1", "Cam 2", "Telescope", "End")
....
....