Author Archives: takezawa

セキュリティサンドボックス侵害の回避策

http://www.macromedia.com/support/documentation/jp/flashplayer/help/settings_manager04.html にアクセス。「常に許可」でルートドラ … Continue reading

Posted in ActionScript | Leave a comment

drawImage(image, sx, sy, sw, sh, dx, dy, dw, dh)

画像のwidth, heightがキャンバスのサイズや描画範囲よりも超えていると何も描画されないっぽい。chrome またdrawImageは画像がロード済みでないと描画されない。そして何のwarningも出さない・・・ … Continue reading

Posted in HTML5 canvas | Leave a comment

Unable to get image data from canvas because the canvas has been tainted by cross-origin data.

ローカル環境だとエラーになるらしい。 cf.http://stackoverflow.com/questions/8688600/context-getimagedata-on-localhost

Posted in HTML5 canvas | Leave a comment

HTML5 canvas コピペ用

スタイル指定の基本 = "white"; = "#FFFFFF"; = "rgba()" 塗りつぶしスタイル ctx.fillStyle = スタイル; 線スタイル ctx.strokeStyle = スタイル; 線の描 … Continue reading

Posted in HTML5 canvas | Leave a comment

HTML5 canvas 変形関数の考え方

変形関数は既に描画しおわったものに対してはなんら影響を与えない。 描画の際に基準とする枠を移動・回転・変形するイメージ。 変形した状態はずっと保持されてしまうので逐一save,restoreするのが吉。 簡単に言うと筆を … Continue reading

Posted in HTML5 canvas | Leave a comment

NumberFormat javascriptで数値にカンマの追加

var numberFormat = function(num){ return num.toString().replace(/^\d+[^\.]/, function(t){return t.replace(/([\ … Continue reading

Posted in javascript | Leave a comment

Windows Azure SDKのセットアップ(v1.6)

Windows Azure ダウンロード http://msdn.microsoft.com/ja-jp/windowsazure/cc974146 から 必要なものが 1 つにまとめられたパッケージをダウンロードする … Continue reading

Posted in 未分類 | Leave a comment

Excel Tips

文字コードがUTF-8なCSVの読みこみ テキストエディタなどでMS932に変換してから読み込むのが正攻法だが、単にエクセルで表示したいだけならファイル内容をコピーしてエクセルに貼り付けてから「データ>区切り位置」で変換 … Continue reading

Posted in Excel, Tips | Leave a comment

Excel VBA Tips

アクティブワークブックの存在するフォルダパス(¥なし) ActiveWorkbook.Path 画像貼り付け(ブック内に保存) シートオブジェクト.Shapes.AddPicture( _ Filename:=ファイルパ … Continue reading

Posted in Excel VBA, Tips | Leave a comment

数字とアルファベットの相互変換

Function Abc2Num(abc) Abc2Num = Range("$" & abc & "$1").Column End Function Function Num2Abc(num) Num2 … Continue reading

Posted in Excel VBA | Leave a comment