Skip to main content
March 1, 2021
Question

Hi, can anyone explain error: Keyword and non-keyword arguments must not be mixed,

  • March 1, 2021
  • 2 replies
  • 0 views

Hi, Can anyone explain about this error with an example would be better.

    2 replies

    stefanhelzle0001
    Brainy
    March 1, 2021
    csteward
    March 1, 2021

    Yes this error will occur if you are missing a keyword such as below.  If you are debugging a large form, try commenting out sections at a time until you narrow it down.  Feel free to post some code for review here as well. 

    a!localVariables(
      local!data,
      a!textField(
        label: "Text Field",
        local!data /* <- missing 'value' keyword */
      )
    )