Luis wrote:I'm not an Mac user, but I think that Mac users have to do something else for showing console window.
FYI - Mac users can get access to the Console for processing and error messages by starting the Blender App from the Console ("Terminal" or "XTerm" applications) command line. The easiest way is to cd to the Blender application's directory, for example:
% cd /Users/[username]/blender/blender.app/Contents/MacOS/
(where [username] is your "home" directory - your path may vary - the "%" here just represents the Unix prompt - do not type it). Remember that "blender.app" on the Mac is not the application, but a folder that contains a bunch of things, including the application ("blender") and a lot of Python scripts (in the /.blender/scripts/ directory)!
Then you can launch Blender at the command line:
% ./blender
THe Blender app will start up as if you double-clicked it, but you will be able to watch what is going on "behind the scenes" in the Terminal or XTerm window that lauched the app. You may have to resize the Blender window to fit the screen - you can do this in the "Window" OSX menu bar - drop down and select "Zoom".
To avoid doing this "cd" drill every time, you can write a short AppleScript that automates the command line instruction and make it a little desktop application (or place it in the Dock). Then, a double-click on the script's icon will open Terminal, launch Blender and, away you go! The AppleScript command to tell the application Terminal to run a command line string of text is "do script". This is the text from the Terminal dictionary:
---
do script: Run a UNIX shell script or command
do script plain text -- data to be passed to the Terminal application as the command line
[with command plain text] -- data to be passed to the Terminal application as the command line, deprecated, use direct parameter
[in reference] -- the window in which to execute the command
--
So you would write a short script in the ScriptEditor window like:
tell Application "Terminal"
do script ./Users/[username]/blender/blender.app/Contents/MacOS/blender
end tell
Have fun,
kirk