Desktop Aktivitäten filmen? Geht das?

M

MacLeud

Mitglied
Thread Starter
Dabei seit
21.06.2004
Beiträge
82
Reaktionspunkte
0
Hallo Leute.

Ich möchte gerne Arbeiten, die ich am Mac vornehme (Photoshoparbeiten, Programmabläufe etc.) zwecks Erstellung einiger Tutorien als .mpeg Film aufnehmen. Weiss jemand, ob's da spezielle Programme dafür gibt oder wie man das sonst bewerkstelligen kann ?

Danke für alle Tipps.

LG, Mario.
 
Hallo MacLeud,

Snapz ProX „filmt“ und speichert als Quicktime.
 
TAU - das ist haargenau, was ich gesucht habe. DANKE !!! Dicker +Punkt !!!
LG, Mario.
 
$69...nicht schlecht :roll:
 
Hastne Alternative? :D
 
Zuletzt bearbeitet von einem Moderator:
shift :D


nein, alt
 
lol ;)

thx

EDIT: Geht bei mir aber im Finder nicht. Ablegen im Dock ja, aber nicht wieder rausholen...

Bei mehreren Safarifenstern funzt es aber einwandfrei...

seltsam :rolleyes:

Naja, will nicht länger OT fahren :)
 
Zuletzt bearbeitet:
hier gehts (10.3.9) edit: ah nein doch nicht
nonok15x18.gif
 
Zuletzt bearbeitet:
AFAIR geht das nur mit Cocoa Applikationen.
 
Und wie kann man die Fenster auf diese Weise nebeneinander anordnen?
 
........ hätte ja sein können, dass das per Tastenkombination möglich ist.
 
Kann man sich bestimmt basteln. Oder ein AppleScript ein wenig umschreiben, wie z. B.:

Code:
-- Deine Auflösung einsetzen
property monitor_width : 1280
property monitor_height : 854

set the startup_disk to "HD" (Name deiner Festplatte)

tell application "Finder"
	activate
	set visible of (every process whose visible is true and frontmost is false) to false
	-- Unteres Fenster
	set this_window to make new Finder window
	set the target of this_window to the startup_disk
	set the bounds of this_window to {0, (monitor_height * 0.66) div 1, monitor_width, monitor_height}
	set the current view of this_window to column view
	-- Oberes Fenster
	set this_window to make new Finder window
	set the target of this_window to the startup_disk
	set the bounds of this_window to {0, (monitor_height * 0.33) div 1, monitor_width, (monitor_height * 0.66) div 1}
	set the current view of this_window to column view
end tell

Das macht zwei Finderfenster mit root-Verzeichnis deines Macs auf, die sich die unteren zwei Drittel deines Bildschirms teilen. Ein wenig tüfteln, dann hast du das gewünschte Ergebnis.

Gruß,
Dylan
 
Oder für Safari – drei Fenster in etwa so wie im Beispielfilm dargestellt nebeneinander anordnen:

Code:
tell application "Safari"
	set bounds of 1st window to {0, 0, 400, 800}
	set bounds of 2nd window to {400, 0, 800, 800}
	set bounds of 3rd window to {800, 0, 1200, 800}
end tell

Gruß,
Dylan


PS: Geht bestimmt noch viel komfortabler – Andi? ;)
 
Update: Hier eine Alternative! Screen Mimic 1.2. Kann auch Flash exportieren! Läuft allerdings nur unter Tiger.
 
Zurück
Oben Unten