Jump to content

AndrewL

Active Members
  • Posts

    41
  • Joined

  • Last visited

Profile Information

  • Location
    Canberra

AndrewL's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. @Jon Will 3.1.1 be released soon or are the 3.1.0++ changes being incorporated? Two different streams of code?
  2. Thanks for the feedback. Unfortunately, WinSpy did not find any other control information useful to this scenario. Only a Send("{SPACE}") will suffice...
  3. In the attached screenshot I would like to be able to use a ControlSend to toggle the Help checkbox within the Listbox. I can navigate to the Help checkbox using the code: ControlSend("Domino Enterprise Server", "", 401, "{DOWN 1}") However, nothing happens when I try to toggle it using the code: ControlSend("Domino Enterprise Server", "", 401, "{SPACE}") The AutoIT Info window shows there's no Checkbox control and I realise a Send("{SPACE}") would suffice, but I'd to cater for situations when the console's locked. Can ControlSend be used in this scenario? Assistance is appreciated.
  4. Jon, for those of us who require to deliver appkits into a production environment thru a configuration control board, it's much easier getting the appkit passed based on a stable AUTOIT version. The problem for me is that the way GUI stuff is evolving is like the magical mystery tour. I could be mistaken but there seems to have been a lack of information to the users as to where you're going to draw a line the sand with the GUI for the 3.0.102 stable. I'd say for the 3.0.102 stable go without the GUI, but from 3.0.103 include it with the general AU3 functions and give firm deadlines to the contributors of say 4 months between each new stable release. Great effort from all involved!!!!
  5. Thanks. I'll experiment now!
  6. Thanks. Therefore, can I use GUISetControlEx or GUIWrite to write a line of text such as 0% - Installer Started to the $updown_1 as well?
  7. I've traditionally used the default AutoIT progress functions as part of my installer scripts and am considering using the new GUI functionality. I used AutoBuilder 0.4 to construct the shell code at the bottom. What I need is the additional code to populate the position in the progress bar and the text in the updown list with the following stages: 0% - Installer Started 25% - Extracted Files 50% - Installation Completed 75% - Configuration Completed 100% - Installer Completed Can someone help me fill in the blanks please? Shell Code below->>>>>>>> ;Script generated by AutoBuilder 0.4 Opt("GUICoordMode", 1) Opt("GUINotifyMode", 1) GuiCreate("MyGUI", 331,144,(@DesktopHeight-331)/2, (@DesktopHeight-144)/2 , 0x04CF0000) $progress_1 = GUISetControl("progress", "Progress 1", 20, 30, 290, 30) $updown_1 = GUISetControl("updown", "Updown 1", 20, 80, 290, 60) GuiShow() While 1 sleep(100) $msg = GuiMsg(0) Select Case $msg = -3 Exit Case $msg = 0 ;;; Case $msg = $progress_1 ;;; Case $msg = $updown_1 ;;; EndSelect WEnd Exit
  8. @JdeB product you've got happening here... Two questions: 1. Should the syntax builder be invoked for a commented line such as => ; @OSBuild value of 3790 is used to detect if the OS is Windows 2003. @OSVersion does not report Windows 20032. Have Jon and you colluded to ensure this is the default editor for the 3.0.102 stable
  9. I find SciTe's default colour for the line numbers and quoted string constants a little hard on the eyes after a while. See example below. Any chance of changing them to be similiar to the crimson editor's below default colours? See example below.
×
×
  • Create New...