Jump to content

nyke0

Active Members
  • Posts

    41
  • Joined

  • Last visited

nyke0's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. is it possible to hide the Chrome Inkognito window, like a panic key. i tried with winsetstate, but the title isnt always the same well, someone knows better?
  2. Is it possible to make the GUI invisible but not a custom border? Like this: (black shall be the custom border, rest with winsettrans=0)
  3. #include <GuiconstantsEx.au3> #include <WindowsConstants.au3> #include <SendMessage.au3> Global Const $SC_DRAGMOVE = 0xF012 HotKeySet("{ESC}", "On_Exit") Func On_Exit() Exit EndFunc $hGUI = GUICreate("X", 50, 50, -1, -1, BitOR($WS_POPUP,$WS_BORDER, $WS_SIZEBOX), $WS_EX_TOPMOST) GUISetBkColor(0xFF0000, $hGUI) GUISetState() While 1 Switch GUIGetMsg() Case $GUI_EVENT_PRIMARYDOWN _SendMessage($hGUI, $WM_SYSCOMMAND, $SC_DRAGMOVE, 0) EndSwitch WEnd dont work
  4. Can you send me your RIchedit.au3? I replaced my with that old one.
  5. outdated for newuest autoit version
  6. dont work for me, its just white background with black font color
  7. ​&#8203;test http://www.fileformat.info/info/unicode/char/200B/index.htm the string i mean is: zero width space I need to decode it in: %E2%80%8Btest But I get always: %4C%75%6D%69 my func MsgBox(0, "", _WebEncode('test')) Func _WebEncode($string) Local $return = "", $split = StringToASCIIArray($string, Default, Default, 2) For $i = 0 To UBound($split) - 1 $return &= '%' & Hex($split[$i], 2) Next Return $return EndFunc ;==>_WebEncode
  8. String: [QUOTE=Mike][QUOTE=Daniel][QUOTE=Name]Text[/QUOTE]Text[/QUOTE]Text[/QUOTE] This is a test string. '[QUOTE=Mike][QUOTE=Daniel][QUOTE=Name]Text[/QUOTE]Text[/QUOTE]Text[/QUOTE]' & @CRLF & @CRLF & 'This is a test string.' How I can remove a Text betweens Tags and also the tags? Result should be like 'This is a test string.'
  9. I don't mean a full row or column, a Item only. I found some splutions, but it seems they don't work anymore.
  10. Thanks, but I don't get it. String: カタカナ I need the result of this: http://www.asciitohex.com/ (the URL ENCODED: %26%231071%3B%26%23923%3BZ%26%231256%3B%26%231071%3B) But I get: %E3%82%AB%E3%82%BF%E3%82%AB%E3%83%8A
  11. #include <String.au3> $String = _StringToHex('カタカナ') MsgBox(0, "", $String) Result: 3F3F3F3F 3F = ?
  12. I know that way, thanks. But I asking for a hard save without to recompile for just 1 string.
  13. It's hard to explain, but I will try. After compiling a script I will run it, and with the first run it will create a string, like a key. The script shall keep this string for ever, but it's should'nt be saved in a txt file or somewhere, only in the exe. Is taht possible?
  14. #include <ButtonConstants.au3> #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> #Region ### START Koda GUI section ### Form= $Form1 = GUICreate("Form1", 619, 442, 192, 124) $Button1 = GUICtrlCreateButton("Button1", 32, 16, 75, 25) $Button2 = GUICtrlCreateButton("Button2", 48, 56, 75, 25) GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit Case $Button1 or $Button2 MsgBox(0,"","clicked") EndSwitch WEnd Is this possible?
×
×
  • Create New...