I'm trying to add a sub layer to the main set of layers in a framer prototype:
myLayers = Framer.Importer.load("imported/some-psd")
layer = new Layer();
myLayers.addSubLayer(layer);
But I get the following error:
Uncaught TypeError: undefined is not a function app.js:4
(anonymous function)
Try adding the
superLayer
property to thelayer
var, rather than adding layer to myLayers as a subLayerIn other words:
Or