2015年9月1日 星期二

[Mac]Fn按鍵啟用

BootCamp詳解:Mac中的Win7中的F1,F2等功能鍵


【整理】BootCamp介紹

中,簡介了BootCamp。

此處,專門將其中的,關於mac中安裝的win7中的,F1,F2等功能鍵的設置。



【Mac中的Win7中的F1,F2等功能鍵】

BootCamp幫助- > 在Mac 上使用Windows ->使用Apple 鍵盤的功能鍵


使用Apple 鍵盤的功能鍵

默認情況下,在Windows 中按下便攜式Mac 或較新的Apple 鍵盤上的功能鍵可控制硬件功能。Boot Camp 支持音量、亮度、鍵盤背光燈和媒體密鑰。

您可以使用功能鍵來控制應用程序功能,方法是按下Fn 鍵。例如,如果您打開iTunes 並按下Fn-F1,將打開“iTunes 幫助”。

使用“Boot Camp 控制面板”,您可以更改功能鍵的工作方式,從而使它們在默認情況下是控制應用程序功能,並且您必須按住Fn 鍵才能控制硬件功能。

若要更改功能鍵的工作方式:

單擊系統托盤中的Boot Camp 圖標,然後選取“Boot Camp 控制面板”。
單擊“鍵盤”。
選擇或取消選擇“將F1、F2 等鍵用作標準功能鍵”。
某些便攜式Mac 電腦有一組標有小數字的按鍵,它們可用作數字小鍵盤。若要使用數字小鍵盤,請按下Num Lock (F6) 鍵。其他字母鍵將被禁用,只有數字小鍵盤上的鍵起作用。再次按下Num Lock 以使鍵盤返回到正常工作狀態。

2015年8月19日 星期三

[CAD]利用字體對映避免一直替換字體檔案




字體檔下載:
http://www.solidworks.org.tw/forum.php?mod=viewthread&tid=24463

替換檔案教學:
http://ryan-tw.blogspot.tw/2013/06/autocad-chinesetshx.html

下載完字體檔後置放於Cad裡面的Fonts資料夾
常用的字體可以複製,並在前面加上"@"
(ex: @chinest.shx)

之後於映像檔"acad.fmp"
最後加入文字
ex:"AE;chineset.shx"
就是把"AE"這種字體,替換為"chineset.shx"這種字體

2015年5月24日 星期日

[Mac]在Bootcamp中無法使用藍芽耳機(羅技X300)

https://discussions.apple.com/thread/3755904?start=0&tstart=0

感謝Acer公司XD
請參考第三點

 3.- Thank again to Acer (and not to Apple) we can get also a fully functional profile in a hardware we have paid a lot of money for. BUT WARNING! here you SHOULD NOT install the drivers!. Install only the utility suit instead. Pay carefull attention or you will get a blue screen and you will need to uninstall the drivers in safe mode or even have to do a clean Windows install. Uninstall all your paired BT devices (except for Magic Mouse and or keyboard you can leave them paired)

          a.- Download the drivers


          b.- Unzip the file and explore the following folder

              \Bluetooth(4.0)_Atheros_7.4.0.96_W7x64\Bluetooth_Suite_win7.  Run Win764.exe or Win732 according to your OS.
               Let the software install and restart.

          c.- Pair your devices and enjoy!!!.

2014年10月16日 星期四

[PDF]各種處理SmallPDF

http://smallpdf.com/compress-pdf

From: http://free.com.tw/smallpdf/

Smallpdf.com 線上 PDF 轉檔、合併、分割、壓縮工具,解決各種 PDF 疑難雜症
我特別喜歡一些無須下載、註冊,也不用安裝軟體,就能完成我手邊工作的線上工具,例如先前介紹的 ILoveFile 一個網站搞定文件、圖片、音樂三大轉檔,如果你還有印象,我還介紹過 Smallpdf 免費壓縮 PDF 文件,減少檔案大小的網路服務,而現在 Smallpdf 更進一步,提供一系列與 PDF 有關的線上工具,轉檔、合併、分割和壓縮一應俱全。

2014年10月2日 星期四

[PDF Crack]線上破解PDF



http://www.crackmypdf.com/




網站的使用方法十分之簡單呢!只要按下 "選擇檔案",選取你想破解的 pdf 後,勾上 "I agree to the terms of service below",再按下旁邊的 "Unlock" 就可以了。 



http://magaling88.blogspot.tw/2012/09/crackmypdf-pdf.html

2014年3月9日 星期日

2014年1月12日 星期日

[CAD]標上座標

http://jack60455867.pixnet.net/blog/post/28025076-%E5%9C%A8%E5%9C%96%E4%B8%8A%E6%A8%99%E4%B8%8A%E5%BA%A7%E6%A8%99(x,y)




;DE command will dimension the xy coords of the endpoint of any line
; or arc with leader, with text automatic and inserted as X 0.3426 , Y 6.4356

(defun c:de ()
     (setvar "cmdecho" 0)
     (command "osnap" "end")
     (setq p1 (getpoint "Select line near endpoint"))
     (setq p2 (getpoint p1 "Select cen of Leader"))
     (setq px (rtos (nth 0 p1 ) 2 4))
     (setq py (rtos (nth 1 p1 ) 2 4))
     (setq txt (strcat "x " px " , " "y " py))
     (command "dim1" "leader" p1 p2 "" txt)
     (setvar "cmdecho" 1)
)



用(附屬應用程式)中的(記事本)輸入上面的程式....再另存新檔,檔名是DE.LISP




執行 AutoCAD.....
開啟舊檔....
點選(工具)...(載入應用程式)....DE.LISP
在指令列輸入....DE





移動滑鼠......點選線的端點....便會出現X,Y座標