2016.11.03(木)


山田泰夫さんからの指摘で Hideji Ataka Gallery が見られなくなっていることを知った。

Hideji Ataka Galleryhttp://www37.tok2.com/home/kojima/linka33/pg40.html

tok2.com に障害が発生している模様なので、linka 33 のコンテンツを webcrow.jp に増設することにした。


http://www37.tok2.com/home/kojima/linka33/pg40.html

http://qojima.webcrow.jp/site/linka33/index.html


http://qojima.webcrow.jp/site/linka33/pg40.html

http://qojima.webcrow.jp/site/linka33/pg84.html

http://qojima.webcrow.jp/site/linka33/pg85.html

http://qojima.webcrow.jp/site/linka33/pg86.html

http://qojima.webcrow.jp/site/linka33/pg87.html


2016.11.04(金)

Linka33@Fucyuu のボタン「to Old Site」のリンク先を変更する。(www42.tok2.com が障害にあっているため)

http://www42.tok2.com/home/qojima/linka33/index.html > qojima.webcrow.jp/site/old-linka33/index.html  に変更する。

106   カットした部分 http://www42.tok2.com/home/qojima/linka33/ 


old-linka33 フォルダをインストール。

/Volumes/Macintosh HD/Users/kojimatakumi/Documents/Localroot/qojima.webcrow/site/old-linka33/index.html




2016.11.09(水)


Automator :: 新規ファイル作成

property defaultFileName : "newFile"


on run {input, parameters}


try

  tell application "Finder" to set the sourceFolder to (folder of the front window) as alias

 on error

  -- no open folder windows

  set the sourceFolder to path to desktop folder as alias

 end try


  

 set flagFileExists to true

 set indexFile to ""


 repeat while flagFileExists

  set indexFile to (indexFile + 1)

  tell application "Finder"

   set flagFileExists to (exists file (defaultFileName & indexFile & ".txt") in sourceFolder)

  end tell

 end repeat


 try

  tell me

   activate

   set newFileName to text returned of (display dialog "Enter new file name" default answer "" & defaultFileName & indexFile)

  end tell

  if newFileName is not equal to "" & defaultFileName & indexFile then

   set defaultFileName to newFileName

  end if

  -- set newFile to "" & sourceFolder & newFileName & ".txt" 拡張子を付ける

  set newFile to "" & sourceFolder & newFileName


 

  if not flagFileExists then

   set touchScript to "touch " & quoted form of (POSIX path of newFile)

   set openScript to "open " & quoted form of (POSIX path of newFile)

   do shell script touchScript

   --do shell script openScript このコメントを外すとアプリを起動

  else

   display dialog "File already exists"

  end if

 end try

 return input

end run



2016.11.12(土)

Sierra 10.12.1 でのトラブル::アップルから電話があった。

Q :: ウインドウにタブが幾つか表示されているとき、そのうちの一つのタブをファインダー上にプルダウンすると極小ウインドウアイコンが表示され、

クイックを開放するとプルダウンしたタブが新しいウインドウになるが、このとき極小ウインドウがファインダー上に残ったままとなり且つ動かなくなる。

###この極小ウインドウが消えるようにするにはどうすればよいか###。

A  :: /Users/kojimatakumi/Library/Preferences/  に存在する以下の8つのファイルを削除しシステムを再起動する。

結果 :: 極小ウインドウがファインダ上に残ることはなくなった。

com.apple.finder.plist

com.apple.finder.plist.Cc1COZN

com.apple.finder.plist.CwbNkeb

com.apple.finder.plist.KKWIrnB

com.apple.finder.plist.LLCtTp8

com.apple.finder.plist.Ytk8cHS

com.apple.finder.plist.yYz7phJ

com.apple.finder.plist.Zy3Ij5l


再起動後の /Users/kojimatakumi/Library/Preferences/ には以下の通り9つのファイルが生成されていることが確認された。

com.apple.finder.plist

com.apple.finder.plist.8gSQCNL

com.apple.finder.plist.78MjhoQ

com.apple.finder.plist.78MjhoQ 2

com.apple.finder.plist.BixMCQr

com.apple.finder.plist.HOKvhFE

com.apple.finder.plist.NjWrIWx

com.apple.finder.plist.wqBx0mS

com.apple.finder.plist.yfXYDb7


疑問 :: ファイルがなぜ9つになり1つ増えたのだろうか。


2016.11.12(木)


XtraFinder :: Finder メニューに項目を追加」パスをコピー > デフォルト: パス を設定したが機能していないことが分かった。

      最近までは機能していたのだが、今日使ってみると機能していなかった。

            そこで、別の処置として「option + 右クリック」で表示される「”xxxxxx”パス名をコピー」を選択しペーストすることにした。

      これで ”xxxxxx” のパスがコピーできてペーストすることができる。