月度存档: 6 月 2014

As3渐变色填充工具

http://https://https://amyflash.com/as3CreatGradient.swf

加快登陆速度-去除加载谷歌字体

// 去除加载谷歌字体
[code]
class Disable_Google_Fonts {
public function __construct() {
add_filter( ‘gettext_with_context’, array( $this, ‘disable_open_sans’ ), 888, 4 );
}
public function disable_open_sans( $translations, $text, $context, $domain ) {
if ( ‘Open Sans font: on or off’ == $context && ‘on’ == $text ) {
$translations = ‘off’;
}
return $translations;
}
}
[/code]

as3里退出函数

flash.system.fscommand(‘quit’);