Results 1 to 5 of 5

Thread: Autohotkey Photobooth Options Screen

  • Thread Tools
    • Show Printable Version
    • Subscribe to this Thread…
  • Display
    • Switch to Hybrid Mode
    • Switch to Threaded Mode
  1. #1
    Geoffrey Page
    • View Profile
    • View Forum Posts
    • Private Message
    • Visit Homepage
    Geoffrey Page is offlineJunior Member
    Join Date
    Feb 2010
    Location
    Yuba City, CA
    Posts
    12

    Default Autohotkey Photobooth Options Screen

    I’ve been working with the Autohotkey photobooth_options_screen which is awesome, but I can’t for the life of me figure out how to change the background color to an image. I’ve racked my brain with lots of the Gui, Add, but no luck. Anyone have any success, ideas, suggestions? I don't know what I'm missing or if I'm spinning my wheels.
    Geoffrey Page
    EntertainmentElements.com
    Reply With Quote Reply With Quote

  2. #2
    Chris Breeze is offlineAdministrator
    Join Date
    Jan 2005
    Posts
    5,821

    Default

    You should be able to do this with a command like:
    Gui, Add, Picture,, C:\Photos\image.gif
    Reply With Quote Reply With Quote

  3. #3
    Geoffrey Page
    • View Profile
    • View Forum Posts
    • Private Message
    • Visit Homepage
    Geoffrey Page is offlineJunior Member
    Join Date
    Feb 2010
    Location
    Yuba City, CA
    Posts
    12

    Default

    Thank you Chris. I have tried this and every variation of, but no success so far. Does this go under the "define the options screen" setting or should I create subheading for this? I'm not sure if I'm missing something or some variation in the string.

    Thanks.
    Geoffrey Page
    EntertainmentElements.com
    Reply With Quote Reply With Quote

  4. #4
    Chris Breeze is offlineAdministrator
    Join Date
    Jan 2005
    Posts
    5,821

    Default

    This works on my system:

    Code:
    ; define the options screen
    Gui, Color, 0
    Gui, -Caption -Border +AlwaysOnTop
    Gui, Add, Picture,,C:\Photobooth\PhotoboothImages\4.jpg
    Gui, Font, s48, Arial
    Gui, Add, Text, x0 y0 cWhite gStartClicked, Use current settings
    Gui, Add, Text, cWhite gProfile1Clicked, Select profile 1
    Gui, Add, Text, cWhite gProfile2Clicked, Select profile 2
    Gui, Font, norm
    Reply With Quote Reply With Quote

  5. #5
    Geoffrey Page
    • View Profile
    • View Forum Posts
    • Private Message
    • Visit Homepage
    Geoffrey Page is offlineJunior Member
    Join Date
    Feb 2010
    Location
    Yuba City, CA
    Posts
    12

    Smile

    IDK. For some reason with my system, it doesn't like to replace the background color with the my image. I'll keep chugging along until I find a solution.

    Thanks for your help . Oh, and thanks for the other AHKs.
    Geoffrey Page
    EntertainmentElements.com
    Reply With Quote Reply With Quote

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •