-
Posts
4,738 -
Joined
-
Last visited
-
Days Won
4
AdmiralAlkex last won the day on December 31 2012
AdmiralAlkex had the most liked content!
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
AdmiralAlkex's Achievements
-
ioa747 reacted to a post in a topic: Using #AutoIt3Wrapper_Res_Fileversion info in script
-
Netol reacted to a post in a topic: How to set a tab as active?
-
xedaxy reacted to a post in a topic: How can I edit "New AutoIt v3 Script" template?
-
Doniel reacted to a post in a topic: How can I edit "New AutoIt v3 Script" template?
-
Professor_Bernd reacted to a post in a topic: [Solved] What is the Difference between Shutdown(8) and Shutdown(9)?
-
badcoder123 reacted to a post in a topic: How can I edit "New AutoIt v3 Script" template?
-
Professor_Bernd reacted to a post in a topic: How to set font color on radio? :O
-
GoogleGonnaSaveUs reacted to a post in a topic: 3D Array
-
TrevorPearson reacted to a post in a topic: Using #AutoIt3Wrapper_Res_Fileversion info in script
-
pixelsearch reacted to a post in a topic: Straight issue with InetGet
-
PSEXEC executing autoit exe
AdmiralAlkex replied to Piotr_Hodl's topic in AutoIt General Help and Support
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. -
Embedded IE flickers when resized
AdmiralAlkex replied to AdmiralAlkex's topic in AutoIt GUI Help and Support
Try resizing the window. I would be very surprised if it doesn't happen for you. $WS_CLIPCHILDREN makes no difference. -
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
-
Sorry I have no idea. I haven't worked on anything SDL-related in a really long time.
-
AdmiralAlkex reacted to a post in a topic: how to capture some events from a javascript (custom) object?
-
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?
-
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 ...
- 25 replies
-
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.
- 25 replies
-
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"
- 25 replies
-
(Solved) Running WinRAR from AutoIt
AdmiralAlkex replied to melmitts707's topic in AutoIt General Help and Support
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. -
Traytips are supposed to be read, why work against the system?
-
[SOLVED] FileSetTime for Image! How ?
AdmiralAlkex replied to Trong's topic in AutoIt General Help and Support
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 -
AdmiralAlkex reacted to a post in a topic: Total privacy
-
AdmiralAlkex reacted to a post in a topic: Icon corruption when disabling a button
-
Icon corruption when disabling a button
AdmiralAlkex replied to TheDcoder's topic in AutoIt GUI Help and Support
You are too nice -
AdmiralAlkex reacted to a post in a topic: Total privacy
-
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*
-
AdmiralAlkex reacted to a post in a topic: Icon corruption when disabling a button
-
Icon corruption when disabling a button
AdmiralAlkex replied to TheDcoder's topic in AutoIt GUI Help and Support
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/ -
$FileGetSize doesn't refresh the file size
AdmiralAlkex replied to epo's topic in AutoIt General Help and Support
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)