Search found 17 matches

by LeSeb
22 Jun 2023, 07:19
Forum: Tips and Tricks (v1)
Topic: jeeswg's object classes tutorial
Replies: 13
Views: 20090

Re: jeeswg's object classes tutorial

Hello, Thank you for all this work, very usefull to understand ( or at least try to) many concepts involved in classes In this example : CHANGING AN OBJECT'S DEFAULT VALUE ... class MyThisClass { MyMethod() { MsgBox, % this.Length() MsgBox, % &this } } ;similar to MyMethod, but with an explicit obj ...
by LeSeb
26 Aug 2022, 04:29
Forum: Scripts and Functions (v1)
Topic: [function] FoxitInvoke() - a wm_command wrapper for FoxitReader V9.*
Replies: 13
Views: 3938

Re: [function] FoxitInvoke() - a wm_command wrapper for FoxitReader V9.*

Hello Frosti,

This little typo :

Code: Select all

FC[1] := := {	"SaveAs":
causes FC[1] commands to be inactive...
by LeSeb
23 Jun 2021, 09:06
Forum: Ask for Help (v2)
Topic: Gui submit seems not to submit...
Replies: 2
Views: 792

Re: Gui submit seems not to submit...

Thank you for this detailed answer and explanations.

Indeed, i didn't read the submit method doc...i made a stupid mistake here imagining that V2 would acts like V1 on this point.
I still have a lot to learn but learnt a lot with your answer, thank you very much !
by LeSeb
23 Jun 2021, 05:08
Forum: Ask for Help (v2)
Topic: Gui submit seems not to submit...
Replies: 2
Views: 792

Gui submit seems not to submit...

Hey, I'm a newbie with V2 but comfortable with V1 Question : Why the checkboxes from this GUI does not return 1 after i checked them ? Any idea ? Thanks to those who can help me with this. softwares := [{name: "ccleaner", url: "https www.ccleaner.com /ccleaner/download/standard", ticked: 0} ,{name: ...
by LeSeb
07 May 2021, 15:45
Forum: Ask for Help (v1)
Topic: script to open an image, depending on your active program problem
Replies: 4
Views: 288

Re: script to open an image, depending on your active program problem

Hello,

I just tested with notepad as the used process and it works :?
by LeSeb
10 Apr 2021, 14:42
Forum: Scripts and Functions (v1)
Topic: [function] FoxitInvoke() - a wm_command wrapper for FoxitReader V9.*
Replies: 13
Views: 3938

Re: [function] FoxitInvoke() - a wm_command wrapper for FoxitReader V9.*

Hey Frosti!

I tested your solution and it works perfectly!

Just a little sad that an object size is that limited, i didn't even know that.

Thank you for this function, this is going to help me and make my code a lot cleaner!
by LeSeb
09 Apr 2021, 14:32
Forum: Scripts and Functions (v1)
Topic: [function] FoxitInvoke() - a wm_command wrapper for FoxitReader V9.*
Replies: 13
Views: 3938

Re: [function] FoxitInvoke() - a wm_command wrapper for FoxitReader V9.*

Hey!

It seems that you cannot retrieve the "number" of a command if it was added in the FoxitCommands object in the second part (the concatenated part) and i cannot figure out why ?

Any idea ?

Anyone with the same problem ?
by LeSeb
01 Apr 2021, 06:38
Forum: Scripts and Functions (v1)
Topic: [function] FoxitInvoke() - a wm_command wrapper for FoxitReader V9.*
Replies: 13
Views: 3938

Re: [function] FoxitInvoke() - a wm_command wrapper for FoxitReader V9.*

Hey, I just give it a try and it seems to be a futur huge time saver for me as i'm an intensive foxit user. I created myself a librairy dedicated to foxit usage but it is far less convenient and effective that what you created. :superhappy: Thank you for the sharing! How did you find the commands ??...
by LeSeb
26 Jun 2020, 02:05
Forum: Scripts and Functions (v1)
Topic: WatchFolder() - updated on 2021-10-14
Replies: 152
Views: 88784

Re: WatchFolder() - updated on 2016-11-30

Thanks for this great function! :D

I'm using it here to squeeze pdf's (using coherent pdf) as soon as i automatically extract them from my mail software, which is Thunderbird.

Great function that i also have to study, i'm sure to learn a lot that way!
by LeSeb
30 Apr 2020, 09:06
Forum: Ask for Help (v1)
Topic: Replace the left mouse button with the right one. Topic is solved
Replies: 9
Views: 924

Re: Replace the left mouse button with the right one. Topic is solved

I have the same result here, i suppose a keyboard layout problem cause another hotkey like ^LButton works
by LeSeb
30 Apr 2020, 08:25
Forum: Ask for Help (v1)
Topic: expression in continuous section? Topic is solved
Replies: 4
Views: 545

Re: expression in continuous section? Topic is solved

What's the goal of LTrim here ?
by LeSeb
30 Apr 2020, 08:14
Forum: Tutorials (v1)
Topic: Classes in AHK, Basic tutorial.
Replies: 35
Views: 104363

Re: Classes in AHK, Basic tutorial.

I wanted to make sure it is understood that a class is not only a plan (or blueprint) for an Instance, but the class is an object itself. See Keyword Prototype instead of Class for more discussion. class MyClass { SayHello() { MsgBox Hello } } MyClass.SayHello() Hey, If you do want to use the class...
by LeSeb
28 Sep 2018, 17:52
Forum: Ask for Help (v1)
Topic: Object of functions in a librairy
Replies: 0
Views: 569

Object of functions in a librairy

Hello people, In one of my scripts i have many sub used to "move" the cursor to a certain area in an external software. I named those subs like this : - goReference - goThere - goSecondLine - etc.... Lately, i decided to convert those sub to functions and to put them all together in a Librairy. But ...
by LeSeb
06 Nov 2017, 16:05
Forum: Ask for Help (v1)
Topic: Getting local file URL by drag and drop
Replies: 5
Views: 2330

Re: Getting local file URL by drag and drop

Hello, I finally used the GuiDropFiles label that i previously didn't even know! #NoEnv #Persistent Gui Show, w640 h480 Return GuiDropFiles(GuiHwnd, FileArray, CtrlHwnd, X, Y) { for i, file in FileArray { FileCopy, %file%, \\the\folder\you\need } } Now i have to "stick" this gui to the right place o...
by LeSeb
26 Oct 2017, 17:06
Forum: Ask for Help (v1)
Topic: Getting local file URL by drag and drop
Replies: 5
Views: 2330

Re: Getting file URL by drag and drop

Hey and thank you for answering!!

Are you talking about local file ? (i badly used the word URL...but i'm talking about local file)
I will have a serious look at those scripts tomorrow at work. Here i'm on Linux and it has no autohotkey possibilities!

I will be back with progress, i'm sure!
by LeSeb
25 Oct 2017, 15:12
Forum: Ask for Help (v1)
Topic: Getting local file URL by drag and drop
Replies: 5
Views: 2330

Getting local file URL by drag and drop

Hey people! I using a software that allows me to scan documents and then link the resulting file to an "order" (let's say) The software also allows to choose a file to link to the order via an entry process. This is usefull for the documents that i'm receiving by mail. I would like to avoid this man...

Go to advanced search