Search found 94 matches

by enthused
22 Jan 2015, 09:16
Forum: Ask for Help (v1)
Topic: Is there a tool that letting us to manage scripts?
Replies: 8
Views: 2434

Re: Is there a tool that letting us to manage scripts?

lexikos wrote:I use AHKControl.
Does it work with AHK 64 bit? would be great if it does. ;)
by enthused
22 Jan 2015, 09:11
Forum: Other Programming Languages
Topic: Anyone interested in Delphi?
Replies: 5
Views: 5427

Re: Anyone interested in Delphi?

C++ has an incredible amount of libraries. I personally didn't like C++ syntax but many people with background in C feel very comfortable with C++. Between Delphi and C++, there are more posts on C++ for help and more support. If starting to learn, go with C++, as you will have more support and libr...
by enthused
21 Jan 2015, 22:22
Forum: Other Programming Languages
Topic: Anyone interested in Delphi?
Replies: 5
Views: 5427

Re: Anyone interested in Delphi?

delphi is great and has good syntax to easy learning. I use Lazarus as it works with free pascal and allows for development for Linux, Windows, and Apple as well as other OS.
by enthused
21 Jan 2015, 22:05
Forum: Scripts and Functions (v1)
Topic: InputBox Creator
Replies: 14
Views: 7191

Re: InputBox Creator

very nice, works as expected.
by enthused
21 Jan 2015, 21:55
Forum: Ask for Help (v1)
Topic: OAuth with Autohotkey
Replies: 3
Views: 2135

Re: OAuth with Autohotkey

You mean this file : /* ############################################################################################################### ## OAuth Function Library. Version 1.03 ## ############################################################################################################### Copyright...
by enthused
21 Jan 2015, 08:41
Forum: Ask for Help (v1)
Topic: __Delete()
Replies: 16
Views: 5200

Re: __Delete()

Please forgive me as I am a newbiw also but isn't #persistant make script persistant?
by enthused
18 Jan 2015, 20:50
Forum: Wish List
Topic: Autohotkey_L Script Protection Like Autoit 3.3.8.1+
Replies: 33
Views: 13353

Re: Autohotkey_L Script Protection Like Autoit 3.3.8.1+

sadly you are mistaken if you think Autoit "scripts are not decompileable" :D
Of course they are ;)

better see true compiled languages, rather than a scripting language, for security needs.
just MHO on this topic. Still would like to see other responses and if I'm mistaken in my statement above ;)
by enthused
17 Jan 2015, 23:05
Forum: Ask for Help (v1)
Topic: Gui multi tab browser help!
Replies: 9
Views: 2648

Re: Gui multi tab browser help!

@Soft
Soft wrote:hmm.. Maybe because we cant use same OnMessage(WM Keypress) twice?
Thank you for explaining.

I thought so too, but was trying to avoid modifying Wm_KeyPress as it is complicated for me :D
Thank you for showing the solution.
by enthused
17 Jan 2015, 20:32
Forum: Ask for Help (v1)
Topic: Downloading Content w/ Dynamically Generated Links
Replies: 8
Views: 3395

Re: Downloading Content w/ Dynamically Generated Links

here is a script that shows the URL for the comicstrip. Adapt it, and critique it also as I'm still learning. #NoEnv #SingleInstance Force #Persistent SetWorkingDir %A_ScriptDir% MainURL = http://www.gocomics.com/calvinandhobbes MainPage = Main.html MatchStr = im)class="strip" src="[^.].+?" ReplaceS...
by enthused
17 Jan 2015, 14:35
Forum: Ask for Help (v1)
Topic: Downloading Content w/ Dynamically Generated Links
Replies: 8
Views: 3395

Re: Downloading Content w/ Dynamically Generated Links

Can you parse the source and select from it based on tags?

Code: Select all

<img alt="Calvin and Hobbes" class="strip" src="http://assets.amuniversal.com/c94f154070e20132b90b005056a9545d" width="600">
by enthused
17 Jan 2015, 14:23
Forum: Ask for Help (v1)
Topic: Gui multi tab browser help!
Replies: 9
Views: 2648

Re: Gui multi tab browser help!

@Soft very nice :D Thank you for the update. I was trying to send the OnMessage() to another function to process WhichTab and then send to Wm_KeyPress or Wm_KeyPress2 but wasn't working on both tabs. Interestingly it was working on the first tab {backSpace} was clicked on like Tab1 or Tab2 but not b...
by enthused
17 Jan 2015, 11:17
Forum: Ask for Help (v1)
Topic: Gui multi tab browser help!
Replies: 9
Views: 2648

Re: Gui multi tab browser help!

OnMessage( 0x0100, "WM_KeyPress" ) ; WM_KEYDOWN OnMessage( 0x0101, "WM_KeyPress" ) ; WM_KEYUP ... OnMessage( 0x0100, "WM_KeyPress2" ) ; WM_KEYDOWN OnMessage( 0x0101, "WM_KeyPress2" ) ; WM_KEYUP Only the functions specified in the last processed OnMessage() block will be called. so how do you clear ...
by enthused
17 Jan 2015, 01:40
Forum: Ask for Help (v1)
Topic: Gui multi tab browser help!
Replies: 9
Views: 2648

Re: Gui multi tab browser help!

Soft wrote: problem is
If I press {backspace} key on Tab1 (ImDB)
it performs Browser_Back for Tab2 (Rotten Tomatoes) and vice versa
Actually, for me:

{backspace} key on Tab1 or Tab2 always work on Tab2.
It's like Tab1 doesn't get updated but Tab2 always does.
by enthused
16 Jan 2015, 01:17
Forum: Ask for Help (v1)
Topic: Assign a variable to a Text control in a Gui
Replies: 23
Views: 10601

Re: Assign a variable to a Text control in a Gui

:D enthused, thanks man, doesn't matter who ansewers as long as there is an answer :lol: GuiControlGet,TextVarName This is very nice. now to update the example: Gui,Add,Text,vTextVarName,this is text Gui,Add,Button,,OK Gui,Show Return ButtonOK: GuiControlGet,TextVarName MsgBox,4096,Test text var,%T...
by enthused
16 Jan 2015, 00:42
Forum: Ask for Help (v1)
Topic: Assign a variable to a Text control in a Gui
Replies: 23
Views: 10601

Re: Assign a variable to a Text control in a Gui

An unrelated question for MJs: In your posts, how do you get the font with the blue text in the white box with a border? sorry not MJs but if you hit the quote button on his post you will see: c in square brackets and then closing bracket for it. example: GuiControlGet can be displayed as such.
by enthused
15 Jan 2015, 23:19
Forum: Ask for Help (v1)
Topic: Assign a variable to a Text control in a Gui
Replies: 23
Views: 10601

Re: Assign a variable to a Text control in a Gui

This likely will not answer your question and I am interested in the answer too but this code works:

Code: Select all

Gui, Add, Text, vTextVarName, this is text
Gui, Add, Button,, OK
Gui, Show
Return

ButtonOK:
Gui,Submit
ControlGetText, textvar, %TextVarName%
MsgBox, 4096, Test text var, %TextVar%
ExitApp
by enthused
15 Jan 2015, 02:01
Forum: Scripts and Functions (v1)
Topic: [AutoHotkey Programming Tools] + Featured Scripts
Replies: 113
Views: 225690

Re: [AutoHotkey Programming Tools]

Chunjee wrote:all the endpoint downloads for Compile_AHK II seem to be broken; can we get it uploaded somewhere modern?
Did you mean this:
http://www.autohotkey.com/board/topic/2 ... ntry622493

Link worked for me but not sure that is file you were looking for.
by enthused
14 Jan 2015, 00:09
Forum: About This Community
Topic: New notifications feature
Replies: 43
Views: 21683

Re: New notifications feature

very nice feature and I have been using it daily
by enthused
13 Jan 2015, 22:45
Forum: Ask for Help (v1)
Topic: Windows speech recognition activation keys - how to
Replies: 21
Views: 7918

Re: Windows speech recognition activation keys - how to

on AHK related note :) you can use AutoScriptWriter program, that might give you an some idea about... I don't know, an idea about what might be going on, I don't use it that often, meaning never needed it, but it's there, give it a shot, from my simple tests, it might work hope that works, as it s...

Go to advanced search