もしかしてPhotoshop Elementsはカスタムシェイプ追加できないの!?
と思ったのですが、インターフェースがないだけで、Presetsの下に直接入れれば追加はできるようです。
自分の環境では以下のフォルダに.cshファイルを入れ、Photoshop Elementsを再起動したら追加されてました。
C:\Program Files (x86)\Adobe\Photoshop Elements 11\Presets\Custom Shapes
C:\Program Files (x86)\Adobe\Photoshop Elements 11\Presets\Custom Shapes
<script type="text/javascript">
window.addEventListener("load", postSize, false);
function postSize(e){
var target = parent.postMessage ? parent : (parent.document.postMessage ? parent.document : undefined);
if (typeof target != "undefined" && document.body.scrollHeight)
target.postMessage(document.getElementById("container").scrollHeight, "*");
}
</script>
<script type="text/javascript">
try { window.addEventListener("message", receiveSize, false); }
catch(e) { window.attachEvent("onmessage", receiveSize); }
var rcnt = 0, new_height = 0;
function receiveSize(e) {
new_height = Number(e.data)+30;
document.getElementById("target_iframe").style.height = new_height + "px";
}
</script>
/margin-top:-10px;
<li><a href="http://kawama.jp/"><div>text text text</div></a></li>
<li><a href="http://kawama.jp/"><div>text text text</div></a></li>
<li><a href="http://kawama.jp/"><div>text text text</div></a></li>
vertical-align: bottom;
テーブル名: HOGE
ID STR
1 A
1 B
1 C
2 C
2 D
というデータがあった場合、
SELECT ID , wmsys.wm_concat(STR) AS STR
FROM HOGE
GROUP BY ID
とSQLを打つと、
ID STR
1 A,B,C
2 C,D
と返ってくる