jaenster Posted February 10, 2006 Posted February 10, 2006 Can you edit the pause script and exit opsions? -jaenster
DaveF Posted February 10, 2006 Posted February 10, 2006 Yes. Yes yes yes, there it was. Youth must go, ah yes. But youth is only being in a way like it might be an animal. No, it is not just being an animal so much as being like one of these malenky toys you viddy being sold in the streets, like little chellovecks made out of tin and with a spring inside and then a winding handle on the outside and you wind it up grrr grrr grrr and off it itties, like walking, O my brothers. But it itties in a straight line and bangs straight into things bang bang and it cannot help what it is doing. Being young is like being like one of these malenky machines.
flaxcrack Posted February 10, 2006 Posted February 10, 2006 Can you edit the pause script and exit opsions?AutoItSetOption ( "option", param ) [quote] Gilbertson's Law: Nothing is foolproof to a sufficiently talented fool.Sandro Alvares: Flaxcrack is please not noob! i can report you is stop stupid. The Post[/quote]I made this: FWD & MD5PWD()
MHz Posted February 10, 2006 Posted February 10, 2006 One word, Break() This prevents script interuption. Else use Beta tray func... in the Beta of AutoIt
jaenster Posted February 10, 2006 Author Posted February 10, 2006 oke thanks , but how it works ? an you give a expamle ?flaxcrack -jaenster
flaxcrack Posted February 10, 2006 Posted February 10, 2006 Check out the AutoItSetOption Function Reference in the Help file. I have never used it before but it looks like what you want. [quote] Gilbertson's Law: Nothing is foolproof to a sufficiently talented fool.Sandro Alvares: Flaxcrack is please not noob! i can report you is stop stupid. The Post[/quote]I made this: FWD & MD5PWD()
DaveF Posted February 10, 2006 Posted February 10, 2006 I think MHz is actually closest answering what the OP's question is about (I have to assume): changing what appears on the right-click menu of the AutoIt tray icon... Yes yes yes, there it was. Youth must go, ah yes. But youth is only being in a way like it might be an animal. No, it is not just being an animal so much as being like one of these malenky toys you viddy being sold in the streets, like little chellovecks made out of tin and with a spring inside and then a winding handle on the outside and you wind it up grrr grrr grrr and off it itties, like walking, O my brothers. But it itties in a straight line and bangs straight into things bang bang and it cannot help what it is doing. Being young is like being like one of these malenky machines.
jaenster Posted February 10, 2006 Author Posted February 10, 2006 Wait , i has tested , this is NOT what i mean ! .. i will make a screenshot ... Please wait -jaenster
flaxcrack Posted February 10, 2006 Posted February 10, 2006 Wait , i has tested , this is NOT what i mean ! .. i will make a screenshot ... Please wait Okay.... [quote] Gilbertson's Law: Nothing is foolproof to a sufficiently talented fool.Sandro Alvares: Flaxcrack is please not noob! i can report you is stop stupid. The Post[/quote]I made this: FWD & MD5PWD()
Moderators SmOke_N Posted February 10, 2006 Moderators Posted February 10, 2006 Sure is a while to wait for a screen shot Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.
Valuater Posted February 10, 2006 Posted February 10, 2006 maybe #include <Constants.au3> #NoTrayIcon Opt("TrayOnEventMode",1) Opt("TrayMenuMode",1); Default tray menu items (Script Paused/Exit) will not be shown. TraySetClick(16); Only secondary mouse button will show the tray menu. $infoitem = TrayCreateItem("Info") TrayItemSetOnEvent(-1,"ShowInfo") TrayCreateItem("") $exititem = TrayCreateItem("Exit") TrayItemSetOnEvent(-1,"ExitScript") TraySetState() While 1 Sleep(10); Idle loop WEnd Exit ; Functions Func ShowInfo() Msgbox(0,"Info","Tray OnEvent Demo") EndFunc Func ExitScript() Exit EndFunc 8)
Knight Posted February 10, 2006 Posted February 10, 2006 (edited) Here he is ..Look up TrayCreateMenu in the autit beta helpfile.EDIT: He beat me to it Edited February 10, 2006 by Knight
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