Bài đăng

Đang hiển thị bài đăng từ tháng 6 28, 2009

Thủ thuật trong window 7

1. Chống phân mảnh siêu tốc Dữ liệu lưu trên ổ cứng thường bị phân tán sau một thời gian hoạt động. Điều này khiến quá trình hoạt động, tốc độ truy xuất dữ liệu của hệ thống sẽ bị giảm đi và chống phân mảnh ổ cứng là việc cần làm thường xuyên. Tuy nhiên đây lại là một công việc khó chịu trên các phiên bản Windows trước bởi nó mất khá nhiều thời gian. Microsoft đã cải thiện vấn đề này trên Windows 7 bằng việc tăng tốc quá trình chống phân mảnh đồng thời cho phép người dùng thực hiện thao tác này trên nhiều phân vùng ổ cứng cùng một lúc. Tất cả những gì người dùng cần làm là gõ dòng lệnh: defrag /c /h /u /r Trong đó /r là để chống phân mảnh nhiều ổ cứng cùng một lúc, /h để tăng tốc quá trình này, /u để hiển thị toàn bộ quá trình đang diễn ra. 2. Khởi động IE nhanh hơn Một số add-on trên trình duyệt Internet Explorer (IE) khởi động khá ì ạch khiến quá trình khởi động và làm việc của IE cũng từ đó chậm chạp theo. Kể từ phiên bản IE 8 người dùng đã có thể can thiệp vào vấn đề này. Chọn menu

Thủ thuật trong window 7: Remove WaterMark: "Evaluation Copy"

Remove WaterMark: "Evaluation Copy" http://www.mediafire.com/?djnam3zmxmb Tắt UAC, làm nhanh bằng cách: vào SearchBox của StartMenu gõ: uac rồi Enter, kéo thanh chạy xuống dưới cùng rồi OK. Rồi chạy phiên bản thích hợp trong file mới download về.
Start and stop the server in Linux Start, stop, or restart Flash Media Server 1. Log in as a root user. 2. Change to the directory where the server is installed. 3. Open a shell window and type one of the following: •./fmsmgr server start •./fmsmgr server stop •./fmsmgr server restart Start, stop, or restart the Administration Server 1. Log in as a root user. 2. Change to the directory where the server is installed. 3. Open a shell window and type one of the following: •./fmsmgr adminserver start •./fmsmgr adminserver stop •./fmsmgr adminserver restart Start, stop, or restart Flash Media Server using the command line 1. * cd / . 2. Enter ./server [start | stop | restart]. Start, stop, or restart the Administration Server using the command line 1. * cd / . 2. Enter ./adminserver [start | stop | restart]. So I SSH’ed into the server … and I run the Linux commands. The fmsmgr adminserver restart command worked. I therefore

Shared object & Other information

Shared object Shared object that you are probably English ha ~ SharedObject, there are two types of flash en sharedObject, local sharedobject (LSO) and remote sharedobject (RSO), which is the local share and remote sharing, remotediscussion, But before you go to learn the best understanding of local, good for you ... RSO initialization with the server need to establish a connection, continued the previous section, we first establish a connection with the server // Initialize to use a remote shared-channel nc var myNC = new NetConnection(); myNC.onStatus = function(info) { if (info.code == "NetConnection.Connect.Success") { // Success using this nc initialization rso initRSO(this); } }; Like with the previous code, just connect a number of successful initRSO () function, can not read the back to re-take a look at the first... function initRSO (NC){ /* On the server to establish myRSO.fso paper, the first two parameters specify nc channel, the first three

Sample FMS: Online list for FMS

Hình ảnh
application.onAppStart=function(){ trace("------onAppStart----"); /* Khởi tạo danh sách người dùng online. */ application.onlineList=[]; } application.onConnect=function(newClient,IDNUM,IDPASS){ trace("------user onconnected------"); newClient.IDNUM=IDNUM; /* Thêm người dùng này vào danh sách người online */ application.onlineList.push(IDNUM); application.acceptConnection(newClient); for(var i=0;i /* Gửi danh sách người online bằng cách gọi hàm onlineList và truyền danh sách đến từng người. */ application.clients[i].call("onlineList",null,application.onlineList); } } application.onDisconnect = function (newClient){ trace("------user disconnected------"); for(var i=0;i<=application.clients.length;i++){ if(application.onlineList[i]==newClient.IDNUM){ application.onlineList.splice(i,1); } } for(var i=0;i /* Gửi danh sách người online bằng cách gọi hàm onlineList và truyền danh sách đến từng người. */ application.clients[i].call("onl

server side Authoricator

server side Authoricator: file: main.asc load("N2Authoricator.asc") application.onAppStart = function() { this.authoricator = new N2Authoricator("allowedHTMLdomains.txt","allowedSWFdomains.txt"); } application.onConnect = function(p_client) { this.authoricator.checkClient(p_client) ? this.acceptConnection(p_client) : this.rejectConnection(p_client) } N2Authoricator.asc /* ------------------------------------------ allowedHTMLdomains.txt and allowedSWFdomains.txt ------------------------------------------ # This configuration file can be used to specify the domains which are # allowed to host an HTML file which can possibly embed a client .swf file # for Live (out of the box) application. By default, this authentication is # disabled # # - There can be at most one domain entry per line e.g. to add domains # http://myhost1.com and https://www.abc.myhost2.com the corresponding entries should be: # # myhost1.com # www.abc.myhost2.com # # NOTE: The

Following is the netstatus handler for one net stream

Following is the netstatus handler for one net stream private function nsStatus(e:NetStatusEvent):void { trace("ns status : ", e.info.code); switch (e.info.code) { case "NetStream.Play.Start" : ns.pause(); trace("ns started playing"); break; case "NetStream.Buffer.Full" : nsBuffered = true; if (ns2Buffered == true) { ns.resume(); ns2.resume(); } else { ns.pause(); } trace("NS Buffer Full"); //ns.bufferTime=expandedBufferLength; break; case "NetStream.Buffer.Empty": nsBuffered = false; ns.pause(); //ns.bufferTime=startBufferLength; break; case "NetStream.Buffer.Flush": break; } } similarly, i am doing for other stream. Also, i am running one timer to update the seek bar. in the timer event handler, i have used one condition to check both nsBuffered and ns2Buffered flag to resume t

SharedObject.mark()

http://fmsguru.com/forum/messages.cfm?threadid=B9D09A82-C160-6409-743D4D599CF927B6 I am trying to restart a pending project and it is a bit hard ;) So I want to implement the SharedObject.mark() functionnality to synchronize several properties in a single call, but I am missing something on the client side: Here is the example of the fms doc: Example The following example calls the mark() method twice to group two sets of shared object property updates for clients: var myShared = SharedObject.get("foo", true); myShared.lock(); myShared.setProperty("name", "Stephen"); myShared.setProperty("address", "Xyz lane"); myShared.setProperty("city", "SF"); myShared.mark("onAdrChange", "name"); myShared.setProperty("account", 12345); myShared.mark("onActChange"); myShared.unlock(); The following example shows the receiving client-side script: connection = new NetConnection(); connection.c

Thư đã gửi thành công!!!

Thông tin bạn gửi tôi đã nhận được. Tôi sẽ trả lời bạn trong thời gian sớm nhất có thể. Rất vui được bạn ghé blog của tôi. Thông tin trên webblog này có thể qui phạm quyền tác giả. Tôi chỉ ghi chép lại như là tài liệu của riêng mình. Không vì mục đích kinh tế nào cả? Tôi có thể xóa bài nếu có tác giả nào phàn nàn những thông tin mà tôi ghi trên web này. Chúc bạn một ngày tốt lành!!!