Search found 9 matches

by djowdias97
28 Sep 2021, 17:46
Forum: Ask for Help (v1)
Topic: help me with text creator
Replies: 12
Views: 808

Re: help me with text creator

I managed to understand the code and it's serving me now, thanks for the help
by djowdias97
27 Sep 2021, 19:59
Forum: Ask for Help (v1)
Topic: help me with text creator
Replies: 12
Views: 808

Re: help me with text creator

That's a real example of the exact output? What was the input? What rules have determined your suffix numbers in your example? In other words, how is the suffix number determined? I simply want any keyword that is in the notepad that I load to be added to the numbers from 1 to 9999 in all the avail...
by djowdias97
27 Sep 2021, 19:24
Forum: Ask for Help (v1)
Topic: help me with text creator
Replies: 12
Views: 808

Re: help me with text creator

It looks like you should step back and provide the exact example that you want, in detail, including both the complete input text and the complete output text. Figure out exactly what you need before you post. The posted script provides output that matches that in your earlier post. what I need is ...
by djowdias97
27 Sep 2021, 16:07
Forum: Ask for Help (v1)
Topic: help me with text creator
Replies: 12
Views: 808

Re: help me with text creator

; file = %A_ScriptDir%\words.txt ; Change file path as needed FileSelectFile, file,,, Select a file, Text documents (*.txt) If (file = "") Return word := [], count := {}, out := "", new := A_ScriptDir "\new.txt", max := 9999 If !FileExist(file) { MsgBox, 48, Error, File not found.`n`n%file% Return ...
by djowdias97
27 Sep 2021, 15:49
Forum: Ask for Help (v1)
Topic: help me with text creator
Replies: 12
Views: 808

Re: help me with text creator

is there a way to choose which file it will take as keywords? I run the file you wrote me and it creates words, but I don't know where it's getting them,
but for the help I'll thank you, you're a beast!
by djowdias97
27 Sep 2021, 15:36
Forum: Ask for Help (v1)
Topic: help with shuffle text
Replies: 2
Views: 330

Re: help with shuffle text

mikeyww wrote:
27 Sep 2021, 15:03

Code: Select all

new := A_ScriptDir "\new.txt"
ControlGetText, text, Edit1, ahk_exe notepad.exe
; Sort, text, Random
Sort, text
FileRecycle, %new%
FileAppend, %text%, %new%
Run, "%new%"
thank you bro , nice work!!
by djowdias97
27 Sep 2021, 15:11
Forum: Ask for Help (v1)
Topic: help me with text creator
Replies: 12
Views: 808

Re: help me with text creator

the notepad I wanted to say , is to get the notepad keywords from some way , for example C:\Users\admin\Desktop\here.txt

the script works fine, would it be possible to put it in this form?

house1
house2
house3 <- until 9999
car1
car2
car3 <- until 9999
bus1
bus2
bus3 <- until 9999
by djowdias97
27 Sep 2021, 14:52
Forum: Ask for Help (v1)
Topic: help with shuffle text
Replies: 2
Views: 330

help with shuffle text

hi i need help, is it possible to make a script that reads the notepad
and shuffle it, for example, my notepad is like this

car
bus
house
bike

then after it reads and saves in a new text file it would be like this

bike
bus
car
house

is it possible to do that? Can someone help me?
by djowdias97
27 Sep 2021, 14:41
Forum: Ask for Help (v1)
Topic: help me with text creator
Replies: 12
Views: 808

help me with text creator

hi, i'm wanting to make a script for example, it takes a list of words from a notepad for example,

house
car
bus

and it adds numbers to the end of each one without repeating for example

house1
car1
bus1

from 1, 0001 to 9999

and saves it again in a new file, would that be possible?

thank you

Go to advanced search