Super in AS3 – An explanation.
Hello, today I was wondering what the super keyword in AS3 did while they were used in classes. Initially it seemed like it was the constructor for the base class. However after exploring a bit deeper, I realised that there was more to super than it seemed.
So here is a scenario.
ChildClass.as extends ParentClass.as which requires a string in its constructor.
SO, in this case a super is required from ChildClass to pass in the string value that its base class requires. This is extremely important during events and is really apparent then. I will explain how to use, and manipulate events to your advantage in some other post.
Getting back to super, I also found out, not like its some great accomplishment, that you can run other items from parent, just so long as it does not conflict with the required parameters. So in the above scenario, ChildClass.as can run some other independent functions BEFORE running the super. So what you may ask. But this means you can actually append and modify the value of the super from its parent before you pass the super into the parent. IE, say for example your ParentClass wants to always add ” good bye” to the end of the string to be passed into its constructor, you could have a function that returns that value to your child and then from your child pass it to the constructor. Yeah, I am lost in my own post too!
Luckily, I found a person who made some kind of really really great example. I don’t remember who it was though, as I was searching all over for an example. If you are the owner please contact me for your credits here. Meanwhile, you guys can download the modified super example here.
Download link for super example
Feel free to leave any comments and ask anything you want here.
<div class='sharedaddy sd-block sd-like jetpack-likes-widget-wrapper jetpack-likes-widget-unloaded' id='like-post-wrapper-138826977-46-67ef38f61a026' data-src='https://widgets.wp.com/likes/#blog_id=138826977&post_id=46&origin=www.topiwalla.com&obj_id=138826977-46-67ef38f61a026' data-name='like-post-frame-138826977-46-67ef38f61a026'><h3 class="sd-title">Like this:</h3><div class='likes-widget-placeholder post-likes-widget-placeholder' style='height: 55px;'><span class='button'><span>Like</span></span> <span class="loading">Loading...</span></div><span class='sd-text-color'></span><a class='sd-link-color'></a></div>
hi,
the code must have come from http://simplistika.com/super-explained/
Yes I did get the code from the site. But that site did not explain it well enough for me. This did not help much when I was learning it myself, hence I reposted with an explanation. The code is a marvel if you still have no idea.