SplashText Command

AutoIt

Q #1: I want to use the SplashText command to show the status of my
      installation process.  I don't want it to be in the middle of the
      screen, I want to place it on the upper left corner,  Is there a way
      to do that.

      ---------------------------------------------------------------------

A #1: Display the splashtext screen, and then move it to the new location.

 

      ; ======= Scriptlet Starts Here =======
      SplashTextOn, 300, 300, Installation in Progress, Part 1 of 10
      WinMove, Installation in Progress, , 20, 20, default, default
      SplashTextOn, 300, 300, Installation in Progress, Part 2 of 10
      WinMove, Installation in Progress, , 20, 20, default, default
      SplashTextOn, 300, 300, Installation in Progress, Part 3 of 10
      WinMove, Installation in Progress, , 20, 20, default, default
      ...

      ; ======= Scriptlet Ends Here =======

      etc.  You get the idea.

-----------------------------------------------------------------------------

Q #2: Can a picture be put in the SplashText window?

      ---------------------------------------------------------------------

A #1: Unfortunately, no.  There is presently no way to put a picture into
      the SplashText window.