Skip to content

Instantly share code, notes, and snippets.

@wouterds
Created December 8, 2012 12:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wouterds/4240089 to your computer and use it in GitHub Desktop.
Save wouterds/4240089 to your computer and use it in GitHub Desktop.
[PhotoBooth vb] PreviousButton
/**
* Created with IntelliJ IDEA.
* User: wouter
* Date: 09/10/12
* Time: 19:09
* To change this template use File | Settings | File Templates.
*/
package be.devine.cp3.photobooth.view {
import be.devine.cp3.photobooth.Library;
public class PreviousButton extends IconButton{
public function PreviousButton() {
super(40, 66);
}
override protected function createIcon():void
{
icon = new Library.ArrowPreviousGif();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment