This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Remove the top and just get right to the Seed Map */ | |
#pageheader { | |
display:none; | |
} | |
/* Remove ads */ | |
.adthrive-ad, .adthrive, .adthrive-footer { | |
display: none; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package | |
{ | |
import flash.display.Sprite; | |
import flash.events.Event; | |
public class Main extends Sprite | |
{ | |
private var _child1:Sprite; | |
private var _child2:Sprite; | |
private var _child3:Sprite; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Creates a string by repeating a string a certain number of times | |
* @param str The String to repeat | |
* @param count The number of times to repeat the string | |
*/ | |
function repeatString(str:String, count:uint):String { | |
var output:Vector.<uint> = new Vector.<uint>(count, true); | |
return output.join("").replace(/0/g, str); | |
} |