Select Page

Here’s how to update the new Class template text in FlashDevelop.
Out of the box, if you hit Ctrl+1 you’ll get this:

/**
* ...
* @author Default
*/

class {

}

So that you don’t have to add in your name every time, you can edit the template here:

Tools -> Application Files…
Templates/ AS3.fdt (AS2.fdt)

You can add in your URL as well:

package $(CSLB){

	/**
	* ...
	* @author 	Daniel
	* @url		http://www.sitedaniel.com
	*/
	public class $(EntryPoint) $(CSLB){

	}

}