맥용 바이러스 백신 관련 자료
http://antivirus.about.com/od/macintoshresource/tp/macvirusfaqs.htm
맥이 바이러스에 강한 이유 등
Tuesday, June 22, 2010
Friday, June 18, 2010
Snow Leopard and Maya : not compatible
Snow Leopard and Maya (2009 or 2010)
graph editor 의 refresh 가 잘 안되는 문제 등으로 사용하기 힘듬
graph editor 의 refresh 가 잘 안되는 문제 등으로 사용하기 힘듬
Labels:
문제해결
Thursday, June 3, 2010
Quicktime Pro 에서 동영상 회전하기
질문 : 가로로 누운 채 플레이되는 영상을 회전하고 싶은데 어떻게 하나?
답 :
Window > Show Movie Properties (Command + J) 로 가서
Video Track 에 보면
Visual Settings 탭에
Filp / Rotate 라는 항목이 있는데 여기서 회전해주고
동영상을 다시 저장하면 된다.
레퍼런스 :
Rotating a video with QT Pro
답 :
Window > Show Movie Properties (Command + J) 로 가서
Video Track 에 보면
Visual Settings 탭에
Filp / Rotate 라는 항목이 있는데 여기서 회전해주고
동영상을 다시 저장하면 된다.
레퍼런스 :
Rotating a video with QT Pro
Labels:
동영상
Tuesday, June 1, 2010
AppleScript의 repeat 문에서 break 에 해당하는 것은?
질문 : AppleScript의 repeat 문에서 break 에 해당하는 것은?
답 : exit repeat 하면 된다
답 : exit repeat 하면 된다
Labels:
AppleScript
AppleScript에서 string reverse 하기
reverse of "ABCDEF"
-- Error
characters of "ABCDEF"
-- Returns: {"A", "B", "C", "D", "E", "F"}
reverse of characters of "ABCDEF"
-- Returns: {"F", "E", "D", "C", "B", "A"}
reverse of characters of "ABCDEF" as text
레퍼런스 :
http://applescripter.blogspot.com/2007/03/applescript-reverse-of-string.html
-> 그런데 함수 내에서 이렇게 해서 리턴해주면 모든 글자 사이에 space가 생겨버리는 문제가 있다.
다음과 같이 하면 잘된다. 더 간단한 코드가 있을진 모르지만 귀찮아서 이걸로 그냥 씀.
on myGetReverseText(str)
-- Error
characters of "ABCDEF"
-- Returns: {"A", "B", "C", "D", "E", "F"}
reverse of characters of "ABCDEF"
-- Returns: {"F", "E", "D", "C", "B", "A"}
reverse of characters of "ABCDEF" as text
레퍼런스 :
http://applescripter.blogspot.com/2007/03/applescript-reverse-of-string.html
-> 그런데 함수 내에서 이렇게 해서 리턴해주면 모든 글자 사이에 space가 생겨버리는 문제가 있다.
다음과 같이 하면 잘된다. 더 간단한 코드가 있을진 모르지만 귀찮아서 이걸로 그냥 씀.
on myGetReverseText(str)
set A to characters of strend myGetReverseText
set result_ to "" as text
set n to (length of A)
repeat with i from 1 to n
set ch to (item (n - i + 1) of A)end repeat
set result_ to result_ & ch
return result_
Labels:
AppleScript
Subscribe to:
Posts (Atom)