1. Wildcards aren't currently supported. I added this bit of code to my preloader template to do that on my end:
2. The URL shown on the sitelock screen is the first one in the list, but clicking will attempt to open the entire sitelock string which will fail if there is more than one URL.
3. I don't like how small the text is. In my template I changed that using this code:
Code: [Select]
var r:EReg = new EReg(site, "");
if (r.match(currURL))
{
ok = true;
}
2. The URL shown on the sitelock screen is the first one in the list, but clicking will attempt to open the entire sitelock string which will fail if there is more than one URL.
3. I don't like how small the text is. In my template I changed that using this code:
Code: [Select]
var txtFormat = new openfl.text.TextFormat(null, 25);
txt.setTextFormat(txtFormat);