HISE Logo Forum
    • Categories
    • Register
    • Login

    get Index from 2 arrays simultaneously?

    Scheduled Pinned Locked Moved Scripting
    50 Posts 3 Posters 2.3k 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.healeyD
      d.healey
      last edited by

      This post is deleted!
      ten7kurT 1 Reply Last reply Reply Quote 0
      • ten7kurT
        ten7kur @d.healey
        last edited by ten7kur

        @d-healey said in get Index from 2 arrays simultaneously?:

        Maps doesn't exist inside this function.

        thats what i thought.
        How can i get at it?

        EDIT: precisely , how can i access a variable outside the inline function?

        d.healeyD 1 Reply Last reply Reply Quote 0
        • d.healeyD
          d.healey @ten7kur
          last edited by d.healey

          @ten7kur You commented faster than I could delete my post :p

          1 Reply Last reply Reply Quote 1
          • d.healeyD
            d.healey
            last edited by

            I think this is where the problem is.

            var Item1 = ["Item1A","Item1B","Item1C"];
            var Item2 = ["Item2A","Item2B"];
            
            var Maps = [Item1, Item2];
            

            This is what maps contains

            [
              [
                "Item1A",
                "Item1B",
                "Item1C"
              ],
              [
                "Item2A",
                "Item2B"
              ]
            ]
            

            Is that what you want?

            1 Reply Last reply Reply Quote 0
            • ten7kurT
              ten7kur
              last edited by ten7kur

              hmm
              Im trying to get the index of both arrays.
              The INDEX of var Item1 and then the INDEX of Item1A, Item1b, Item1C.

              So if var Item1 is true AND var Item1A is true, i can do something.

              LindonL 1 Reply Last reply Reply Quote 0
              • LindonL
                Lindon @ten7kur
                last edited by Lindon

                @ten7kur getting an INDEX of an item in an array? will return you a position in the array - not a true/false answer (well apart from the first two ..)

                your code says;

                if (Maps[value] == 0 && value == 0)

                where Maps[value] will always = another array , not zero...

                HISE Development for hire.
                www.channelrobot.com

                ten7kurT 1 Reply Last reply Reply Quote 0
                • ten7kurT
                  ten7kur @Lindon
                  last edited by

                  @Lindon said in get Index from 2 arrays simultaneously?:

                  @ten7kur getting an INDEX of an item in an array? will return you a position in the array - not a true/false answer (well apart from the first two ..)

                  your code says;

                  if (Maps[value] == 0 && value == 0)

                  where Maps[value] will = another array , not zero...

                  Buts thats what i want, is the Position in the array. Then i can do a true/false if. Dont i? Ive tried everyting(as in my first post described)
                  All credit to @lindon , thats where this code comes from

                  LindonL 1 Reply Last reply Reply Quote 0
                  • LindonL
                    Lindon @ten7kur
                    last edited by

                    @ten7kur OK look this code:

                    inline function onViewport2Control(component, value)
                    {
                    	SelectedItemName.set("text",Maps[Viewport1.getValue()][value]);
                    	
                    	//print selection Index
                    	Console.print("selected:" + value);
                    	
                    	// if both Indexs are correct, then print "OK-selected"
                    	if (Maps[value] == 0 && value == 0) {
                    	    local Selection = "OK-selected";
                    	    Console.print("selecton:" + Selection);
                    	}	
                    };
                    Content.getComponent("Viewport2").setControlCallback(onViewport2Control);
                    

                    Just put this line in there:

                    Console.print(Maps[value]);
                    

                    and you will see you are getting an array back.... not a value.
                    So this:

                    if (Maps[value] == 0)
                    

                    will NEVER be true...

                    What are you trying to do?

                    HISE Development for hire.
                    www.channelrobot.com

                    ten7kurT 2 Replies Last reply Reply Quote 0
                    • ten7kurT
                      ten7kur
                      last edited by

                      I dont know how much easier i can explain.
                      I wish to do:
                      If the index of Vieport1 and index of Viewport2 = to what i want, then do........somethng ,eg print console

                      1 Reply Last reply Reply Quote 0
                      • ten7kurT
                        ten7kur @Lindon
                        last edited by

                        @Lindon said in get Index from 2 arrays simultaneously?:

                        @ten7kur OK look this code:

                        inline function onViewport2Control(component, value)
                        {
                        	SelectedItemName.set("text",Maps[Viewport1.getValue()][value]);
                        	
                        	//print selection Index
                        	Console.print("selected:" + value);
                        	
                        	// if both Indexs are correct, then print "OK-selected"
                        	if (Maps[value] == 0 && value == 0) {
                        	    local Selection = "OK-selected";
                        	    Console.print("selecton:" + Selection);
                        	}	
                        };
                        Content.getComponent("Viewport2").setControlCallback(onViewport2Control);
                        

                        Just put this line in there:

                        Console.print(Maps[value]);
                        

                        and you will see you are getting an array back.... not a value.
                        So this:

                        if (Maps[value] == 0)
                        

                        will NEVER be true...

                        What are you trying to do?

                        Yes that works, but i need 2 variables to = True

                        LindonL 1 Reply Last reply Reply Quote 1
                        • LindonL
                          Lindon @ten7kur
                          last edited by

                          @ten7kur WHICH TWO VARIABLES!!!

                          HISE Development for hire.
                          www.channelrobot.com

                          1 Reply Last reply Reply Quote 1
                          • ten7kurT
                            ten7kur @Lindon
                            last edited by

                            @Lindon said in [get Index from 2 arrays simultaneously?]

                            What are you trying to do?

                            trying to pass another variable if both = to True

                            LindonL 1 Reply Last reply Reply Quote 0
                            • LindonL
                              Lindon @ten7kur
                              last edited by Lindon

                              @ten7kur both what are equal true? There is NO "True" inside the array

                              there is no way that Maps[any value here] will EVER = true.

                              it can only ever = the contents of one of the array slots or undefined.

                              HISE Development for hire.
                              www.channelrobot.com

                              ten7kurT 1 Reply Last reply Reply Quote 0
                              • ten7kurT
                                ten7kur
                                last edited by

                                @Lindon said in get Index from 2 arrays simultaneously?:

                                WO VARIABLES!!!

                                So thats my question.
                                I need to have a True to both items.
                                var Maps. and the Viewport2 value

                                uhh this is heavy

                                LindonL 1 Reply Last reply Reply Quote 0
                                • ten7kurT
                                  ten7kur @Lindon
                                  last edited by

                                  @Lindon said in get Index from 2 arrays simultaneously?:

                                  @ten7kur both what are equal true? There is NO "True" inside the array

                                  there is no way that Maps[any value here] will EVER = true.

                                  it can only ever = the contents of one of the array slots or undefined.

                                  Then to "Item1"?
                                  This cant be impossible

                                  LindonL 1 Reply Last reply Reply Quote 0
                                  • LindonL
                                    Lindon @ten7kur
                                    last edited by

                                    @ten7kur You have MAPS set up as David has explained:

                                    [
                                      [
                                        "Item1A",
                                        "Item1B",
                                        "Item1C"
                                      ],
                                      [
                                        "Item2A",
                                        "Item2B"
                                      ]
                                    ]
                                    

                                    so there are two only slots in Maps

                                    Maps[0] = ["Item1A", "Item1B","Item1C" ]

                                    Maps[1] = ["Item2A","Item2B"]

                                    So any number you put in Maps[xxxx] will NEVER = true

                                    HISE Development for hire.
                                    www.channelrobot.com

                                    ten7kurT 1 Reply Last reply Reply Quote 0
                                    • LindonL
                                      Lindon @ten7kur
                                      last edited by Lindon

                                      @ten7kur said in get Index from 2 arrays simultaneously?:

                                      @Lindon said in get Index from 2 arrays simultaneously?:

                                      @ten7kur both what are equal true? There is NO "True" inside the array

                                      there is no way that Maps[any value here] will EVER = true.

                                      it can only ever = the contents of one of the array slots or undefined.

                                      Then to "Item1"?
                                      This cant be impossible

                                      You dont have anything called "Item1" -- anywhere...

                                      you've got Maps[0][0] = "Item1A"
                                      you've got Maps[1][0] = "Item2A"

                                      Can you just say in english what you are trying to do...e.g. "make sure Viewport1 and Viewport2 are the same"... or something else?

                                      HISE Development for hire.
                                      www.channelrobot.com

                                      ten7kurT 1 Reply Last reply Reply Quote 0
                                      • ten7kurT
                                        ten7kur @Lindon
                                        last edited by

                                        @Lindon said in get Index from 2 arrays simultaneously?:

                                        @ten7kur said in get Index from 2 arrays simultaneously?:

                                        @Lindon said in get Index from 2 arrays simultaneously?:

                                        @ten7kur both what are equal true? There is NO "True" inside the array

                                        there is no way that Maps[any value here] will EVER = true.

                                        it can only ever = the contents of one of the array slots or undefined.

                                        Then to "Item1"?
                                        This cant be impossible

                                        You dont have anything called "Item1" -- anywhere...

                                        you've got Maps[0][0] = "Item1A"

                                        Can you just say in english what you are trying to do...e.g. "make sure Viewport1 and Viewport2 are the same"... or something else?

                                        Im at complete confusion.
                                        Im trying to:
                                        Create a variable from Viewport2 selection. But do this i need the index of BOTH Viewport1 and Viewport2 to continue.
                                        So say: Viewport1; Item 1 selected. And if Viewport2 Item1A selected i have Yes/True. Then i can/want to make another variable

                                        LindonL 1 Reply Last reply Reply Quote 0
                                        • LindonL
                                          Lindon @ten7kur
                                          last edited by

                                          @ten7kur said in get Index from 2 arrays simultaneously?:

                                          @Lindon said in get Index from 2 arrays simultaneously?:

                                          @ten7kur said in get Index from 2 arrays simultaneously?:

                                          @Lindon said in get Index from 2 arrays simultaneously?:

                                          @ten7kur both what are equal true? There is NO "True" inside the array

                                          there is no way that Maps[any value here] will EVER = true.

                                          it can only ever = the contents of one of the array slots or undefined.

                                          Then to "Item1"?
                                          This cant be impossible

                                          You dont have anything called "Item1" -- anywhere...

                                          you've got Maps[0][0] = "Item1A"

                                          Can you just say in english what you are trying to do...e.g. "make sure Viewport1 and Viewport2 are the same"... or something else?

                                          Im at complete confusion.
                                          Im trying to:
                                          Create a variable from Viewport2 selection. But do this i need the index of BOTH Viewport1 and Viewport2 to continue.
                                          So say: Viewport1; Item 1 selected. And if Viewport2 Item1A selected i have Yes/True. Then i can/want to make another variable

                                          so whats wrong with:

                                          if (Viewport1.getValue() == Viewport2.getValue())
                                          {
                                                //do somehting here..
                                          }
                                          

                                          HISE Development for hire.
                                          www.channelrobot.com

                                          ten7kurT 1 Reply Last reply Reply Quote 0
                                          • ten7kurT
                                            ten7kur @Lindon
                                            last edited by

                                            @Lindon said in get Index from 2 arrays simultaneously?:

                                            @ten7kur said in get Index from 2 arrays simultaneously?:

                                            @Lindon said in get Index from 2 arrays simultaneously?:

                                            @ten7kur said in get Index from 2 arrays simultaneously?:

                                            @Lindon said in get Index from 2 arrays simultaneously?:

                                            @ten7kur both what are equal true? There is NO "True" inside the array

                                            there is no way that Maps[any value here] will EVER = true.

                                            it can only ever = the contents of one of the array slots or undefined.

                                            Then to "Item1"?
                                            This cant be impossible

                                            You dont have anything called "Item1" -- anywhere...

                                            you've got Maps[0][0] = "Item1A"

                                            Can you just say in english what you are trying to do...e.g. "make sure Viewport1 and Viewport2 are the same"... or something else?

                                            Im at complete confusion.
                                            Im trying to:
                                            Create a variable from Viewport2 selection. But do this i need the index of BOTH Viewport1 and Viewport2 to continue.
                                            So say: Viewport1; Item 1 selected. And if Viewport2 Item1A selected i have Yes/True. Then i can/want to make another variable

                                            so whats wrong with:

                                            if (Viewport1.getValue() == Viewport2.getValue())
                                            {
                                                  //do somehting here..
                                            }
                                            
                                            HiseSnippet 6274.3oc68rEaabkcCk7XaIG+LtIoXSKlJDTHW4vv2hbMBzHIpW1TYnHksrS7B6QjWRNwCmgdlgTlNHnBsHXaQAZ5hBTT+SWmME8yftEnEY+YiwBrezhTzGaWDz18CmtEAca1tM8ifhEs.s2y8Nb3LCoDGKQ8zi9vl2Wm64dtmy8dt2ycNmrZpEP55pZLAFZ4l0PLAdF17MULpLcEQIElERyD3zrypJKoNkntdjaEJLyTMqg+IpHSf.CNGTo.CcDFxeewDSIJKpT.0NKFlqoJU.kQppjQ6byxeEIY4YEKhVVppsZGiegBpJSqJqVGiPCxFholXg6HVF8ZhP0FfkIvQmonjgpVdCQCjNSfiLkZwl4qntlBs9WSRWZUYDjHLSdLfnYiGAEALFxkY5JRxEy1ZfqyvDfMaaxvfTxv4YWTpnjU9sIGmgT.W6VXmdDXfMC8BaG8B4czKfMz6HTz6rr4KnIUyncI.tcB1ETLPZkDwSA1QKZcYF3TGicZUbMTLBVU7NnY0vIrZwnwCE5hbwiG5BWZ3gekWgynBhqlnBRdX7bhtAWCQMtqIgVqlplgN2qx0BRkQFSqVslpBNwniXUiQ.v.voAv.voijQELjTU3JJIJqV1FPySJBUbACTUXhdCgs6Jh6BNNSLsnjdMYwlnhbJ3RFtK3b3dhygA.ZBOYcICN0RbEvSjkU0jP5cAjQ5IHiXCjEn0TG.qXK.2DSj.PBiI.CeiQH+ZxQtH8GS05GSOxW6RV0LhUMizplQlBp.oFKJVClfdCR6tHsAPYCKoHKof3JUWgNUnpXmjBiDMU4QKzZXbQ7fUtN5BC+VCOzq7J5X1XtgGxZBNHjQq1Xngq2kF9suzv8dpajKDTGJjzxoEkkWEKjOZWwEBOTOP6acqzR5Ukz06A9WQpHpEy2FLJJIJq64ggU+5kwiaj7Bce5vhSbyFKb3+jUKHJyUs4jZZhMuDIKyD3IdX9+MHUGOqCybHCBCntX0ZxHtph03jkvrxqJhWe.2qTtyV7iVzlHvvZzQjvnu9HWzD7AeSUIkQG4lJibgMiPYSjp6DG2iT5L8lPRhroSutWZfh5Fn6YLxEIjCq9CPzqAsazK70LIR39dHfNUSSRwv1JUKnTDcugGB2w5pxnfjhGcDcyt5qNB2XlX.t8mD..mTItUUMpPaoNmnFH0qogq+EAhrBGsKFQ3JubKvLxvCga0ncC+3d0Ws8RM1x+B3NClweK5+Q4Exag1upS3eIZs55nPUgLJrZKLRd6g58zZjdMsFw1zpsIyWS0.InLJYJa32dXN2EUpTWKyDXxHstVLnDg1l0vQUpWcUjlcFFnh3cSctcM6FucscsILWH2VEUUVPQxPnFRYi1DmwjfBZaXhU3pZP1L+TlalOUcC7LBiDdO6mmsqqdvPF.103hwMvNoIvxHtJRl.qyw5V5nEXNNKcmCFFOfRmxAX7.lbNSXfJ1hqf.mSvZwq2BHrABvvv7jCfHt.vUWHsngHnwjI0FOCTCoYHAStARiZf0Dgp+zProQ52wPsFlGvh+lIvwdhmPtmEInVc9lsoGyvulTQiJ.p8x3jUPRkqX.o9J3Tv5R.ix8fwrUmepmfIv1c6sKZqaWe11c621Q2dVqt0ZRGR1RW6mgMVjwSFNUnPICwTBS7xazDX7OJVjPtHinrTYkpDr7nrxnRFj5P0J+Dr2nN2b3U8jJPaoz8swWDhGgEwDsT5c0xs5xgN5+G9OF5DuEQ3Ddk+qMEXcQ6DdKJPqLj3aQEZeLCJk.edBIhtFTDZX1vIFObzXimxFVB3b6JEAHeQAJUDlRRxU0MvH4BUwmPgIvnruU1bBWdloW9VyJjI8L4daCMQkZ38.vzD5psZAqoTtaC2Vy4YA8scwjamGC+W6gJeNWCU9ec2C0unI+ppZEQZ4DKJUW2Nbn46bxhoqSO1oQjbukybiXl82DxNv.1FcmwyKDrACw0mz8rYA2CwaWmmRisSUsQ7Hpu.TXh1vCS386B+bcc7gT0MnKe2KpvyvFMVhn3iJEEyq3hP76j67+OLlBa1ktRFMZjvohFqKRW5EfM2lRTaYrLzcTvaYzd7NJOyVffFwFAku.eekftiQ6.pT3HwBGMThw2Xxm474ooqhM4vlKl0MZ3QXAwzNH2LcdbZ7g5UKVWVzv4I8gq2vr.r9DNNRMbrYE7YDaZeKvcji+6Uz8rrYkLJTo636.cAeAg0cX707xTNI6LkJgW.rMxdD1Yu9N+MmXGUN9Fb8VmicQQcCjFnw.NOj1S3Mb8vOpa2vUMOeCWAFbm3FsN5N0MZMn2lW5wsXYwWLoVMT4xR.mLAWNk8bbNS3lPMn2TVeSUE+rdRuWJVXlUu06sKv3jr4P3yK0cPvrwpemWVBuIMADml80pWMuAplYdt.BGuW.xIXAHPvksFVbFB.xeGoM.M7F4.CE7VIWA07Imn5bvTCgJdEE0U8.03Ll..uq1ppSodOKMquacDVf1J6sDpbRVgBFhMP4DUJi1ZT1gXyWodoRxNa9se2u222FFbDm6+SadV7QuIf373QSUokw6Yaq.WHy44KBGQJPHrZrAeB9iw6Hw0PxpEv6zrwHwwchDkhO0jACN+7oCFLqTVb5wfzotBNcz53zAmER+lym1yHw4XyfTJaTwynPPInKxNGtKCV.Pg6.oiRPoxVou1kSy3MFqyxhWeUAqLeKM+6fovibnOOqPciZ0M5A35Ba5FfWKlcF7JnZs.na.E1i30oA.MiRwMFL9ZY8TnVVm1gVVyooVuFASdVRFHc7wM03HY2WLjn2UyZFE3NHlcQ6PbZQMMIjF4xZs04ej0zdGkbUEIcUEUBpLYU05JF1QZyRSiLpqzBY3+z6+G2pf70zPhEs2B.6yivnZQBH0cvlOnmmqdBTL7X6qM04t2hFac8XOR1NrYNdERIvzJynz.u2GNG5AKRiJIVW1nUtN33GXQLCQsJpJREryRlCYnIUtLRyNt6d.s9Cdv+3DSZX.aqYai8b38FD0sIEDkOC9.MhZX5DZKRKB6cc52r4qWfkhtbfXJ29pE6MWw5XrSNe574L4tHRiccdavsw71sKU5mYNuMccsF1lSd7DoQEDa5JWFF2Sxw4o4jAgQMyre3muDyilGtXCaMj.NqL9i9t74qqazdM1G890dtG4le4Lec9YJntywrv5QlkSZmYYet5.mpEtRmQ1eirOCKgs3f.c8zrlLrGHHrmh0TVZ+Bo8TTjkkMyrBlS8vFlvY20CuoZrh0W4echY0nmJ1FROBOnk0BsURi+c4WAeh2RpZUMMolYMeQ9LnxX5i8A7xnp0TwZ.Vvdl4qpBVMRorSc2XXxnpVipulCkkxVASgEJUBt7B6ZwgYTTq1BWHV0AFmDKAF3qvFNQv0BIM0XiuT46FKe46N2ZBnki95oBxz+VYa.Oxm7rv7AmEIG1HbeNmMEis3G1mfwcvdel1r24DUJt4r3b27c+62dr3meaxh+R78QV72fMQL3FLJMF7uolF+OQE5Oo8EQNvJhrkuCiA8zcXzeN9zocKGeV1zZRkLrv4vaJlw8y+9+FSLkTMUYQMPPuKxzLLtjow+sirsEdshc.Y5fic+LMyj.jIaH75x2XVhL53tSmuYllZcjtc6kjug7Zzz9xzGbkosLgIQ7ckJHrhwzSWSxfijCmGEdt8Uu5OztvyU0QKSelNs4QW.eBXMCjiSVRY+sw6u9m+eMGeeiohYyVd3jzApGTikI2G961ikFFkeWZogc.MZAMXIh5AKcC4aDVvzFM9h1GTEs6fU+YswpCpzpVsmmaqXeig2W+VeAl84BLacads0Ucc3N2KFuijpbS8Jh0P3tkdSKPN4gbbJwZd4t+ArgCkzxr5KGmpKWwvJESZwe1PnxBqLYJ7uZo6m9RIKjpUiZDVPqz0mB3mkShKuQSqzYSRqOVZcQHcsjT98rYhkiv+eOZ4VxCsLu+j5MqB2gcAQYSD8OgMbjPsqgIhEJxMlNkU5v.fuLjtjoRoMZN6cRYCvku98B0NcCgqgaPJavKcdioZKXlUXkIWK8X1peXkTu1XNeJBDDuHYfgQb7AFrty7G+wYRx67BrGgW.qCC4KeAuL0dqUPNGKAY41ara0fatQOLQN.2DkAbquYtJRlcZ1CtOXt+NuY1iW7a0EydP9ygYOVeNdml8.zV0gYOLwYml831eCeyd3a1CeydbXzrGmjkrQrWNvHffcQo4WX25Th7uSeTo4Adt.rQBEKnZiPRodyoVQHd9KuZREgx2ct6jJsQwkiCWIjJbkQxoleFihwkVNZbUgoWQnVJs4lwH9zIVp7cEvsoQpr3VkHuvkWUW.W8XofLSLctx2sN8JkJc24lY77PtBK1LyziA8234iFeo0f9alwtuzTqLN8JnHWQkB9HqcjFfuY8wXxRjqvBqFSz3SRgOUaAbkRR6eIbiLDBKMUjTP8SLMdPnIf655oxfaZ7lEWNZMn5Jo.3STyRQvWg+CO174YsIa6kSHSuM3siDt+wh8kR1mKkX9fzNG4PnT80mUR1.Q+5JFhklvofxbtTP1sLBez+FM9krRD8GLgSkk43WBejAGizP7lWEUGlr4c97uceT25i3wIqmi0wD0d7ou5xqyfNufSGt21haaY55uXhswZXO5KG8GMg+ZX6jqgs04vFXyUDNMplQEu8.f9G5lhvWbWybIe8941jeLa3XIChUQbMS8VwJ+1P.qrXZS8PghDvJyNGUOUpdlHbt1u0JRZErxzQA8VKKf0qd5TYv.LdSbl0DvJKeEhdyQstdsfzaspAQOTb+c+T.7SHgUl0P.iIgn5gC549lfd1YSAUMJn2sjK3YcIc96KeHR601BjdT60Gu8DK80d0WJ4.7iVpufw6X6tR9RT8x0L8IueWEi+U2s1c8Q58Sw32iMb3DAEt7pERB25ST3Vbti.4VmH2hD7da0EVQ3ximJM7uR3M9Hu+1KOV1KuZRxs7beX22UFC1c1zXUjzjxo2RD4VdH2hEbqNUDVKjTE5t4z2yK4VjH6dSu0HR+QduuS6uXvgpK7wRJySaY9Iu+eqmj01wdmum2eKSeojc8uzC.E8lEO55VQA20r3wuceW7.u7+piAmiJIcmh1miBu6fvTf8EtJw9BIsctpR3LFmdtPnpofmLaLvdI22+c0cnS73bsEO7xdHOdoO76t8DR7O1kuPxA5uUDv7.bGX7OG+hrlVdfPkO3f2mhco8WHaa+kFw0FLWaDklAGjyF5DO3hFcvGkFI670XshMWOH2mN7M36vMe7EeD8aNHKLE59aPZvcayFcPi4Gb4DXR9AIDlvRbvAgOCaVQk8HSHFXy+BXgcV7329SWerS7QiFneaFwVetP9mL1WqlcELNmZcCLy1hhFZR2CKe.9LQ05ZEPl9oLvIuGX.fghlNDjlvmhTJRR.9rVyBC2xwhCEFtUg1oJGiRUNAadQi5ZVdwxmocZmGuvLaXgC6aKhL5zYRkUC49gYjUU2vcd8uME85qX+4YaOJ1Grv8t7L9Ps8e7k0vKVRHIC2JkyY64QhE0TUq1xQ87fG7SlXo5h1mme7D4vDC6ogIY30fz5IW7we7OchWSU4ky3bdm5U.2L+E1NOmvoYm85O8wAbNJEAOm2TQrpTAcyPuTqjtebUFnN1ligAxd4JZH8JtbbSPAt85SewDPtc3dutAO3gt0HnUW5h1E10Npcw4fYO68V6hbfIX92etsxbiOORim3c9PcCYLKoqXhYYcNpMKniA9KYafun3cP0q0Ev0YA8OGH7dytLCwRTNx76L6DzTbydcmLbVaCGt8XuIuUtQZm6C3mEgJtZah9sKU5ylXQo6s2tpx4LGX6CUx1D0z1NpYSTq1oZ1W3GEdm3054qlsuZ1GpTy93rSWQUqtt4aYllv4pe1zlh7RkseiSO5W9c9mmv0RdjJ45dp5iK5saSnNQquqS5PBnSGm9amjIRVvREYf32gsOEBqBx4Lj4bdq8Jr0BBwqU91a.ofLpqkE2g.+pEb9s9A7yK0QtLo4auqC2Me2+ktuF2A1YEyyLz5lSygZfzV07VaLuLUZdN2NIG9nC1hOOjiOjVrZs1eGyX57OdB7oGc3NPevC9KmHsVSW48SbHJPx.OGftOx1a4Gm624fKUtWeBnfSY18ZlCre7qUk5ln2mfpuXqOnj7FXrpJd9LOIJRpYdvWyT6xdy6rZHYUwhNidUOhep5kJ4NlV8mx2Uu0cMdSLOGpFRzv4Wzxw4yki3jx6x0x.dkkk0vK34xcBHnfvzcmZSoopqWBObHvxQz2JacsxNOgDYE.cm4gkXrKq.r+WUGAy0REZIVY6niPuDxzINg0bi5l0ckNhqzQckNlqzwckNgqzi2Nc.Vm7hGyaqbrnXMRXOyVMmRxjKCWFMG6LrVjURWaKT4raFGbNf4tyOn4eAOLGiD1by.SY74Hwni88NVAxR.bvJ1GlOIRgVfBO1L+M8DwChZcx5.CH612jni2LBPI7JiLzHubUxpYzKuYxhEmUSB2MLt1pAFmKJUHqJl9gEc.MvXuDdwTJHv5yiUKz.XaikfIi5UPMI+NFy7Rs9cRb9WCvEf7MuD4mrrgiLdqtxbIUIYDMBddU1ze0aNY8hRp2zjPjScUUiaNqPlED3lZx74uU3aE1L4KSx.+eqL403nLq52DOZPliGtPwRDbMwFLoqWSVp.47X3IfNP+3gsg9oZi9witGi9wC6Iz2F0OtMpe78ZpebOQ8SXi5G2F0OwdM0Ogmn9Ih2F8SXi5mX78ZzOtWP+n1XdhZC8itWy7D0SLOwrw7D0FySr8ZlmXci4YW9XndOBHE4oiHfD4utEAjd3be5+teDP5ooHfTjcxHfzCK1YDPhyOBHskh.RmfsqSYamfez5m+C9O2dA+nV4r4dAvNB9Qy9gtB9QOdoj+JtB9QO5K+N+g9dAPeu.nuW.7PdvOJR+wI.tSE7id358SC1++xFNYrfv2zVR3ahKL36QJR8cIDeMBjVVHZ7kJa5S.mZEgZzuAN297uwUZDxzm+sZRESe9G3y8ZHPhtRjuta5WeMwG.BeCcO4oI9PPL9L4XMv.0zWrLOFcHeM2IfudbcAhubg3i+n9vP3EDP7sJw.7uB.ulI8eQAGditSatL7se2u2OzCxv29C+.M+n6juHhezcZuK5NEwO5N4Gcm7ko2ZQ2onatvyYO660WhtS7C+I+2Sr6Gcm5wd7W8p+48XoANma2+nu7G+M1ghWob6HKMz++yeogCyQGp9s.yNn+8zW+XeAF+nCkKig3Gcn1wiNTLLqGwO5P0mhNTQ1giNTDm2mmrKze1eA+VxtPmYcdODcn98988sKjucg7sKzg8nCUOuT4+iI1Kigv2tu5T7+orgGOB0vPTCoPbB9x2P9FiAFBJIXXn6Qc6tfSuuA3bDUnF9A1U0Tqg0BIkiFrlvvHycIFtgXnnXfgbTnAiIhganNWwUDtbFpyWrItmCS0x.peRvI5GFtgqqQtQKB7uu..0wtNFqLCNTDCMQLDE0PPjfSEwI7SCtU3N45lN6QhgtHtkXes3OTGxmhrkB4S9QBY+y59TVHeJxSTHehg4u58rB4Sqe9OXHWma5EdBB4SObtO8exOjOsIg7oHaoP9TG19ZmIjOs9mOSM+0vNnGxmhzKmb7OaOMjOw+a1OYw9L1vIRFDq85JzP7DMTfRBwRzfRA4YFQCATXEOMCUoVO6nDzPvzhMyj2LThB+KDxltJkmipsJ.uwf2N03V7fAItd73f1pg.3urY8wXRSHTjNO8YRQqOITlR09lDTLHZ2RdVUzPaJ4YNQdVSTWYtadd+crOLGLn5g.68O+m4GLn70q0OXPsOOXP0yim9u0Mw3eM9CjOqIpsqHOuXhbH843RrCiUnLLJYevTteaB1JGsbzWuixIgnil3cHM2G0Vvdh77jouiJ7lqZzPXNMXQgqTU+8IOTGAn5ohsev1S.yeeReojCvQ.pdHd7909q6l3wKsq8Tf5+ucNRj0kDocaerLyWK.wnC3sOt9XfQCrGAnHFk.LhPCZj5ExibrrP9Q.pC+Q.pdX5Ovo3tsDR72CwWHwOBP4GAnNTFAn1PmXB2m79Gk2km08Wf2tSHk3B66haNwOBP4GAnNLGAnNjFoah3GoadJJR2DwOR27TejtIhejtwOR2raFoah3Goa1qhzMQ7izM9WRhejtYuLR2DwOR23kHcSD+Hcy9+HcSD+HciejtY+Ujt4WxaQ5lH9Q5lm5izMVAmFfy.h7MGwOx23G4a7i7M9Q9F+HeiqHeytAVdXoOpJVPS8VXE.LzTIz7iSxASsUHQKigXWDRyElognbcx80DJXHlp30tuUgBf.8Ki4T5dahrEZSzsPahsEZS7sPaRrEZy3ag1jbSaCrs4j0MTqRWrGmQ1YnBHArtJp.Cx7+C3XJX.C
                                            

                                            Somethings wrong...
                                            If you browse to Item1>Item1A, It works!
                                            But if you browse to :Item2> Item2B it responds with the same output!

                                            d.healeyD 1 Reply Last reply Reply Quote 0
                                            • First post
                                              Last post

                                            30

                                            Online

                                            1.7k

                                            Users

                                            11.8k

                                            Topics

                                            102.5k

                                            Posts