This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/***************************************** | |
* AR勉強会 サンプル4 | |
* | |
* Processing2.2.1 with nyar4psg 2.1.0 | |
* | |
* Hiroyuki Nakano | |
* 2015.2.3 | |
*****************************************/ | |
import processing.video.*; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/***************************************** | |
* AR勉強会 サンプル3 | |
* | |
* Processing2.2.1 with nyar4psg 2.1.0 | |
* | |
* Hiroyuki Nakano | |
* 2015.2.3 | |
*****************************************/ | |
import processing.video.*; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/***************************************** | |
* AR勉強会 サンプル2 | |
* | |
* Processing2.2.1 with nyar4psg 2.1.0 | |
* | |
* Hiroyuki Nakano | |
* 2015.2.3 | |
*****************************************/ | |
import processing.video.*; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/***************************************** | |
* AR勉強会 サンプル1 | |
* | |
* Processing2.2.1 with nyar4psg 2.1.0 | |
* | |
* Hiroyuki Nakano | |
* 2015.2.3 | |
*****************************************/ | |
import processing.video.*; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sub MakeProgressBar() | |
Const r As String = "00" '色・RGB値のR | |
Const g As String = "99" '色・RGB値のG | |
Const b As String = "00" '色・RGB値のB | |
Const pbH As Long = 10 '高さ | |
Const pbBG As Single = 0.6 '背景の透過性 | |
Dim i As Long | |
Dim s As Shape |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function narabikae(){ | |
//配列 | |
var number = [500,4000,30,20000]; | |
for (var i=0;i<number.length;i++) { | |
//配列をソート | |
number.sort( | |
function(a,b){ | |
if( a < b ) return -1; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function onoffSelect_focus(obj){ | |
var userAgent = window.navigator.userAgent.toLowerCase(); | |
if(userAgent.indexOf("msie") > -1) { | |
obj.focus(); | |
obj.select(); | |
}else if(userAgent.indexOf("firefox") > -1) { | |
obj.focus(); | |
obj.select(); | |
}else if(userAgent.indexOf("opera") > -1) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<textarea onfocus="onoffSelect_focus(this);" onclick="onoffSelect_click(this);"></textarea> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/***************************************** | |
* 10000までの数(iPad用) | |
* | |
* Hiroyuki Nakano | |
* 2013.2.3 | |
*****************************************/ | |
//フォントの設定 | |
PFont font=createFont("FFScala", 32); | |
PFont font1=createFont("MS Gothic", 32); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set /P URL=URLを入力してください: | |
start "" "C:\Program Files\Internet Explorer\iexplore.exe " %URL% | |
start "" "C:\Program Files\Mozilla Firefox\firefox.exe " %URL% | |
start "" "C:\Program Files\Safari\Safari.exe " %URL% | |
start "" "C:\Program Files\Google\Chrome\Application\chrome.exe " %URL% |
NewerOlder