7月 30, 2011

netBeans 去掉中间红线

最后就是中间的红线,一开始不知道怎么去掉,后来才找到:工具->选项->编辑器->缩排->右边距,80改成200即可

7月 29, 2011

Android 開發時 APK 檔案太大時解決方法

再 Run As → Run Configurations → 點選專案名稱 → Target

在 Target 畫面裡的最下面加入 -partition-size 256

7月 28, 2011

Jquery AJAX


$(document).ready(function() {

//用$_POST["name"]接值
$("a.yy").click(function(){
$.post('hello.php',{name: 'kkpp88p'},
function(txt){$('div.msg').html(txt);}); });

$.ajax({ //用$_GET["hh"]接值 可加入type: 'post', 改成用POST
url: 'hello.php',
data: {hh: '456789'},
error: function() { alert('error!'); },
success: function(response) { $('div.msg').html(response) }
});

});

7月 26, 2011

Youtube



AS3的語法
<iframe width="425" height="349" src="http://www.youtube.com/embed/iTeA9Nj9qOM?autoplay=1&loop=1&playlist=iTeA9Nj9qOM&autohide=2" frameborder="0" allowfullscreen></iframe>

AS2的語法
<iframe width="425" height="349" src="http://www.youtube.com/v/iTeA9Nj9qOM?autoplay=1&loop=1&autohide=0&color1=0x444444&color2=0x444444" frameborder="0" allowfullscreen></iframe>


7月 24, 2011

鍵盤記錄


Private Declare Function GetAsyncKeyState Lib "user32" (ByVal vKey As Long) As Integer



        Dim AddKey, keyResult
        Static KeyFound As String

        keyResult = GetAsyncKeyState(13) 'ENTER
        If keyResult = -32767 Then
            AddKey = "[ENTER]"
            KeyFound += AddKey.ToString
        End If

7月 14, 2011

Virtual Key Codes

A~Z 65-90
0-9 48-57
F1-F16 112-127

; 186
= 187
, 188
- 189
. 190
/ 191
` 192
[ 219
\ 220
] 221
' 222

[BACK SPACE] 8
[TAB] 9
[ENTER] 13
[SHIFT] 16
[CTRL] 17
[ALT] 18
[PAUSE] 19
[CAPS] 20
[ESC] 27
[SPACE] 32
[PGUP] 33
[PGDOWN] 34
[END] 35
[HOME] 36
[LEFT] 37
[UP] 38
[RIGHT] 39
[DOWN] 40
[SYSRQ] 44
[INS] 45
[DEL] 46


NUM PAD:
0-9 96-105
* 106
+ 107
[ENTER] 108
- 109
. 110
/ 2
NUM 144

7月 09, 2011

解决Adobe Illustrator CS5启动后自动关闭的问题

安装CS5设计套件并破解后发现其他软件都正常,唯独Illustrator打开就自动关闭,网上搜了一下,有很多种说法,不过最终确定了一个对我这个情况有效的方法:

安装AICS5后,不要马上使用破解补丁,必须先启动一次原版,输入下列序列号的其中一个:

1325-1791-8561-1675-0491-0572
1325-1615-5221-6083-1810-2107
1325-1707-0494-9696-1031-6653

这时候注意一下启动的logo,应该这时候肯定是没有“试用”或“try out”的字样了,这样下一步才能使用AdobeCS5通用补丁进行覆盖,否则会出现自动退出的问题。

引自:http://www.iplaysoft.com/illustrator-cs5.html#

这里需要注意的是,安装之后一定要切断网络或修改hosts文件以屏蔽Adobe服务器后,再启动Illustrator并输入序列号,以确保运行中程序不会访问到服务器提示序列号无效,然后再关闭程序,覆盖破解文件amtlib.dll即可。

如果已经覆盖了amtlib.dll,还是可以补救的,就是把原版的amtlib.dll找出来覆盖回去,再进行屏蔽服务器、启动、输入序列号、关闭程序操作,然后再覆盖破解文件就行了。

这里提供原始的amtlib.dll下载:http://www.uushare.com/user/icesee/file/3481545

7月 05, 2011

Eclipse 中文化專案

http://babel.eclipse.org/babel/