Jump to content

Jack023

Active Members
  • Posts

    67
  • Joined

  • Last visited

Jack023's Achievements

Wayfarer

Wayfarer (2/7)

0

Reputation

  1. No I'm not sorry.
  2. Fixed it myself by adding: While _IsPressed("20") Sleep(100) WEnd func say() Local $hDLL = DllOpen("user32.dll") Send("y") $paste = ClipPut("" & $v_array[$i]) Send("{CTRLDOWN}v{CTRLUP}") $i +=1 If $i = 9 Then $i = 0 While 1 If _IsPressed("20", $hDLL) Then $paste = ClipPut("" & $v_array[$i]) Send("{CTRLDOWN}v{CTRLUP}") $i +=1 If $i = 9 Then $i = 0 While _IsPressed("20") Sleep(100) WEnd EndIf If _IsPressed("0D", $hDLL) Then DllClose($hDLL) ; Close the Dll before you exit. ExitLoop EndIf WEnd EndFunc anyway thanks for helping +1 ^^
  3. Well almost, enter works with ending only when I press [ it's spamming: yCC0000FF7F0000ffffb7102f1648aaff41e9ff00bfCC0000FF7F0000ffffb7102f1648aa until I press enter. The send("y") is good but I want like this: Everytime when I hit enter $paste = ClipPut("" & $v_array[$i]) Send("{CTRLDOWN}v{CTRLUP}") $i +=1 run this once, when i hit enter again do it again etc, until I hit enter then it stops and wait till i press [ again? EDIT: Got it working only have 1 problem left; #include <Misc.au3> HotKeySet("[", "say") Global $v_array[10] ; Why are you declaring 10 elements? <<<<<<<<<<< $v_array[0] = "CC0000" $v_array[1] = "FF7F00" $v_array[2] = "00ffff" $v_array[3] = "b7102f" $v_array[4] = "1648aa" $v_array[5] = "ff41e9" $v_array[6] = "ff00bf" $v_array[7] = "32CD32" $v_array[8] = '000000' $i = 0 func say() Local $hDLL = DllOpen("user32.dll") Send("y") $paste = ClipPut("" & $v_array[$i]) Send("{CTRLDOWN}v{CTRLUP}") $i +=1 If $i = 8 Then $i = 0 While 1 If _IsPressed("20", $hDLL) Then $paste = ClipPut("" & $v_array[$i]) Send("{CTRLDOWN}v{CTRLUP}") $i +=1 If $i = 8 Then $i = 0 EndIf If _IsPressed("0D", $hDLL) Then DllClose($hDLL) ; Close the Dll before you exit. Exit EndIf WEnd EndFunc While 1 sleep(100) WEnd Number 1 is; when I hold the spacebar it do it more timers just want it one time until i press it again because you hold it pretty fast. Number 2 is; when I press enter don't exit
  4. Hey all This is my code, #include <Misc.au3> HotKeySet("[", "say") Dim $v_array[10] $v_array[0] = "CC0000" $v_array[1] = "FF7F00" $v_array[2] = "00ffff" $v_array[3] = "b7102f" $v_array[4] = "1648aa" $v_array[5] = "ff41e9" $v_array[6] = "ff00bf" $v_array[7] = "32CD32" $v_array[8] = '000000' $i = 0 func say() Local $hDLL = DllOpen("user32.dll") Send("y") $paste = ClipPut("" & $v_array[$i]) Send("{CTRLDOWN}v{CTRLUP}") $i +=1 if $i = 7 Then $i = 0 if _IsPressed("20", $hDLL) Then $paste = ClipPut("" & $v_array[$i]) Send("{CTRLDOWN}v{CTRLUP}") $i +=1 EndIf if _IsPressed("0D", $hDLL) Then exit EndIf EndFunc While 1 Sleep(1000) WEnd I the first part works: when I hit [ then it sends what I want. Now the problem is: Every time I hit space I want that it repeat the same except the send("y") until I hit enter. Can't get out how to do it using loops. Thanks in advance
  5. I know it's an old thread but I needed it too and find a solution! To send commanda to a game let it: FileWrite(sourcegame/cfg/test.cfg) <-- example Then bind a button ingame like: Bind "kp_end" "exec test" Then you send: Send("{NUMPAD1}") After that FileDelete("sourcegame/cfg/test.cfg") So the full code is like: FileWrite(sourcegame/cfg/test.cfg) <-- example Send("{NUMPAD1}") FileDelete("sourcegame/cfg/test.cfg") You can also make a txtfile with all the commanda you want send then filereadline, filewrite thenthe same.. And instead of send you can use ControlSend too so you cando it out of the game! No problem and have a good day!
  6. asyou.can.see.in.my.post.i.already.tried.it.but.output.is.0?
  7. Hey all, How can I read from a html/php page the text without the html/php tags "<br>" as an example? Local $oIE = _IE_Example("site") Local $sText = _IEBodyReadText($oIE) MsgBox(0, "Body Text", $sText) $servdate = "site" $oHTTP = ObjCreate("winhttp.winhttprequest.5.1") $oHTTP.Open("GET", $servdate, 0) $oHTTP.Send() $txt = $oHTTP.Responsetext MsgBox(0,"",$txt) those ways I have tried but don't work, any tips?
  8. Well done, it's working right now !
  9. Sorry, Came to a another problem. Func _RunAllOnStart() _listview() _HasVideoAds() _RegistrationDate() _CompletionRate() _CurrentBalance() _PayoutDate() _ServerDate() _Statistics() _LastRefresh() _ReferralStatus() EndFunc Func _RunAllFunc() GUISetState(@SW_LOCK) _listview() _ReferralStatus() _HasVideoAds() _RegistrationDate() _CompletionRate() _CurrentBalance() _PayoutDate() _ServerDate() _Statistics() _LastRefresh() _listview() GUISetState(@SW_UNLOCK) EndFunc Runallonstart that means when GUI starts up it will run all functions and then the sorting system works. When i click $button1 = Refresh button then it will do the _RunAllFunc. Then my listview is empty for some reason because i added the: func _listview() _GUICtrlListView_DeleteAllItems($listview) GUICtrlSetBkColor($listview, 0xF2F6F7) ;~ _GUICtrlListView_SetBkColor($listview, 0x0000FF) _GUICtrlListView_SetColumnWidth($listview, 0, 85) GUIRegisterMsg($WM_NOTIFY, "_WM_NOTIFY") EndFunc Func _WM_NOTIFY($hWnd, $iMsg, $wParam, $lParam) #forceref $hWnd, $iMsg, $wParam $tNMHDR = DllStructCreate($tagNMHDR, $lParam) $iIDFrom = DllStructGetData($tNMHDR, "IDFrom") $iCode = DllStructGetData($tNMHDR, "Code") Switch $iIDFrom Case $listview Switch $iCode Case $LVN_COLUMNCLICK ; A column was clicked $tInfo = DllStructCreate($tagNMLISTVIEW, $lParam) _GUICtrlListView_SimpleSort($listview, $fSortSense, DllStructGetData($tInfo, "SubItem")) EndSwitch EndSwitch EndFunc So how to fix this?
  10. Melba, You are awesome! Thanks alot
  11. Hello all, I'm struggling with a sorting problem with my Listview: I want be able to sort it by clicking the Names on top. Global $listview = GUICtrlCreateListView("Date |Requests |Impressions |Clicks |CTR |eCPM |Earnings ", 15, 160, 679, 105) func _listview() _GUICtrlListView_DeleteAllItems($listview) GUICtrlSetBkColor($listview, 0xF2F6F7) ;~ _GUICtrlListView_SetBkColor($listview, 0x0000FF) _GUICtrlListView_SetColumnWidth($listview, 0, 85) EndFunc GUICtrlCreateListViewItem($date & " "&"|" &$totalreq&" "&"|" &$totalimpes&" "&"|"& $total_clicks&" "&"|"& $ctr&"% "&"|$"& $ecpm&" "&"|$"& $totalbalance&" ", $listview) Sorry for the weird sentences. Anyway , i tried some sorting things in helpfile but everytime my script will just doing weird because it's doing a while loop. So how to sort them, until i quit the gui or click the "$Button1" button.
  12. I tried to fix the white line with: GUICtrlSetBkColor($listview, 0xF2F6F7) _GUICtrlListView_SetBkColor($listview, 0xF2F6F7) For some reason this don't work and nothing change, But if i use this: _GUICtrlListView_SetBkColor($listview, 0x0000FF) Then the under and side line will be red like this: But it needs to be the same color as: 0xF2F6F7
  13. Alright, got it working for so far, Ofcourse there are always new problems.. I changed the background color with: Global $listview = GUICtrlCreateListView("Date |Requests |Impressions |Clicks |CTR |eCPM |Earnings ", 15, 160, 685, 105) GUICtrlSetBkColor($listview, 0xF0F6F7) Code looks better in my autoit but anyway, Few things i don't like is the white line under the listview and on the right side of the listview. Then i want to remove that i can make the tabs smaller or bigger, i want just 1 size and not able to make them smaller or bigger. Is this possible? Then i want to make it sortable, It's clickable right now but i want like if i click earnings then the top earnings will be on top etc. EDIT: found out i can use this code so i cant resize the columns: ControlDisable($hGUI, "", HWnd(_GUICtrlListView_GetHeader($hListView))) only the problem is that i can't click it anymore to sort it in the future..
  14. Alright, Checked it out and i can make it in a guicreate listview, but how to place it in my current gui like the picture in the 1st post?
  15. Well maybe, in my current application i just use labels what i change with guictrlsetdata, and with arrays i can sort them. I tried the listview but when i click on top it won't sort from higher to lower: #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> #include <MsgBoxConstants.au3> Example() Func Example() Local $listview, $button, $item1, $item2, $item3, $msg GUICreate("listview items", 220, 250, 100, 200, -1, $WS_EX_ACCEPTFILES) GUISetBkColor(0x00E0FFFF) ; will change background color $listview = GUICtrlCreateListView("col1 |col2|col3 ", 10, 10, 200, 150);,$LVS_SORTDESCENDING) $button = GUICtrlCreateButton("Value?", 75, 170, 70, 20) $item1 = GUICtrlCreateListViewItem("item2|5|42", $listview) $item2 = GUICtrlCreateListViewItem("item1|2|3", $listview) $item3 = GUICtrlCreateListViewItem("item3|32|33", $listview) GUICtrlCreateInput("", 20, 200, 150) GUICtrlSetState(-1, $GUI_DROPACCEPTED) ; to allow drag and dropping GUISetState(@SW_SHOW) ; Loop until the user exits. Do $msg = GUIGetMsg() Select Case $msg = $button MsgBox($MB_SYSTEMMODAL, "listview item", GUICtrlRead(GUICtrlRead($listview)), 2) Case $msg = $listview MsgBox($MB_SYSTEMMODAL, "listview", "clicked=" & GUICtrlGetState($listview), 2) EndSelect Until $msg = $GUI_EVENT_CLOSE EndFunc ;==>Example
×
×
  • Create New...