• Login
Community
  • Login

Add the same amount to every selected value?

Scheduled Pinned Locked Moved Help wanted · · · – – – · · ·
23 Posts 5 Posters 3.8k Views
Loading More Posts
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • D
    Diz Hydron
    last edited by May 30, 2022, 3:25 AM

    Is this correct? Still doesn’t seem to be doing anything when I try to run it. Then again, maybe my attempts at running it/defining the values are the problem. I know nothing about python.

    5.PNG

    Also, my apologies for the typo. It was not intentional, nor was it my intention to offend.

    N 2 Replies Last reply May 30, 2022, 3:59 AM Reply Quote 0
    • N
      Neil Schipper @Diz Hydron
      last edited by May 30, 2022, 3:59 AM

      @diz-hydron Let’s just first verify core functionality by asking the script to do something very simple: use '47' inside the parentheses, and see if the 47 for player1 under singRIGHT line undergoes the change.

      Also, it’s much preferred that you place your scripts in

      a literal text box like this
      

      using lines with triple backquotes as explained here; look for Literal Text Blocks and Red Typewriter Text. It’s preferred over images because it enables text copying while also protecting against being altered by this forum’s software.

      Also, my apologies for the typo. It was not intentional, nor was it my intention to offend.

      I was only being silly. Some typos are too delicious to pass over without comment.

      N 1 Reply Last reply May 30, 2022, 4:39 AM Reply Quote 0
      • N
        Neil Schipper @Diz Hydron
        last edited by May 30, 2022, 4:29 AM

        @diz-hydron Also, if you want to apologize for a typo, here’s a much better candidate: in your prior attempt, the (much needed) backslash before the left brace is missing.

        1 Reply Last reply Reply Quote 0
        • N
          Neil Schipper @Neil Schipper
          last edited by May 30, 2022, 4:39 AM

          @neil-schipper said in Add the same amount to every selected value?:

          while also protecting against being altered by this forum’s software

          Yeah, annoyingly and amusingly, there’s a flaw in that text box rendering code, and it impacts text that’s part of this discussion:

          unfortunately, <backslash><left brace> renders as: \[
          so you need <backslash><backslash><left brace> in order to make this appear: \\[
          
          1 Reply Last reply Reply Quote 0
          • N
            Neil Schipper @Neil Schipper
            last edited by May 30, 2022, 4:43 AM

            @neil-schipper said in Add the same amount to every selected value?:

            In other words, go back to the original script you showed (after “Ok, Everything is installed…”) and replace line 9 with editor.rereplace(‘“player1”: [\K-?\d+’)

            Oh, heck, it was me that introduced the dropped backslash…

            editor.rereplace('"player1": \\[\K-?\d+')

            A 1 Reply Last reply May 30, 2022, 11:18 AM Reply Quote 1
            • A
              Alan Kilborn @Neil Schipper
              last edited by Alan Kilborn May 30, 2022, 11:18 AM May 30, 2022, 11:18 AM

              @neil-schipper said in Add the same amount to every selected value?:

              editor.rereplace(‘“player1”: \[\K-?\d+’)

              Because it includes backslashes, probably want this instead:

              editor.rereplace(r'"player1": \\[\K-?\d+')

              (note the leading r)

              1 Reply Last reply Reply Quote 2
              • D
                Diz Hydron
                last edited by May 30, 2022, 6:51 PM

                I appreciate all the help! I’ll need to get to this a bit later though. Busy day today.

                In the meantime, I’d like to make sure that I’m not trying to drive the car without the key and make sure I understand how to run a plugin in the first place.

                First, I go plugins/python script/new script. Then, I populate the file with the script I want to run and save it to the scripts folder. Finally, I open the text that I want the script to change, use a shortcut key as described in the FAQ, or run it by selecting plugins/python script/scripts/“Custom Script” Then if the script works, it should apply the change.

                Is my understanding of that part correct? I can take a closer look at fixing the script itself a bit later.

                A 1 Reply Last reply May 30, 2022, 7:37 PM Reply Quote 1
                • A
                  Alan Kilborn @Diz Hydron
                  last edited by May 30, 2022, 7:37 PM

                  @diz-hydron said in Add the same amount to every selected value?:

                  Is my understanding of that part correct?

                  Sounds right, although for sure don’t bother with the shortcut key thing right out of the box. That would only be useful if this whole thing actually works for you, and if you need to do it multiple times. Just run the script from the menus to start with.

                  1 Reply Last reply Reply Quote 1
                  • P
                    PeterJones @Neil Schipper
                    last edited by May 30, 2022, 7:37 PM

                    @neil-schipper said in Add the same amount to every selected value?:

                    he is a rapper by night,

                    I have never been accused of that particular moonlighting before…

                    @Diz-Hydron ,

                    Is my understanding of that part correct?

                    That seems a reasonable summary of the process.

                    If nothing happens, I would tell PythonScript to show the console, and you can look to see if there is an error message.

                    1 Reply Last reply Reply Quote 0
                    • G
                      guy038
                      last edited by guy038 May 31, 2022, 12:25 AM May 31, 2022, 12:20 AM

                      Hello, @diz-hydron and All,

                      Well, @diz-hydron, I suppose you could begin with this very simple script, named diz.py

                      def player_1(m):
                          return str(int(m.group(1)) + X1) + ', ' + str(int(m.group(2)) + Y1)
                      
                      def player_2(m):
                          return str(int(m.group(1)) + X2) + ', ' + str(int(m.group(2)) + Y2)
                      
                      editor.rereplace('"player1": \\[\K(-?[0-9]+), (-?[0-9]+)', player_1);
                      
                      editor.rereplace('"player2": \\[\K(-?[0-9]+), (-?[0-9]+)', player_2);
                      

                      Before running the script, of course, change the X1, Y1, X2 and Y2 values for true positive or negative integers ( e.g. +7 or -3 )

                      It should work nicely with your text posted here


                      In a next step, it would be better to enter the different values with, for instance, the notepad.prompt python command and assign the 4 typed numbers to the X1, X1, X2 and Y2 variables…

                      Best Regards,

                      guy038

                      1 Reply Last reply Reply Quote 0
                      23 out of 23
                      • First post
                        23/23
                        Last post
                      The Community of users of the Notepad++ text editor.
                      Powered by NodeBB | Contributors