SC5 Libraries

What is the standard format for creating a new Libraries?

And how to call the created Libraries in the programs?

Regards,
CK

Re: SC5 Libraries

-Open a project
-Tools/Libraries … create new, define scope (user,project, etc) add your code, save.
-Load app, Go to Programming/Libraries and place a check in the library to include.

Several notes:
Creating a library is simply creating a PHP file. You have to define your function names in the code, unlike PHP methods where the function name is created for you. This will allow you to have multiple functions in the library file instead of having to create separate libraries for each function.

I usually only create library if I plan to use the function in multiple apps, or on other projects. I use PHP Method for app specific.

Regards,
Scott.