AutoHotkey Pulover's Macro Creator: Automate your coding by Automating it. Macro Recorder

Поделиться
HTML-код
  • Опубликовано: 27 ноя 2024
  • Pulover's Macro Creator lets you record what your doing on your computer and have it turned into AHK code. Its that easy. Don't know all the AHK yet this will help you learn.
    ahk to chrome = • AutoHotkey to Automate...
    Make sure to check out part 2 now out = • AutoHotkey Pulover's M...
    If you find my video helpful help me to upgrade my videos with a small donation. TY so much for any help! = paypal.me/tabnationYT

Комментарии • 110

  • @TABNationAutomation
    @TABNationAutomation  2 года назад +4

    Make sure to check out part 2 now out = ruclips.net/video/7AzGdEEwlt8/видео.html

  • @andyf80
    @andyf80 2 года назад +5

    Outstanding! Thank you so much for your very clear and beginner-focused tutorial here.
    This was exactly what I was needing to get the ball rolling after years away from AHK.
    I appreciate it very much.

  • @clearmanlawyers753
    @clearmanlawyers753 3 года назад +2

    I keep coming back to your videos as I learn more. Double thumbs up for giving back so much.

    • @TABNationAutomation
      @TABNationAutomation  3 года назад

      been doing this for a bit and still learn something new here and there

  • @zenitzenit9053
    @zenitzenit9053 2 года назад +3

    Hint:
    If you try to automate Games, Account creations and all that, you will need to record mouse movements in many cases.
    Otherwise google, activision, etc. will notice you as 'not human'.

  • @krezii
    @krezii 3 года назад +3

    this is great! i didn't know such program existed. It's very useful

  • @christiandeguzman4783
    @christiandeguzman4783 Год назад

    I was using macro recorder and then I found this gem! Thank you

  • @jakeliujakeliu
    @jakeliujakeliu 2 года назад +3

    Great video looks like it a very useful app. Have a question have you covered in any video to do a loop program can call other group of code or function won’t break the loop?

  • @deneimaidekaokto9247
    @deneimaidekaokto9247 2 года назад +1

    Hey, nice video, i want to ask, if i use the macro on desktop2 and switch back to desktop1, they also effect desktop1 or only desktop2?

  • @AtindriyaDas
    @AtindriyaDas Год назад

    Thanks very much Tom!

  • @NitaFunnyVideo
    @NitaFunnyVideo 3 года назад +3

    Very good
    I'm using pulover for 4 years and it had saved me thousands of hours if u know how to use it

  • @michaelp8376
    @michaelp8376 Год назад

    Nice! Thank you.

  • @markthornton3007
    @markthornton3007 2 года назад

    Good Job- well done

  • @L1nkblade
    @L1nkblade Год назад

    Thanks for the video! Very helpful for me as a beginner. I want to automate a grindy achievement of a racing game. Is it possible to do so? The outcome of the to be repeated 2 minute race is dependant on high precision. Is the macro played exactly the same every time or a bit different for every loop? Is it possible to record controller input? Or to convert the controller input to keyboard input?

    • @TABNationAutomation
      @TABNationAutomation  Год назад +1

      maybe games are hard with ahk and the macro record could record you playing then repeat what you did. I cant tell you the answer as you have the game and know about it. just have to try. and all code will always work the same each time

    • @L1nkblade
      @L1nkblade Год назад

      @@TABNationAutomation the code will work the same each time, but I fear that maybe the game is bending time as it runs faster or slower depending on refresh rate and gpu performance and due the macro getting out of sync. You're probably right trying is better than studying. Thanks for the fast reply!

    • @TABNationAutomation
      @TABNationAutomation  Год назад

      @@L1nkblade thats your pc then nothing with ahk

    • @L1nkblade
      @L1nkblade Год назад

      @@TABNationAutomation ok, the sync is to be tried. But can ahk record controller input?

    • @L1nkblade
      @L1nkblade Год назад

      @@TABNationAutomation I just tried it. It totally not works. It got out of sync in the first curve of the track and then the car just drove repeatedly into walls. Is there another way to automate say 3 laps on a simple round raceway in a racing game? Or is there any settings of Pulover's Macro Recorder I can try?

  • @justforyou9271
    @justforyou9271 3 года назад

    Many Features 👍

  • @TX2015
    @TX2015 10 месяцев назад

    It's a shame this program records the inputs and they are sent increasingly later. As in, I'm trying to automate a precision platformer where you have to beat the level many times in a row for a small condecoration (already got this condecoration by myself, I'm trying to make a macro for testing).
    I record the macro for the level, but when I start it, making sure to do it from the level itself so the loading screen in the beginning couldn't desync it, the movements get sent increasingly later, eventually killing me. Is there any way to correct this?

    • @TABNationAutomation
      @TABNationAutomation  10 месяцев назад

      you would need to time the code yourself. macro recorders are not by a long shot great vs coding your self

    • @TX2015
      @TX2015 10 месяцев назад

      @@TABNationAutomation There are macro recorders that are as good as coding yourself. Sadly, every macro recorder I've used so far, Pulover's included, have the same issue. The inputs get increasingly later and later until they're not useful and get me killed. Tested it in three games, it killed me in all three. It's just not useful

  • @heat9open404
    @heat9open404 3 года назад +1

    Love this

  • @thepragmatic6383
    @thepragmatic6383 3 года назад +2

    Well done for this tutorial. Perfect for beginners like me.
    I was wondering if this program includes a tool to provide mouse coordinates, when writing a script manually?
    Like (Window Spy) in AutoHotkey, or like (Active Window Info) in SciTE4AutoHotkey.

    • @TABNationAutomation
      @TABNationAutomation  3 года назад

      I dont think so but then again i never had a need to check out if it did lol. Let me know if you find it does

    • @thepragmatic6383
      @thepragmatic6383 3 года назад +1

      @@TABNationAutomation
      I solved the problem by creating a mini script which displays the coordinates of the mouse in a "Message Box".
      Here are the lines of the script, launched from the hotkey (CTRL-7). The hotkey can be changed as needed.
      ^ 7 :: ; press CTRL / 7
      MouseGetPos, x, y ; "Mouse coordinate Position"
      MsgBox, x =% x% - y =% y%
      return

    • @TABNationAutomation
      @TABNationAutomation  3 года назад +1

      @@thepragmatic6383 Nice This is the way I have always done it. To bad its not built in tho

    • @ceptember.
      @ceptember. 2 года назад

      @@thepragmatic6383 thank you

  • @echobeatbox
    @echobeatbox 3 года назад

    I like to know if I can upload some files, and loop the screen what I did, but every time it upload the file I wish to chang the file name, for example of , the first file , I type in 1234, and loop it. next time it goes 1235 , 1236 , .... and goes to 5000 . is this a posible way to do it? thanks

  • @waltergrandfield9583
    @waltergrandfield9583 Год назад

    Is there a comprehensive book on programming with AHKv2?

    • @TABNationAutomation
      @TABNationAutomation  Год назад

      not that I know of. There is for v1 but I don't know how old they are

  • @RobertKrzysikMovie
    @RobertKrzysikMovie 2 года назад

    I am not able to install. I am getting "Invalid progress: 7718 of -1" during software setup.

  • @Rob-777
    @Rob-777 3 года назад +1

    hello, for me it doenst record when I type letters but it recognizes the dot ... And the worse, even with other programs !

  • @RobinDickhardt
    @RobinDickhardt Год назад

    Is there any possibility to use an aouto hotkeys without having the macro recorder running?

  • @wedoprods6088
    @wedoprods6088 3 года назад

    Hello so i have been wondering is it possible too get macro creator too do math? like 1+1 = 2 on its own?

  • @spireos255
    @spireos255 2 месяца назад +1

    Hi, im about to automate a macro for a roblox game, which is quite grindy and requires a certain amount of inputs every few minutes. Lets say I record all the correct inputs. What do I do so that it will repeat the inputs again every 10 minutes? Hopefully working all night for hours.

    • @TABNationAutomation
      @TABNationAutomation  2 месяца назад

      add a settimer or loop command

    • @spireos255
      @spireos255 2 месяца назад

      @@TABNationAutomation alright thanks. Is there a way to create a toggle for my macro? So whenever i want to stop it i just click a certain key? I haven’t touched anything like this before so im just wondering. Thanks for the reply

    • @TABNationAutomation
      @TABNationAutomation  2 месяца назад

      @@spireos255 in the video around the 7 min mark i talk about hotkey for start, same thing with the stop thats under it

    • @spireos255
      @spireos255 2 месяца назад

      @@TABNationAutomationoh i see. Thanks alot man.

    • @spireos255
      @spireos255 2 месяца назад

      @@TABNationAutomation i will need AutoHotkey for this right?

  • @player1937
    @player1937 2 года назад

    Id like to know if it can detect color every 10 seconds auto click the color?

  • @systemoperator7792
    @systemoperator7792 2 года назад

    How do i send something like "Control + F" or "Control + Alt" ?? I can send individual controls but havent figured out how to send something like in Excel Find or Excel Goto (Cotrol+G), etc.

    • @TABNationAutomation
      @TABNationAutomation  2 года назад

      I would learn the basics to coding. www.autohotkey.com/docs/commands/Send.htm look at keys

    • @systemoperator7792
      @systemoperator7792 2 года назад

      @@TABNationAutomation I ended up downgrading pullover macro to an earlier version which has the ability to send multiple keystrokes. There is a field in the bottom of pullover macro where it automatically puts in the code.

    • @TABNationAutomation
      @TABNationAutomation  2 года назад

      @@systemoperator7792 all versions can send multi key strokes

    • @systemoperator7792
      @systemoperator7792 2 года назад

      @@TABNationAutomation I'm sure all versions do send multiple keystrokes, I just couldn't figure out what button did it with the latest version, without having to write code for it. Without having to spend more time figuring it out and being so convoluted, it was easier to work with a prior version of pullover macro creator.

  • @shubhambanerjee4636
    @shubhambanerjee4636 2 года назад

    Suppose I have to check after scrolling 500 images individually. Click a button to open image, Open image, move to checkbox, choose correct, then again scroll to next image button. How will I run my loop repeatedly. Didn't work. Can anyone help

  • @ardwych4881
    @ardwych4881 3 года назад

    Wow, so much missed for starters.
    Why after recording my first macros can I not close it? Ctrl W, Close, ... nothing closes it.
    'Look over here...' in the right panel, you say, '..press Refresh'. But I have no right panel. What it that right side panel called? Where do I get one? Why don't I have one? How do I turn one on and off?
    What are the rows of icons/controls? Are they grouped functionally?
    Why does PMC crash repeatedly? Latest Win10 updates. Early Feb'21.
    So much, so little.
    v5.3.9

    • @psophos2
      @psophos2 2 года назад +1

      F9 to start then F9 to stop

    • @Hmmmge
      @Hmmmge Год назад

      Mine was missing too, its called Preveiw script (ctrl+p)

  • @anbu5667
    @anbu5667 2 года назад

    im trying to use this to auto run trough a game but when i convert to ahk my code doesnt run. i copyd it into another code where i have a mocro to hold down a specific key

    • @TABNationAutomation
      @TABNationAutomation  2 года назад

      convert to ahk? this is ahk. watch the most ask gaming questions video

  • @guirlz
    @guirlz 2 года назад

    Any easy way to do a keystroke do one thing with 1 click but another when pressed twice?

  • @Bread-kr4co
    @Bread-kr4co 2 года назад

    im tryna find a macro that will click buttons that show up on my screen (for example if a game tells me to type a letter in under 5 seconds then the macro will do it for me)

  • @maui-maui4011
    @maui-maui4011 Год назад

    There is a portable version ?

  • @hamaali2429
    @hamaali2429 3 года назад +1

    Could anyone please tell me how to make a script that is happening on a specific screen so that I can do something else on my main screen while the script/macro is going. I would really appreciate this :)

    • @TABNationAutomation
      @TABNationAutomation  3 года назад +2

      look in to control send. Doesn't also work to well tho

    • @hamaali2429
      @hamaali2429 3 года назад

      @@TABNationAutomation Allright thx

  • @ohdoms2776
    @ohdoms2776 3 года назад

    how do i make it hold a letter say i hold q for 1 second but when i record and play it never held q.

    • @TABNationAutomation
      @TABNationAutomation  3 года назад

      change the send q to
      send {q down}
      sleep 1000
      send {q up}

    • @ohdoms2776
      @ohdoms2776 3 года назад

      @@TABNationAutomation ok thank you

  • @nominalnostalgia1347
    @nominalnostalgia1347 2 года назад

    Ok my main question is how to I get this to run as an executable. I have a very simple (but not scriptable) server setup. (Its jank dont ask lol) I really just want the thing to autorun my clicks and types every couple of hours to keep itself alive because it periodically needs to be restarted.
    Like the whole pc... Because jank

    • @nominalnostalgia1347
      @nominalnostalgia1347 2 года назад

      I think export to AHK might work. Trying that now

    • @nominalnostalgia1347
      @nominalnostalgia1347 2 года назад

      Do I need an AHK runner or can I route it though pulovers

    • @nominalnostalgia1347
      @nominalnostalgia1347 2 года назад

      Ok so buddy I love ya but you need an into video taking about how this program pairs with AHK. (Seperate thing)

  • @filekt1584
    @filekt1584 3 года назад

    Would be very useful to add timestamps

  • @laigrimmie6610
    @laigrimmie6610 3 года назад

    Hi sir can u help me how to make ahk ghost typing and mouse... I want auto hotkey active multiple window...

    • @TABNationAutomation
      @TABNationAutomation  3 года назад

      just use the recorder and do what you want then you can play it. it will copy anything actions you preform

  • @letsplay_skill911
    @letsplay_skill911 3 года назад

    hi can you help with the ahk code the bot can't find the screenshot

    • @TABNationAutomation
      @TABNationAutomation  3 года назад

      what code?

    • @letsplay_skill911
      @letsplay_skill911 3 года назад

      @@TABNationAutomation the ahk code for the gta5 rp game turns out that the bot does not find the ring here is an example of a working bot ruclips.net/video/hpHgl_IND9k/видео.html

  • @區光
    @區光 2 года назад

    I don’t know if I will get virus from this or not.

    • @TABNationAutomation
      @TABNationAutomation  2 года назад

      how would you get a virus?

    • @區光
      @區光 2 года назад +1

      @@TABNationAutomation because VirusTotal said it could be accompanied with a wanted program named Lavasoft

  • @Roska-bj1cr
    @Roska-bj1cr Год назад

    Do you know how to make Pulover macro creator point to the last empty cell in Excel A1?I searched all over the internet and tested different methods, but unfortunately, either an error pops up, or it doesn't work properly ;/

  • @krampus8362
    @krampus8362 3 года назад

    Do you know what to do when sometimes the macro is skipping an action? I’ve tried to put delays and pauses everywhere to make sure it isn’t playing too fast, but no matter what it still skips an action once every loop or every couple loops. Like for example it will skip an action that says to click at a coordinate, I have the macro pause, move to the coordinate, pause, click the coordinate, each with 1 second of delay, and yet somehow it will skip 1 part of the macro, like it wont click, or it wont move to the coordinate specified. By the way I’m making the macro manually, I know how to make the macro smooth and work for the most part, just cant get passed this one thing.

    • @TABNationAutomation
      @TABNationAutomation  3 года назад

      is there a winactive in your code? or using anytype of send alt ctrl or shift in there?

    • @user-vj6tb1sp7m
      @user-vj6tb1sp7m 3 года назад

      ​@@TABNationAutomation No alts/ctrls/shifts. I put a winactive in the beginning of the macro to make it open the window that the macro being used on. I also changed coordmode from window to screen and it still skips clicks/moves.
      ACtually I figured it out, I'll reply how below! :)

    • @user-vj6tb1sp7m
      @user-vj6tb1sp7m 3 года назад +1

      @@TABNationAutomation Haha It was mouse input that was throwing my macro off. It seems even the smallest amount of input was enough to mess the macro up, like my leg hitting my desk and slightly moving my mouse. The first like 6 seconds of the macro has no mouse input, so I just hit start on the macro, turn my mouse off quickly, then let it run and it's working. That was driving me crazy, it only takes the smallest, most simple mistake to mess everything up haha. Thanks for replying TAB! Also you messaged my on Reddit the other day, which is the reason I started messing with Pulover's in the first place, thanks a lot!

    • @TABNationAutomation
      @TABNationAutomation  3 года назад +1

      @@user-vj6tb1sp7m ah lol. so in ahk you can turn your mouse off while it runs then have it turn back on with BlockInput, OnOff

    • @TABNationAutomation
      @TABNationAutomation  3 года назад +1

      blockinput, on
      movemouse
      blockinput, off

  • @pinyang8782
    @pinyang8782 2 года назад

    How does controlsend button work in this macro?

    • @TABNationAutomation
      @TABNationAutomation  2 года назад

      from what I recall..as I dont use macro recorders as they can be junky and buggy vs you coding you can press above the code the open in ext editor and just change sendraw to control send syntax