Jump to content

AdmiralAlkex

Active Members
  • Posts

    4,738
  • Joined

  • Last visited

  • Days Won

    4

AdmiralAlkex last won the day on December 31 2012

AdmiralAlkex had the most liked content!

3 Followers

About AdmiralAlkex

  • Birthday 11/30/1989

Profile Information

  • Member Title
    Where is the fish?
  • Location
    Between the cities, Swe
  • WWW
    http://to be decided
  • Interests
    Computers, Techy stuff, ask me for more

Recent Profile Visitors

3,258 profile views

AdmiralAlkex's Achievements

  1. Hello and Welcome to the forum! Your question is how to write to STDOUT? Did you search the helpfile for STDOUT? Use ConsoleWrite() and note that part in the helpfile about compiling to CUI/console app.
  2. Try resizing the window. I would be very surprised if it doesn't happen for you. $WS_CLIPCHILDREN makes no difference.
  3. Anyway to get rid of the flicker? It's completely unusable this way. #include <IE.au3> #include <WindowsConstants.au3> #include <GUIConstantsEx.au3> Local $sHTML = '<body bgcolor="#1E1E1E"></body>' $hGui = GUICreate("flicker test", 480, 320, -1, -1, BitOR($GUI_SS_DEFAULT_GUI, $WS_SIZEBOX)) Local $oIE = _IECreateEmbedded() $hEmbed = GUICtrlCreateObj($oIE, 0, 0, 480, 320) GUICtrlSetResizing(-1, $GUI_DOCKBORDERS) _IENavigate($oIE, "about:blank") _IEDocWriteHTML($oIE, $sHTML) GUISetState() While 1 If GUIGetMsg() = $GUI_EVENT_CLOSE Then ExitLoop WEnd Win10
  4. Sorry I have no idea. I haven't worked on anything SDL-related in a really long time.
  5. I had to install some helpfile creator or something, you can see my ramblings in the post before the upload... But I'm fairly sure I wouldn't have changed something that could affect the running of the code. If anything's broken in a way it shouldn't be, maybe I didn't have the last version of the code. No one did ever clearly confirm that I did. I am not the only one with a copy of the SVN, am I?
  6. For the next version I'm thinking a favorites feature. There are some people I really don't want to miss when they are starting. What is the most annoying or noticeable notification you can think of? (bonus if it works even with a fullscreen game on top!) Let's start: Spam the keyboard leds Play loud noices ...
  7. Update to 1.1 Fixes for Twitch. GUI for playing/downloading, supports all your livestreamer plugins, official list. ADDED: Playing/downloading from clipboard (with quality select) Shift-click a stream will open it in the play/download GUI Set "--hls-segment-threads 2" for smoother live streams Application icon More quotes FIXED: Twitch support Adjusted notifications Twitch scan when 100+ items Hitbox thumbnail link CHANGED: Default scan time 2 minutes Download from first post.
  8. Changes to Twitch (Client-ID Requirement FAQs) means that the Twitch parts of the script is not working as of yesterday. I will make a proper update shortly. Until then, find and change the following lines $sUrl = $sBaseUrl & OPTIONS_OFFSET_LIMIT_TWITCH($iOffset, $iLimit) $sUrl = 'https://api.twitch.tv/kraken/streams?channel=' & $sOptions & '&limit=' & $iLimit to $sUrl = $sBaseUrl & OPTIONS_OFFSET_LIMIT_TWITCH($iOffset, $iLimit) & "&client_id=i8funp15gnh1lfy1uzr1231ef1dxg07 "$sUrl = 'https://api.twitch.tv/kraken/streams?channel=' & $sOptions & '&limit=' & $iLimit & "&client_id=i8funp15gnh1lfy1uzr1231ef1dxg07"
  9. You are saying that as if WinRAR is the weird one. In fact most applications DON'T add themselves to the PATH environment variable. Open a cmd window and run path and see for yourself.
  10. Traytips are supposed to be read, why work against the system?
  11. Note that you can simply select multiple files in explorer and all will be edited when you edit the details... But a script may be better if you are doing it a lot
  12. But that was for science. Science has never harmed anyone, right? *AdmiralAlkex was vaporized by V'Ger* *V'Ger got 26 xp and leveled up*
  13. There might be a better way, but anyway here's how I did it: I loaded the file in Paint.NET and save as 24 bit .png, this removes all alpha without losing any qualityOpen the .png and select the white background around the block with the magic wandDelete selectionSave back as 32 bit .icoIf you don't care about the area around the block to be transparent just skip step 2 and 3... To use .ico files in Paint.NET you need the plugin from http://forums.getpaint.net/index.php?/topic/927-icon-cursor-and-animated-cursor-format-v37-may-2010/
  14. If it only happens when you have Explorer open to that folder then why do you have it open? Have you tried running FileGetSize() multiple times? (just a guess)
×
×
  • Create New...