Announcement

Collapse
No announcement yet.

Latest Ver 11, no scroll arrows in menu

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Latest Ver 11, no scroll arrows in menu

    I just installed the newest ver 11.

    None of the options in the "Edit" menu show the scroll arrow that opens the list of "addOptions" for that menu selection. However, I can use the down and up keyboard arrows to scroll one item at a time without the full list display.

    What could cause this?
    Is there a fix?

    The forum isn't allowing me to post an image even though it is less than the 102 kb maximum size.

    Wayne
    Last edited by waynecd; 03-11-2011, 04:40 AM.

  • #2
    Here is the image. It finally loaded.
    Attached Files

    Comment


    • #3
      To ver 11 developers

      Ref: FunctionParameter object:

      In ver 11, the list scroll arrow is pushed off the screen to the right if the sum of the number of characters in the "setName" plus the "addOption" fields exceeds 51. At 52 characters the left side of the scroll arrow is barely visible but can be clicked, at 53 the arrow is off the screen and can't be clicked but you can still scroll using the keyboard up/down arrows.

      In ver 10.6 the window is larger, that is why the script works fine.

      Please correct this flaw by allowing the text box to expand to a fixed maximun at which point the text exceeding this max size is no longer visible (but can be scrolled left to right with the keyboard keys) and the scroll arrow to remain fixed over the last character of the text box.

      Put simply the scroll arrow should always be visible and the text box should not exceed the size of the edit window.

      Here is the test script:

      PHP Code:
      debugClear();
      var 
      aFPArray    = new Array();
      function 
      preMain() {
          
      setPriceStudy(false);
          var 
      x=0;
          
      aFPArray[x] = new FunctionParameter("iAlert"FunctionParameter.STRING);
          
      with(aFPArray[x++]){
              
      //setName("012345678901234567890");//length = 20 characters, Total characters = 51 - can see arrow and it can be clicked
              //setName("0123456789012345678901");//length = 21 characters, Total characters = 52 - just barely see the left edge of arrow and can click it
              
      setName("01234567890123456789012");//length = 22 characters, Total characters = 53 - can't see arrow so it can't be clicked
              
      addOption("0123456789012345678901234567890");//length = 31 characters
              
      setDefault("None");
          }
      }

      function 
      main(iAlert)
      {} 
      Wayne
      Attached Files

      Comment

      Working...
      X