Search found 23 matches

by Draygoes
09 Jul 2022, 12:16
Forum: Off-topic Discussion
Topic: I'm looking for a simple way to develop mobile apps?
Replies: 4
Views: 1984

Re: I'm looking for a simple way to develop mobile apps?

BoBo wrote:
05 Apr 2022, 14:52
@Draygoes - you could have a look at http://www.Automagic4Android.com (for scripting on Android, even if it’s not exactly what you’re looking for) :)
Hey thanks! That's awesome! I was hoping something like this existed, and I had thought about looking for it before.
Scripting on Android, cool!
by Draygoes
09 Jul 2022, 12:00
Forum: Off-topic Discussion
Topic: I'm looking for the best Python IDE for beginners. I need it to have a good interface editor...
Replies: 1
Views: 1478

I'm looking for the best Python IDE for beginners. I need it to have a good interface editor...

Hi all! I'm new to python, and I would love to get started with it as quickly as possible. As part of that quest, I'm looking for the best IDE with the best Interface editor. If you have an IDE you would recommend for beginners, despite lack of interface builder, would you let me know what that is a...
by Draygoes
04 Apr 2022, 04:12
Forum: Off-topic Discussion
Topic: I'm looking for a simple way to develop mobile apps?
Replies: 4
Views: 1984

Re: I'm looking for a simple way to develop mobile apps?

I'm for sure looking into that, but do you have anything else that you use regularly? Preferabley with a complete IDE but with the simplicity of AHK?
by Draygoes
29 Mar 2022, 06:30
Forum: Off-topic Discussion
Topic: I'm looking for a simple way to develop mobile apps?
Replies: 4
Views: 1984

I'm looking for a simple way to develop mobile apps?

Hey all! It's been a while huh? Yeah, I'm looking for a simple way to develop Android Apps. Has anyone ever used Autoplay Media Studio? You know, a way that feels more like scripting? And I really need it to have an interface builder. But I'm really hoping for this to be a desktop application. Thank...
by Draygoes
05 Jul 2021, 08:16
Forum: Forum Issues
Topic: "Your post has been submitted but is awaiting moderator approval" Is this perminate? Topic is solved
Replies: 2
Views: 3143

Re: "Your post has been submitted but is awaiting moderator approval" Is this perminate? Topic is solved

gregster wrote:
05 Jul 2021, 07:36
Draygoes wrote:
05 Jul 2021, 07:17
do I get the ability to earn normal posting via post/comment count?
Yes, soon ;)
Awesome. Thanks for the quick reply. :wave:
by Draygoes
05 Jul 2021, 07:17
Forum: Forum Issues
Topic: "Your post has been submitted but is awaiting moderator approval" Is this perminate? Topic is solved
Replies: 2
Views: 3143

"Your post has been submitted but is awaiting moderator approval" Is this perminate? Topic is solved

Hi! Just wondering if the moderator approval thing is always in play, or do I get the ability to earn normal posting via post/comment count?
Does that only affect some boards or all? (EDIT: Submitting this post answered my second question.)

Thanks for your time. :)
by Draygoes
04 Jul 2021, 10:47
Forum: Ask for Help (v1)
Topic: What is the best way to communicate with my program over the internet? Topic is solved
Replies: 2
Views: 403

What is the best way to communicate with my program over the internet? Topic is solved

Hi all! I would love to be able to send my program strings of text or any sort of signal to update or execute a function. It's for remote IT stuff for my own computer. Just for times when full remote control is more than I need. I wouldn't even begin to know where to start, so I don't have any code ...
by Draygoes
05 Apr 2018, 23:36
Forum: Off-topic Discussion
Topic: IP Graffiti
Replies: 9
Views: 3838

Re: IP Graffiti

What a fantastic idea! Has it gotten much traffic yet?
by Draygoes
05 Apr 2018, 20:55
Forum: General Discussion
Topic: A Github organisation for ahkscript
Replies: 247
Views: 190210

Re: A Github organisation for ahkscript

Room for another?
(Same name as here.)
by Draygoes
05 Apr 2018, 18:52
Forum: Ask for Help (v1)
Topic: Scrape my followers list... Topic is solved
Replies: 14
Views: 3051

Re: Scrape my followers list... Topic is solved

So this is strange. I uncommented the msgbox and it works perfectly. Each to a new line. I remove the message box completely, and it works great. It screwed up with the commented message box in there. I can even repeat by putting the commented out message box back. Just find that strange. That works...
by Draygoes
05 Apr 2018, 18:37
Forum: Ask for Help (v1)
Topic: Scrape my followers list... Topic is solved
Replies: 14
Views: 3051

Re: Scrape my followers list... Topic is solved

Ok, I had made a mistake with the append code. I forgot to copy the list. It works great!
Is there any way to have each name in a new line?

Thanks all! I mean that!
by Draygoes
05 Apr 2018, 18:32
Forum: Ask for Help (v1)
Topic: Scrape my followers list... Topic is solved
Replies: 14
Views: 3051

Re: Scrape my followers list... Topic is solved

But the code with the message box worked perfectly!
by Draygoes
05 Apr 2018, 18:31
Forum: Ask for Help (v1)
Topic: Scrape my followers list... Topic is solved
Replies: 14
Views: 3051

Re: Scrape my followers list... Topic is solved

neverlevel wrote:just curious ...if this works.

Code: Select all

X:=1
while (X := RegExMatch(Clipboard, "(@\w*)", M, X+StrLen(M)))
   {
   ; MsgBox % M1
	FileAppend, %M1%`n, Test.txt
	}
I just tried it. It placed a single @ char in the text file.
by Draygoes
05 Apr 2018, 08:12
Forum: Ask for Help (v1)
Topic: Scrape my followers list... Topic is solved
Replies: 14
Views: 3051

Re: Scrape my followers list... Topic is solved

I have spent a number of hours learning as much as I can about AHK. I must admit, this is unlike any language I have ever used before. I am beginning to wonder if what I want to do is even possible in this language. I know that I could do this if I knew anything about writing browser addons, but sad...
by Draygoes
04 Apr 2018, 23:53
Forum: Ask for Help (v1)
Topic: Scrape my followers list... Topic is solved
Replies: 14
Views: 3051

Re: Scrape my followers list... Topic is solved

trey ton wrote:Twitter lets you download a list of your followers, why build a scraper?
Because I only want a list of the @names. Nothing more. Right now, that means a LOT of copy/paste activity.
by Draygoes
04 Apr 2018, 23:41
Forum: Ask for Help (v1)
Topic: Scrape my followers list... Topic is solved
Replies: 14
Views: 3051

Re: Scrape my followers list... Topic is solved

I do have an idea as to how this could be accomplished logically, but still not sure how I could implement it in AHK. Use browser find to highlight something starting with @. Detect and highlight all characters in the word. Copy to clipboard. Output to text. Thats the idea written in logic form. Tho...
by Draygoes
04 Apr 2018, 23:09
Forum: Scripts and Functions (v1)
Topic: InstantHotstring
Replies: 12
Views: 4356

Re: InstantHotstring

Ah, sorry. :oops:
Thanks to the creators of the script!
by Draygoes
04 Apr 2018, 22:52
Forum: Scripts and Functions (v1)
Topic: InstantHotstring
Replies: 12
Views: 4356

Re: InstantHotstring

Thanks for your response. The main thing that I wanted to do I have solved, but it probably would not hurt for others using the software if it appends all commands to the end of its own file, or even a new on that can be included at will. Seems like the next logical step to me. Anyway, I digress. Gr...
by Draygoes
04 Apr 2018, 22:46
Forum: Ask for Help (v1)
Topic: Scrape my followers list... Topic is solved
Replies: 14
Views: 3051

Scrape my followers list... Topic is solved

Hi all. I must confess that I would not even know where to begin on this, so any tips are welcome. The idea is simple. I want to go down my list of followers on twitter, then copy each of their @Names to text file, one per line. I attempted to do this in other languages and found it impossible. Any ...

Go to advanced search