Reply To: 'Library' etc. methods ?

Home Forums General Programming 'Library' etc. methods ? Reply To: 'Library' etc. methods ?

#83098
dasfaker
Keymaster
    • Topics: 80
    • Replies: 793
    • Total: 873
    • ★★★

    While I’m not a programmer, it’s very useful to have functions independent of methods, so you can call them at any time form anywhere.

    Remember that you can use local variables to avoid problems with their names

    filter = panel:getModualtorByName(“Filter) — global variable
    local filter = panel:getModualtorByName(“Filter) — local variable

    Ctrlr