Mac でも iTunes で今聞いている曲を Blog エントリに掲載

Hacking the Hack #92: iTunes COM API で今聞いている曲を Blog エントリに掲載 を見て、Mac でもやってみました。もちろん AppleScript で。

property mtUrl : "https://app.cocolog-nifty.com/t/app/weblog/post"
property blogID : 21024

tell application "iTunes"
	set theTrack to current track
	set strNowPlaying to "Now Playing: " & artist of theTrack & " - " & name of theTrack & " (" & album of theTrack & ")"
end tell

set urlNewEntry to mtUrl & "?blog_id=" & blogID

tell application "Safari"
	activate
	make new document
	set URL of document 1 to urlNewEntry
	-- call the sub-routine and pass the maximum number of seconds to wait for the page to be loaded:
	if page_loaded(20) of me is false then error numner - 128
	do JavaScript "document.forms['entry_form'].text_more.value = ¥"" & strNowPlaying & "¥"" in document 1
end tell

(* 
	from http://www.apple.com/applescript/safari/jscript.01.html
*)
on page_loaded(timeout_value)
	delay 2
	repeat with i from 1 to the timeout_value
		tell application "Safari"
			if (do JavaScript "document.readyState" in document 1) is "complete" then
				return true
			else if i is the timeout_value then
				return false
			else
				delay 1
			end if
		end tell
	end repeat
	return false
end page_loaded

結果はこんな感じ↓

» Continue reading

| | Comments (1) | TrackBack (0)

『どこでもいっしょ -トロといっぱい』の初回特典プレゼントキャンペーン!

ファミ通.com / 『どこでもいっしょ -トロといっぱい』の初回特典プレゼントキャンペーン!

『どこでもいっしょ -トロといっぱい』の初回特典プレゼントキャンペーン!

» Continue reading

| | Comments (0) | TrackBack (1)

CASSHERN

さて、キル・ビルの後に続けて観たキャシャーンだ。
きっかけは、映画館で見た予告編。別にアクションが凄そうとかそういうのではないのだけれど、何やらただならぬ雰囲気がどうにも気にかかって。もちろん原作は世代が違うので全く知らない。
前情報はあと監督が旦那だってことくらいで、誰が出るとかもほとんどノーチェック。
(もしあなたがまだこの作品を見ていないのであれば、以下は読まずに直ちに映画館へ進め。)

» Continue reading

| | Comments (3) | TrackBack (0)

KILL BILL Vol.2

Vol.1 は、端的にいってしまうと、「飛行機に刀ホルダーがある映画」だったけれ...

» Continue reading

| | Comments (1) | TrackBack (0)

APPLESEED

今年の春はやたら面白そうな映画が揃っているので、GW前後で見まくってしまおう。 ...

» Continue reading

| | Comments (0) | TrackBack (0)

#10041 Main Street

昨日八重洲のクリックブリックにて購入。 そしたら。

» Continue reading

| | Comments (1) | TrackBack (0)

洋楽国内盤CDを全面購入禁止にする方向で

このへんとかこのへんとかこのへんとかこのへんとか読んで事の重大さを知る。 とにか...

» Continue reading

| | Comments (0) | TrackBack (2)

暮しの手帖がかっこいい

まずは 最新号の表紙を みてみて くだ さい。 激かっこいいじゃないですかっ。 ...

» Continue reading

| | Comments (0) | TrackBack (0)

東京メトロのマーク

東京メトロの新しいマーク、何かに似てるんだよなぁ、とずっと思ってたんだけど、思い...

» Continue reading

| | Comments (0) | TrackBack (0)

Jagermeister

ハーブのリキュールだそうな。味見がわりにちびボトルを買ってみた。トニックウォータ...

» Continue reading

| | Comments (1) | TrackBack (0)

«Eclipse3.0のCVS Encoding設定パッチ