ATTENTION: You are viewing a page formatted for mobile devices; to view the full web page, click HERE.

DonationCoder.com Software > Finished Programs

DONE: Order list of phrases or lines in a text file

(1/2) > >>

Contro:
Order list of phrases or lines in a text file..... in aleatory order

 :-*

I am using PSPAD that gives the possibility to order lines alphabetically or reverse alphabetically, but i wish orden in aleatory order

Is it this possible ?

Best Regards
 :P

skwire:
Contro, as a friendly tip, in English, we use the word "random" instead of aleatory.

http://textmechanic.com/Sort-Text-Lines.html

Contro:
Contro, as a friendly tip, in English, we use the word "random" instead of aleatory.

http://textmechanic.com/Sort-Text-Lines.html
-skwire (January 12, 2014, 11:00 AM)
--- End quote ---

Oído cocina (Understood). It's a good tool textmechanic.com like random.org,
But I would like a desktop software.

Is it possible.
I am scanning the web and find nothing now for text files in psdpd environments (in excel is possible...)

Best Regards

Contro:
I begin scanning with Random combinations
 :-*

skwire:
Here's a simple AHK script to do what you want:


--- Code: Autohotkey ---Gui, Margin, 5, 5Gui, Add, Edit  , xm  ym  w400 h400 vedtTextGui, Add, Button, xm  y+5 w200 h25  vbtnClipboard gOnClick, &Copy to clipboardGui, Add, Button, x+0 yp  w200 h25  vbtnRandomize gOnClick, &RandomizeGui, ShowReturn ; End of auto-execute section.  GuiClose:GuiEscape:{    ExitApp}Return  OnClick:{    Gui, Submit, NoHide    If ( A_GuiControl = "btnRandomize" )    {        Sort, edtText, Random        GuiControl, Text, edtText, % edtText    }    Else If ( A_GuiControl = "btnClipboard" )    {        Clipboard := edtText    }}Return

Navigation

[0] Message Index

[#] Next page

Go to full version