Jump to content

layer

Active Members
  • Posts

    2,366
  • Joined

  • Last visited

Profile Information

  • Member Title
    i love skateboarding
  • Interests
    skateboarding<br />music<br />food<br />sleeping<br />math theory

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

layer's Achievements

Universalist

Universalist (7/7)

3

Reputation

  1. i think you need to take the @SW_MAXIMIZE out of the quote, its been a while so i could be wrong - but try it
  2. wow, nice job i'll try to do the mod tomorrow, thanks
  3. i'll try and search the web for the audio output when i get the time and about the refresh, like, you know how when the end of the lines reaches the end of the GUI? and the GUI is "refreshed and cleared" from the old input sound, well i was suggesting adding a way to have it stay in one spot, so there is no need to refresh like is, sort of like Windows Sound Recorder, when you record stuff, look at the waves it makes, how they stay in one spot.. sorry if i'm not explaining this well :">
  4. havent tested it but ive always wanted to make something like this, awesome i never knew what it was called so i couldnt start one edit: aw this is neat, but like this-is-me said it would be neater if you could get the audio from the speakers and theres just something about the way it refreshes the graphic ? i'm not sure.. sorry if im nitpicking, but its just annoying, maybe make it so it stays still instead of moving, i dont know, up to you
  5. very nice
  6. don't feel like searching but i think gafrost made one of these a long while ago but still, neat
  7. thanks Gary, thanks Solid (wordpad worked btw, i tried it, good to know) little nice simple game, i like it
  8. err.. i get the whole one line thing when i post it
  9. this is actually pretty fun
  10. 101 presses
  11. this looks really neat
  12. well, sort of, i thought it was then i edited my post, i guess i could have made the edit more clear your way lets me do what Holger's code does except with your code i can use multiple GUI's created from AutoIt and get the same affect rather then a process with a window from Run()
  13. you couldn't reply to my help topic http://www.autoitscript.com/forum/index.php?showtopic=33937 it's what i needed, thank you
  14. thanks Uten, exactly what i was looking for edit i dont really have time to look in depth at the code now but it doesnt seem that you can use this script for two GUI's running in one script, does anyone know ? again i'll look more at it when i get back
  15. hi, my problem/question is, can i have a child GUI that cannot be dragged out of its parent? or is there a setting for this? so far i have this code (images attached if you'd like: $MAINGUI = GUICreate("Coins", 600, 400) $FILEMENU = GUICtrlCreateMenu("File") $FILEMENUSECT1 = GUICtrlCreateMenuItem("Open player...", $FILEMENU) $FILEMENUSECT2 = GUICtrlCreateMenuItem("Save player...", $FILEMENU) $FILEMENUSECT3 = GUICtrlCreateMenuItem("Save", $FILEMENU) GUICtrlCreateMenuItem("", $FILEMENU) $FILEMENUSECT4 = GUICtrlCreateMenuItem("Exit", $FILEMENU) GUICtrlCreatePic("backround.jpg", 0, 0, 600, 380) GUICtrlSetState(-1, $GUI_DISABLE) GUISetState(@SW_SHOW, $MAINGUI) ; ; $DIMEWIN = GUICreate("", 40, 40, 20, 20, $WS_POPUP, BitOr($WS_EX_LAYERED, $WS_EX_MDICHILD), $MAINGUI) $DIME = GUICtrlCreatePic("dime.gif", 0, 0, 40, 40) GUISetState(@SW_SHOW, $DIMEWIN) ;GUICtrlSetBkColor(-1, $GUI_BKCOLOR_TRANSPARENT) ; ; ; While 1 $GET = GUIGetMsg() If $GET = $GUI_EVENT_CLOSE Then Exit If $GET = $FILEMENUSECT4 Then Exit If $GET = $DIME Then Drag($DIMEWIN) WEnd ; ; ; Func Drag($WIN) Do $MOUSEPOS = MouseGetPos() WinMove($WIN, "", $MOUSEPOS[0], $MOUSEPOS[1]) Until _IsPressed(01) = 0 EndFunc and when you Drag the dime, the child window can be dragged anywhere evn outside of the parent, i don't want this, i need a way to only allow it to be dragged inside the parent GUI any ideas ? thanks
×
×
  • Create New...