Search found 44 matches
- 23 Apr 2018, 22:49
- Forum: Scripts and Functions (v1)
- Topic: Encrypt/decrypt Text with a hotkey
- Replies: 1
- Views: 5521
Encrypt/decrypt Text with a hotkey
EDITED to include sources from AHK community that helped me make this and to clarify use: I wanted to be able to instantly encrypt/encrypt text messages over company IM, slack, email, etc. WITHOUT the use of an intermediate GUI. I made adjustments to the original function's output methods for quick ...
- 21 Apr 2017, 20:30
- Forum: Ask for Help (v1)
- Topic: Gmail sending email
- Replies: 2
- Views: 935
Re: Gmail sending email
I haven't tried it, but it looks like you're using google's SMTP server. If you don't have your own, you should try to look up the conditions of using their SMTP service. Looks like you might need to specify your gmail address and password when using it. https://www.digitalocean.com/community/tutori...
- 21 Apr 2017, 20:10
- Forum: Ask for Help (v1)
- Topic: Simple Google Search Msgbox Script
- Replies: 2
- Views: 1295
- 10 Apr 2017, 07:09
- Forum: Ask for Help (v1)
- Topic: MenuBar with Class_ScrollGUI Topic is solved
- Replies: 3
- Views: 1676
Re: MenuBar with Class_ScrollGUI Topic is solved
well, that was pretty embarrassing.
Thanks for the response, yes, this works haha.
Thanks for the response, yes, this works haha.
- 09 Apr 2017, 22:04
- Forum: Ask for Help (v1)
- Topic: MenuBar with Class_ScrollGUI Topic is solved
- Replies: 3
- Views: 1676
MenuBar with Class_ScrollGUI Topic is solved
In another post I was desperately looking for a way to be able to scroll a GUI within a tab. I found a great post and a sample in a post by Tre4shunter here: https://autohotkey.com/boards/viewtopic.php?p=140972#p140972 I was able to use that working example to rebuild a previously static gui I had b...
- 08 Apr 2017, 08:38
- Forum: Ask for Help (v1)
- Topic: Refreshing ListView breaks scrolling Topic is solved
- Replies: 4
- Views: 1166
Re: Refreshing ListView breaks scrolling Topic is solved
Thanks again Just Me! The second option is what I need. I misunderstood you the first time and was trying to add a guicontrol do the ListView itself (unsuccessfully of course). I'm let me explain a little of the purpose of what I am building into part of a larger toolset. Basically, there's a helpde...
- 07 Apr 2017, 22:06
- Forum: Ask for Help (v1)
- Topic: Refreshing ListView breaks scrolling Topic is solved
- Replies: 4
- Views: 1166
Re: Refreshing ListView breaks scrolling Topic is solved
Thanks Just Me! I'm definitely doing it wrong. I can get it to work with a button, using LV_Delete() and LV_Add() in the loop that reads the file, but I can't seem to put the function of what the button does into an automation/loop. Below I've done what you suggested in part, by creating the whole g...
- 06 Apr 2017, 21:27
- Forum: Ask for Help (v1)
- Topic: Refreshing ListView breaks scrolling Topic is solved
- Replies: 4
- Views: 1166
Refreshing ListView breaks scrolling Topic is solved
I created a proof of concept gui for the intended use of our HelpDesk to manage and communicate amongst themselves priority/severity incidents. Eventually I want this to feed into another app (as read only) that our operations uses so they can see any priority/severity tickets the helpdesk is coordi...
- 30 Mar 2017, 20:35
- Forum: Ask for Help (v1)
- Topic: Scrolling gui within a Tab
- Replies: 3
- Views: 1784
Re: Scrolling gui within a Tab
Any confirmation if this just isn't possible, or is currently experimental?
- 30 Mar 2017, 20:29
- Forum: Ask for Help (v1)
- Topic: Loading a URL with % in it
- Replies: 3
- Views: 854
Re: Loading a URL with % in it
Use a String Replace to convert a copied URL with % in them, into an AHK readable URL:
This would turn the above example's URL: http://www.microsoft.com/examplewith%in%it
into this: http://www.microsoft.com/examplewith`%in`%it
Code: Select all
StringReplace, clipboard, clipboard, `%,```%,all
into this: http://www.microsoft.com/examplewith`%in`%it
- 27 Mar 2017, 22:09
- Forum: Ask for Help (v1)
- Topic: 7zip command line hide
- Replies: 13
- Views: 3616
Re: 7zip command line hide
can you try something like runwait, C:\Program Files\7-Zip\7z.exe a -tzip ZipFileName.zip \\location\ofstuff\tozip\, \\placeto\putzips\, Hide I use something with a GUI front end to archive P drive data for terminated users after inputting user name(s), then delete the original P drives after they'r...
- 27 Mar 2017, 21:52
- Forum: Ask for Help (v1)
- Topic: Scrolling gui within a Tab
- Replies: 3
- Views: 1784
Re: Scrolling gui within main gui window
my Apologies in advance for my own necro'd post. I took a break from this and revisited it several times over.. well, a while I'd say, while trying to get it to work but I was unable to either apply tabs to the example GUI or apply the Scrolling function to my current tabbed GUI. Here's a simplified...
- 02 Aug 2016, 10:52
- Forum: Ask for Help (v1)
- Topic: Removing user profiles from terminal servers
- Replies: 7
- Views: 3395
Re: Removing user profiles from terminal servers
I know this is an old post, but the other day I had a dire need to clean up a whole bunch of servers, I finally got a chance to look at this again and I did eventually get a working script, I thought I'd share. This modified this from the examples in the Help file. What it does: - msgbox to remind Y...
- 10 Nov 2015, 21:33
- Forum: Ask for Help (v1)
- Topic: Count calendar days by Hrs/day - ignore certain days
- Replies: 5
- Views: 2067
Re: Count calendar days by Hrs/day - ignore certain days
Many thanks Exaskryz! I posted some pictures of the app I made using your help with the calculations. This tab originally only housed a "Date Wheel" (digital version of these paper/cardboard date wheels with several layers that you adjust to figure stuff out with like: "20 weeks from now is which da...
- 06 Nov 2015, 10:35
- Forum: Ask for Help (v1)
- Topic: Count calendar days by Hrs/day - ignore certain days
- Replies: 5
- Views: 2067
Re: Count calendar days by Hrs/day - ignore certain days
This worked! Thanks
Also, i had to remove the % around the hours available variable.
presumably i'll need to do the same for the start date variable as well once I introduce that.
I'll edit my example above to the working one in case anyone else finds it useful. Thanks again!
Also, i had to remove the % around the hours available variable.
presumably i'll need to do the same for the start date variable as well once I introduce that.
I'll edit my example above to the working one in case anyone else finds it useful. Thanks again!
- 06 Nov 2015, 10:02
- Forum: Ask for Help (v1)
- Topic: Count calendar days by Hrs/day - ignore certain days
- Replies: 5
- Views: 2067
Re: Count calendar days by Hrs/day - ignore certain days
Thanks so much! The examples work great. and the ; comments are very much appreciated! i'm having an issue getting the variables into the script from the gui. a msgbox shows me that it's just not taking the variables, or that I am not understanding how to use an array (more likely). This is how I am...
- 05 Nov 2015, 16:37
- Forum: Ask for Help (v1)
- Topic: Count calendar days by Hrs/day - ignore certain days
- Replies: 5
- Views: 2067
Count calendar days by Hrs/day - ignore certain days
Goal: Subtract hours from a max hour amount, Count days on a calendar based on hours per day where there are hours consumed on a given day, while skipping over days where no hours are consumed, until all available hours from the original max hour amount are consumed. What is the date when their hou...
- 31 Jul 2015, 09:36
- Forum: Ask for Help (v1)
- Topic: Scrolling gui within a Tab
- Replies: 3
- Views: 1784
Scrolling gui within a Tab
EDIT: -Please see second post below March 28 https://autohotkey.com/boards/viewtopic.php?p=139603#p139603 deleted original post which only explained what i was looking for. I posted a working GUI as a demonstration (in second post in this thread) of where I would like to try to add the Scrolling GUI...
- 30 Jul 2015, 09:43
- Forum: Ask for Help (v1)
- Topic: Removing user profiles from terminal servers
- Replies: 7
- Views: 3395
Re: Removing user profiles from terminal servers
Followup Question: Am I missing an option or using the wrong option for removing the directories, or is it expected to take this amount of time to perform this action? The deletion of the directory seems to take an excessively long time (500 to 700 seconds) during the removal of the user files from...
- 29 Jul 2015, 21:40
- Forum: Ask for Help (v1)
- Topic: Removing user profiles from terminal servers
- Replies: 7
- Views: 3395
Re: Removing user profiles from terminal servers
Thanks again. I didn't know how to do it this way, only how to output to cmd to txt file, then parse that file for the info needed. Happy not to have to write to a file just for that. I am probably doing many things inefficiently, but always excited to try it a new way!