Jump to content

WiiDSmoker

Members
  • Posts

    14
  • Joined

  • Last visited

Everything posted by WiiDSmoker

  1. I can get the context menu to show, but upon hitting 'About button'; nothing happens. Func test () $Label = GUICtrlCreateLabel("test", 121, 0, 30, 17) Global $idButtoncontext = GUICtrlCreateContextMenu($Label ) Global $idMenuAbout = GUICtrlCreateMenuItem("About button", $idButtoncontext) End Func While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit Case $idMenuAbout msgbox(0,0,"test") EndSwitch WEnd
  2. 0x10 is the key for Shift How do I do Shift or Control Down.? I want to send a command of Shift & T. I want to convert this ControlSendPlus($hwnd, "", "", "{SHIFTDOWN}", 2) ControlSendPlus($hwnd, "", "", "t", 2) ControlSendPlus($hwnd, "", "", "{SHIFTUP}", 2) _PostMessage_Send($hwnd, ????) _PostMessage_Send($hwnd, 0x54) _PostMessage_Send($hwnd, ???) to
  3. Basically I am reading in a value $BoxTimer = _MemoryRead, etc sometimes this time appears to get stuck so if $BoxTimer does not change after one second, then reset $BoxTimer... if $BoxTimer = 100, then one second later, if it equals 100 still, change $BoxTimer to zero i dont know how else to explain
  4. I hope I can explain this right. Basically want I'd like to do, is, if a value I am reading doesn't change within one second then reset that value.. so for instance if the $value = 100, then after 1 second, if $value=100 STILL, then change $value to equal 0 can't seem to figure it out, seems like it would be easy though =/
  5. figured it out using the above. Thanks so much man!
  6. I have no idea what that means
  7. Hi Everyone, I have two images that I use with my script; however I can't seem to figure out how to include these images in the exe when compiling. Help would be appreciative. Thanks!
  8. If I use a label, how do I make it perform a function when the label is clicked? Is that what you're saying can be done?
  9. I have a button simply captioned at "?". My GUI is a white background; but even if I make the button have a white background the button part still shows.. Anyways, I simply want either an invisible button that you can click on [if you know where it is] or a button that blends in with the GUI. I've tried alot and can't seem to figure it out.
  10. Yeah I've figured out how to do this with a button, but with a checkbox, I can't seem to get it to work at all.
  11. Hi Everyone, I have a checkbox and what I am looking to do with it is, is that when the Checkbox is checked, I'd like to hide other controls such as a Label from appearing. So when Checkbox_One = 1, Label_One is now not showing. I've tried searching, but I just can't seem to figure it out. Thanks, Seth
×
×
  • Create New...