Archive for January, 2011

Eger bilgisayarinizda PresentationFontCache.exe‘nin CPU kullanimi asiri yuksek ise c:\Windows\ServiceProfiles\LocalService\AppData\Local\FontCache4.0.0.0.dat dosyasini silip Task Manager‘dan PresentationFontCache.exe sonlandirarak yeniden baslamasini saglayin, duzelecektir.

building gnome-shell

28, Jan 2011

openSuse uzerinde yeni gnome i test etmek istedim. Kurarken aldigim hata mozilla-js >= 1.9.2 is required. Eksik olan mozilla-js192 gibi gorunsede cozumu sudo zypper install mozilla-xulrunner192-devel ile eksik paketi kurmak.

Sprite nesnesi ici bosken boyutlandirilamiyor. Once bir graph olusturup ondan sonra boyutlandirmalisiniz, asagidaki gibi. public class ClassName extends Sprite { private static const WIDTH:int = 300; private static const HEIGHT:int = 96; public function ClassName() { this.x = 0; this.y = 0; this.graphics.beginFill(0xffffff, 0.5); this.graphics.drawRect(0, 0, WIDTH, HEIGHT); this.graphics.endFill(); this.width = WIDTH; this.height = HEIGHT; […]

Javascript ile querstring degerlerini dizi halinde almak icin asagidaki fonksiyonu kullanabilirsiniz. function getQueryString(href) { var vars = [], hash; if (typeof href == ‘undefined’) { href = window.location.href; } var hashes = href.slice(href.indexOf(‘?’) + 1).split(‘&’); for (var i = 0, len = hashes.length; i < len; i++) { hash = hashes[i].split('='); vars.push(hash[0]); vars[hash[0]] = hash[1]; […]


top