Administrators Jon Posted September 9, 2004 Author Administrators Share Posted September 9, 2004 Jon, could you upload the doc source for me ? so i can update the definition files... Yep. Deployment Blog: https://www.autoitconsulting.com/site/blog/ SCCM SDK Programming: https://www.autoitconsulting.com/site/sccm-sdk/ Link to comment Share on other sites More sharing options...
LOULOU Posted September 10, 2004 Share Posted September 10, 2004 Jon I have a problem with InetGet, all my synthax is good but the downloadin doesn't want to begin I have a windows XP Athlon 2800 with zone Alarm and a power lan adaptator Link to comment Share on other sites More sharing options...
Administrators Jon Posted September 10, 2004 Author Administrators Share Posted September 10, 2004 Jon I have a problem with InetGet, all my synthax is good but the downloadin doesn't want to begin I have a windows XP Athlon 2800 with zone Alarm and a power lan adaptator I have zonealarm, I have to allow autoit to access the internet when it is running Deployment Blog: https://www.autoitconsulting.com/site/blog/ SCCM SDK Programming: https://www.autoitconsulting.com/site/sccm-sdk/ Link to comment Share on other sites More sharing options...
Administrators Jon Posted September 13, 2004 Author Administrators Share Posted September 13, 2004 I've updated the installer with the new non-blocking version of InetGet(). Deployment Blog: https://www.autoitconsulting.com/site/blog/ SCCM SDK Programming: https://www.autoitconsulting.com/site/sccm-sdk/ Link to comment Share on other sites More sharing options...
Administrators Jon Posted September 23, 2004 Author Administrators Share Posted September 23, 2004 Updated with the new GUI stuff and David's "left" "right" "primary" "secondary" mouse fixes. Deployment Blog: https://www.autoitconsulting.com/site/blog/ SCCM SDK Programming: https://www.autoitconsulting.com/site/sccm-sdk/ Link to comment Share on other sites More sharing options...
Administrators Jon Posted September 23, 2004 Author Administrators Share Posted September 23, 2004 Just in case anyone has not been following the threads in the GUI forum, the new gui code is completely incompatible with any existing scripts. You were all warned, and believe me the decision to change the syntax was not taken lightly. More changes to come but nothing as script-breaking hopefully. Deployment Blog: https://www.autoitconsulting.com/site/blog/ SCCM SDK Programming: https://www.autoitconsulting.com/site/sccm-sdk/ Link to comment Share on other sites More sharing options...
Chris_1013 Posted September 24, 2004 Share Posted September 24, 2004 Cheers for this Jon, Docu-bug for GUICtrlSetNotify, it's referred to as GUIControSetNotify Link to comment Share on other sites More sharing options...
Administrators Jon Posted September 24, 2004 Author Administrators Share Posted September 24, 2004 Cheers for this Jon, Docu-bug for GUICtrlSetNotify, it's referred to as GUIControSetNotify It won't even exist in the next version... Deployment Blog: https://www.autoitconsulting.com/site/blog/ SCCM SDK Programming: https://www.autoitconsulting.com/site/sccm-sdk/ Link to comment Share on other sites More sharing options...
Chris_1013 Posted September 24, 2004 Share Posted September 24, 2004 It won't even exist in the next version... <{POST_SNAPBACK}>Yeah so now I'm confused. Guess I really should have been keeping up with the stuff in the GUI forum. Link to comment Share on other sites More sharing options...
Administrators Jon Posted September 24, 2004 Author Administrators Share Posted September 24, 2004 (edited) Yeah so now I'm confused. Guess I really should have been keeping up with the stuff in the GUI forum. All controls will return a message to GuiGetMsg() - none of them will automatically close the gui. It just means that instead of relying on the gui to auto-close when certain buttons are pressed you have to do: $msg = GuiGetMsg() if $msg = $buttoniwanttoclose Then ... A tiny bit of extra code in order to get rid of the notify stuff that still confuses me! Edited September 24, 2004 by Jon Deployment Blog: https://www.autoitconsulting.com/site/blog/ SCCM SDK Programming: https://www.autoitconsulting.com/site/sccm-sdk/ Link to comment Share on other sites More sharing options...
Chris_1013 Posted September 24, 2004 Share Posted September 24, 2004 I like that, it makes more sense to me. Is this something I can do right now, or are you saying the code for it will be in the next unstable release? Link to comment Share on other sites More sharing options...
Administrators Jon Posted September 24, 2004 Author Administrators Share Posted September 24, 2004 I like that, it makes more sense to me. Is this something I can do right now, or are you saying the code for it will be in the next unstable release? Next release - (or just set notifymode to 1 at the top of your script to give the same results now) Deployment Blog: https://www.autoitconsulting.com/site/blog/ SCCM SDK Programming: https://www.autoitconsulting.com/site/sccm-sdk/ Link to comment Share on other sites More sharing options...
Chris_1013 Posted September 24, 2004 Share Posted September 24, 2004 Yeah got that set, problem is that makes all buttons close the GUI, which isn't what I want. This notify stuff is bloody confusin innit! Link to comment Share on other sites More sharing options...
Administrators Jon Posted September 24, 2004 Author Administrators Share Posted September 24, 2004 Yeah got that set, problem is that makes all buttons close the GUI, which isn't what I want. This notify stuff is bloody confusin innit! That should work, sounds like your message loop is wrong, post the code. Generally it should look like: $msg = 3 While $msg <> -3 $msg = GuiGetMsg() ... ... Wend Deployment Blog: https://www.autoitconsulting.com/site/blog/ SCCM SDK Programming: https://www.autoitconsulting.com/site/sccm-sdk/ Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now