
Garrik
Members-
Posts
18 -
Joined
-
Last visited
Everything posted by Garrik
-
In my defense it could worked better if I read a little bit more and if I see an example.
-
Will do! thanks a lot! I didnt wanted to be a pain in the *ss, I appreciate all of your help!!
-
thanks for your examples
-
Is not that, like I said Im not that expierenced, Im trying to learn by examples applied in what I do, Im sorry if I bother all of you Im just trying yo learn, and as I sayed I did that script by my self. Now you just said that "send" is not the best option... I'll see what can I do to change it. And again thanks for helping!
-
thanks for answering me, what this script do is coping some words from a notepad, but as you can see always copy 4 times I need it to randomly do it between 1 and 4 times dim $i=1While $i<=4Sleep(3000)Send("{LWINDOWN}r{LWINUP}")Sleep(3000)Send("C:\Users\123\Catalogos\tags.txt{ENTER}")Sleep(3000)WinActivate("tags: Bloc de notas","")Sleep(3000)Send("{SHIFTDOWN}{END}{SHIFTUP}{CTRLDOWN}c{CTRLUP}{DEL}{DEL}")Sleep(3000)Send("{CTRLDOWN}g{CTRLUP}{ALTDOWN}{F4}{ALTUP}")Sleep(3000)Send("{CTRLDOWN}v{CTRLUP}{SPACE}")$i=$i+1WEnd
-
Well I'm having a hard time writing down my first script I just wanted some help here, I've seen that you need to to type the script and in base of that you ask your questions and you write the possible answers... I don't know how to do it Can someone please help me with a written example?? If this is to much to ask?
-
yes I did thats why I'm asking if is possible to do a loop with random or how to do it... I'm not that experienced doing scripts Can you please help me?
-
Im really sorry but I dont get it 😌, can you please write it down? As you can see Im not that good at writing scripts.... Sorry for this
-
yo mean like this? but i still need it to be a loop when it gets more than 1 like in 2,3,4 Random(1, 4) Sleep(3000)Send("{LWINDOWN}r{LWINUP}")Sleep(3000)Send("C:\Users\123\Catalogos\tags.txt{ENTER}")Sleep(3000)WinActivate("tags: Bloc de notas","")Sleep(3000)Send("{SHIFTDOWN}{END}{SHIFTUP}{CTRLDOWN}c{CTRLUP}{DEL}{DEL}")Sleep(3000)Send("{CTRLDOWN}g{CTRLUP}{ALTDOWN}{F4}{ALTUP}")Sleep(3000)Send("{CTRLDOWN}v{CTRLUP}{SPACE}") Next
-
Im sorry I dont know what you mean with Replace the upper limit of your While with the Random function.?????
-
Hi guys! I need some help here, is there a way to use Random with While? I need this script to run in between 1 and 4 times but I dont know how to do it, can you please help me? dim $i=1 While $i<=4 Sleep(3000) Send("{LWINDOWN}r{LWINUP}") Sleep(3000) Send("C:\Users\123\Catalogos\tags.txt{ENTER}") Sleep(3000) WinActivate("tags: Bloc de notas","") Sleep(3000) Send("{SHIFTDOWN}{END}{SHIFTUP}{CTRLDOWN}c{CTRLUP}{DEL}{DEL}") Sleep(3000) Send("{CTRLDOWN}g{CTRLUP}{ALTDOWN}{F4}{ALTUP}") Sleep(3000) Send("{CTRLDOWN}v{CTRLUP}{SPACE}") $i=$i+1 WEnd
-
HOW TO USE A UNIVERSAL COMMAND - (Moved)
Garrik replied to Garrik's topic in AutoIt General Help and Support
Thanks!! all of you for your answers!! Im not able to change the language of all different OS, so what I did is I close the notepad with Ctrl+F4 and then I send Enter in order to save it, this way it doesnt matter which language it is and I dont need to use either ctrl g or ctrl s. I dont know if it is a bad solution, but at least now I can send my .exe and I know now that it can work in any language so it seems it is good. -
HOW TO USE A UNIVERSAL COMMAND - (Moved)
Garrik replied to Garrik's topic in AutoIt General Help and Support
I do understand but in that cas it would change the language of the OS??? Thats a little bit extreame?, dont you think, becuase of the language barriers?? -
HOW TO USE A UNIVERSAL COMMAND - (Moved)
Garrik replied to Garrik's topic in AutoIt General Help and Support
You are right! thats in inglish but in spanish it is ctrl U for a new "window" or document for example in office, so in every lenguage it is a different letter except for ctrl C and ctrl V that thats copy and past in both languages -
HOW TO USE A UNIVERSAL COMMAND - (Moved)
Garrik replied to Garrik's topic in AutoIt General Help and Support
Plane and simple once the autoit finishes working with notepad I use Send("{CTRLDOWN}g{CTRLUP}"), but the issue is that if I send the .exe to another computer that Windows is in English it wont work becuase ctrl G doesnt do anything -
HOW TO USE A UNIVERSAL COMMAND - (Moved)
Garrik replied to Garrik's topic in AutoIt General Help and Support
Thanks my bad -
HOW TO USE A UNIVERSAL COMMAND - (Moved)
Garrik replied to Garrik's topic in AutoIt General Help and Support
Thanks a lot for your quick answers!! Like I said it is already working and I´m saving a notepad, so every time a change is made I save ir sending a ctrl g, but I have another friend that would like to use my .exe, but his Windows is in english so the ctrl g doesnt work at all, (I dont know if it is correct to say that it doesnt exist that command or shortcut) so thats why Im asking an easy way to save like for example alt F4 in english and spanish it closes a window, maybe "ctrl !#" saves in all languages -
Hi everyone! I just have a quick question I just did my first .exe and boy!! It was really complicated!!! Im not sure how but it works haha, in one of the commands I use ctrl+g that stands for ctrl+s to save a file in spanish. So my question is, if my .exe runs in a english speaking computer, will it work? if not how can I use like a universal command in order to save or use like an american keyboard for this "\" like I said it does works is not that is not working Im just asking if there is a "universal" way that in every language we can send ctrl s to save a file eventhough is not in an english windows or office etc etc. Thanks in advance for your answer!