PC

工事中すいません。ほとんどたけぞーの個人的メモです。

OhmyloveにてWindows XPでlogicoolのカメラを使っていてサイケデリックな映像になってしまう方の対処法

Windows2000でMS-DOSのシステムディスクを作成する方法

用意するもの
・Windows2000のCD-ROM
・フロッピーディスク1枚(Format済のもの)

作成手順
1.コマンドプロンプトで
 c:\>q:
 q:\>cd VALUEADD\3RDPARTY\CA_ANITV
 q:\VALUEADD\3RDPARTY\CA_ANTIV>makedisk a:
2.確認画面が表示されたら任意のキーを入力するとフロッピーディスクに書き込みが始まる。
3.終了後、フロッピーディスク内の「MSDOS.SYS」「COMMAND.COM」「IO.SYS」以外のファイルを削除する。
4.完成。

Windows2000起動ディスクの作成方法

用意するもの
・Windows2000のCD-ROM
・フロッピーディスク4枚(Format済のもの)

作成手順
1.PCを立ち上げる。
2.Windows2000のCD-ROMとフロッピーディスクをそれぞれのドライブに入れる。
3.「ファイル名を指定して実行」ダイアログを開く。
4.「*:\bbtdisk\makebt32.exe a:」と入力する。*はCD-ROMドライブ番号。
5.画面の指示に従いながら作業する。
6.完成。

IE5のお気に入りに表示されるアイコンを変更する方法

favicon.ico がパソコンに取り込まれたあとは、サーバー側の favicon.ico を変更してもすぐには変更が反映されないようです。どのようなタイミングで削除、更新されるのか調べている人もたくさんいますが、

上記の操作を行ったところ、サーバーから favicon.ico ファイルを取得しなおしたようです。

一度 favicon.ico を設置してしまうと画像を変更しても直ぐに反映されないので、その時はSafe モードで Windows を起動してから再起動すると変更されるというレポートもあります。。

Windows標準ツールのみでハードディスクを乗せ換える方法

桜吹雪のJava script

ここから頂きました。どうもありがとうございました。
http://www.altan.hr/snow/

<body>タグのあとに下記のスクリプトを挿入します。

<SCRIPT language="JavaScript1.2">
<!-- Original: Altan (snow@altan.hr) -->
<!-- Web Site: http://www.altan.hr/snow -->
<!-- ----------------------------------- -->
<!-- Customised by Chihaya-Naruse -->
<!-- 降らせる画像の種類をランダムに選択できます -->

<!-- configuration area start -->
var no = 12; // flake number
var speed = 16; // smaller number moves the snow faster
var width = 16; // image width
var height = 15; // image height
var flake_set = 888;// 999=random_all, 888=random_select, number=select
var flake_num = 4; // 使用する画像種類の「数」
flake = new Array( flake_num ); // この行は編集しない
flake[0] = "./image/floi60.gif"; // 画像の指定1個目
flake[1] = "./image/floi61.gif"; // 画像の指定2個目
flake[2] = "./image/floi62.gif"; // 画像の指定3個目
flake[3] = "./image/floi63.gif"; // 画像の指定4個目
<!-- configuration area end -->

if( flake_set == 888 ){
// ランダム選択 (random_select)
var select = Math.round( flake_num * Math.random() - 0.5 );
var snowflake = flake[select];
}else{
// 指定 (select)
var snowflake = flake[flake_set];
}
var ns4up = (document.layers) ? 1 : 0; // browser sniffer
var ie4up = (document.all) ? 1 : 0;
var dx, xp, yp; // coordinate and position variables
var am, stx, sty; // amplitude and step variables
var i, doc_width = 1000, doc_height = 1000;
if (ns4up) {
doc_width = self.innerWidth;
doc_height = self.innerHeight;
} else if (ie4up) {
doc_width = document.body.clientWidth;
doc_height = document.body.clientHeight;
}
dx = new Array();
xp = new Array();
yp = new Array();
am = new Array();
stx = new Array();
sty = new Array();
for(i = 0; i < no; ++ i){
dx[i] = 0; // set coordinate variables
xp[i] = Math.random()*(doc_width-50); // set position variables
yp[i] = Math.random()*doc_height;
am[i] = Math.random()*20; // set amplitude variables
stx[i] = 0.02 + Math.random()/10; // set step variables
sty[i] = 0.7 + Math.random(); // set step variables

// 複数種類の小片をランダムに設定する処理。-----
if( flake_set == 999 ){
// 1個づつランダム選択 (random_all)
select = Math.round( flake_num * Math.random() - 0.5 );
snowflake = flake[select];
}
// -----------------------------------

if(ns4up){ // set layers
if(i == 0){
document.write("<PeelLayer name=\"dot"+ i +"\" left=\"15\" top=\"15\" visibility=\"show\"><img src=\"" + snowflake + "\" border=\"0\" width=" +width+ " height=" +height+"></PeelLayer>");
}else{
document.write("<PeelLayer name=\"dot"+ i +"\" left=\"15\" top=\"15\" visibility=\"show\"><img src=\"" + snowflake + "\" border=\"0\" width=" +width+ " height=" +height+"></PeelLayer>");
}
}else if(ie4up){
if(i == 0){
document.write("<div id=\"dot"+ i +"\" style=\"POSITION: absolute; Z-INDEX: "+ i +"; VISIBILITY: visible; TOP: 15px; LEFT: 15px;\"><img src=\"" + snowflake + "\" border=\"0\" width=" +width+ " height=" +height+"></div>");
}else{
document.write("<div id=\"dot"+ i +"\" style=\"POSITION: absolute; Z-INDEX: "+ i +"; VISIBILITY: visible; TOP: 15px; LEFT: 15px;\"><img src=\"" + snowflake + "\" border=\"0\" width=" +width+ " height=" +height+"></div>");
}
}
}

function snowNS() { // Netscape main animation function
for (i = 0; i < no; ++ i) { // iterate for every dot
yp[i] += sty[i];
if (yp[i] > doc_height-50) {
xp[i] = Math.random()*(doc_width-am[i]-30);
yp[i] = 0;
stx[i] = 0.02 + Math.random()/10;
sty[i] = 0.7 + Math.random();
doc_width = self.innerWidth;
doc_height = self.innerHeight;
}
dx[i] += stx[i];
document.layers["dot"+i].top = yp[i];
document.layers["dot"+i].left = xp[i] + am[i]*Math.sin(dx[i]);
}
setTimeout("snowNS()", speed);
}

function snowIE() { // IE main animation function
for (i = 0; i < no; ++ i) { // iterate for every dot
yp[i] += sty[i];
if (yp[i] > doc_height-50) {
xp[i] = Math.random()*(doc_width-am[i]-30);
yp[i] = 0;
stx[i] = 0.02 + Math.random()/10;
sty[i] = 0.7 + Math.random();
doc_width = document.body.clientWidth;
//doc_height = document.body.clientHeight;
}
dx[i] += stx[i];
document.all["dot"+i].style.pixelTop = yp[i];
document.all["dot"+i].style.pixelLeft = xp[i] + am[i]*Math.sin(dx[i]);
}
setTimeout("snowIE()", speed);
}
function random() {
var curdate = new Date();
var work = curdate.getTime() + curdate.getDate();
return ((work * 29 + 1) % 1024) / 1024;
}

if(ns4up){
snowNS();
}else if(ie4up){
snowIE();
}
</SCRIPT>


HOME