- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-20-2016 08:08 AM
Hi All,
Im trying to call a script include function inside it's script include. I've attempted it already with no results.
I was wondering if it was even possible to do what I'm attempting in a script include?
Solved! Go to Solution.
- Labels:
-
Scripting and Coding

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-20-2016 08:47 AM
Hi Justin,
Reference functions with this.functionName().
Example:
var foo = Class.create();
foo.prototype = {
initialize: function() {
},
bar : function() {
this.zip(5);
},
zip : function(num) {
gs.info('num=' + num);
}
type: 'foo'
};

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-24-2020 10:34 AM
Short and to the point, thanks Chuck!