Jump to content

m4tius

Active Members
  • Posts

    26
  • Joined

  • Last visited

m4tius's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Ah sorry, It is also The problem is that i just can't compile default main file which uses AutoItX.lib.
  2. I've done everything like in this tutorial: http://www.mmowned.com/forums/general-prog...c-programs.html, but I get the following error: C:\...\Makefile.win [build Error] [main.o] Error 1. I try to compile the main file, haven't changed nothing in it. Please help!
  3. But i have to do this without any loop. AsyncHotkeyset or Hotkey would be the best.
  4. It is possible to make a hotkey with shift, and just shift? If yes could you give any example script with that func? I really need good func to assign keys like shift. Thx
  5. __FFSend ==> Socket Error _FFCmd ==> Error return value
  6. #include <FF.au3> HotKeySet("{Home}","Refresh") While 1 WEnd Func Refresh() HotKeySet("{Home}") _FFACTION("reload") HotKeySet("{Home}","Refresh") EndFunc Doesnt work ;/. Damn is such a simple thing, but i dont know what is wrong ;/
  7. ^ No, its my first time. I just want refresh already opened FF. I tried 1 time with MozRepl and nothing.
  8. I guess so #include <FF.au3> While 1 HotKeySet("{Home}","Refresh") WEnd Func Refresh() _FFACTION("reload") EndFunc
  9. ^ I want to refresh when FF is minimized... This doesnt work: _FFACTION("reload") Before I wrote this: While 1 HotKeySet("{Home}","Refresh") WEnd Func Refresh() ControlSend("YouTube - Bullet For My Valentine- Hit The Floor - Mozilla Firefox","","[CLASS:MozillaWindowClass;INSTANCE:2]", "{F5}") EndFunc But it doesnt work too ;/
  10. Is there any refresh function in FF.au3? Cuz i dont wanna change window names in ControlSend anymore ;p
  11. Im really angry cuz in autohotkey i could bind these keys same like space or letters... But i need it in autoit, it can be any other function however HotKey looks nice. Of course i need these keys only, any other keys with it.
  12. Could anyone tell me how to bind a shift, alt or ctrl with a function using Hotkey? Any of these doesnt work for me.
  13. I want to use it to write simple script to make hotkeys and I need LAlt, RAlt, LCtrl etc... and just it, without other keys. It is possible to change this script for this?
  14. I want to save changed radios after click button. Those instructions doesnt work cuz in ini file there are "1" only - for every first radio of the group. Please help. There are some fragments of the script: GUIStartGroup() $Radio1 = GUICtrlCreateRadio("1", 389, 88, 33, 25) $Radio2 = GUICtrlCreateRadio("2", 429, 88, 33, 25) $Radio3 = GUICtrlCreateRadio("3", 469, 88, 33, 25) $Radio4 = GUICtrlCreateRadio("4", 509, 88, 33, 25) Case $msg = $Button2 $file = filesavedialog("Select Settings File", @ScriptDir, "Ini files (*.ini)", 2, "My Settings.ini") If not @Error Then If GUICtrlRead($Radio1) = $GUI_CHECKED Then IniWrite($file, "options", $Radio1, 1) ElseIf GUICtrlRead($Radio2) = $GUI_CHECKED Then IniWrite($file, "options", $Radio2, 1) ElseIf GUICtrlRead($Radio3) = $GUI_CHECKED Then IniWrite($file, "options", $Radio3, 1) ElseIf GUICtrlRead($Radio4) = $GUI_CHECKED Then IniWrite($file, "options", $Radio4, 1) EndIf EndIf
×
×
  • Create New...