HyperNext Studio
HyperNext Developer => Getting Started with Developer => Topic started by: AnonymousPostings on July 01, 2010, 11:43:50 AM
-
I see there is also an application in HyperNetx Studio called HyperNext Developer but is it any use to me?
-
HyperNext Developer makes plugins/libraries for HyperNext Creator and is useful in a number of situations:-
1) You want to make a library of frequently used scripts and use them in different projects.
example - a graphics or encryption/decryption package
2) You want to produce a special script and make it available to other HyperNext users for their projects.
Note,
our neural network projects use some Neural Network plugins.
Using a plugin
To use a plugin, just drop it in the Plugin folder of HyperNetx Creator, and in your project enable the plugin via the Preferences on the Edit menu.
-
can some one use plugin created from another program?
-
can some one use plugin created from another program?
No, HyperNext Creator can only use plugins created with HyperNext Developer.
-
Can i create a plugin to save the data entered in my text fields????
How to i assign function to the 'Save AS ' menu?????
Please help!!
-
Can i create a plugin to save the data entered in my text fields????
How to i assign function to the 'Save AS ' menu?????
Please help!!
Yes you can save your text fields using a plugin because a plugin has access to the file system.
You can also save all the text fields in a program because text fields are special controls that can be accessed from any card.
Just call the save part of your plugin from the script in the SaveAs menu option. The scripts are accessible from the Menu Designer.
For example, if your plugin is called MyPlugin and the its save procedure is called SaveFields then issue this command:-
Call MyPlugin.SaveFields
Note, The example project called Circles is a good place to start with plugins.
Also, the Quick Start PDF has a section on writing and using plugins
Malkom
-
thank you very much!!!!
ill follow your guidelines and will report about this to you soon!