7 Tooltip: 'Tutorials for learning to use Blender'
10 __author__ = "Matt Ebb"
11 __url__ = ("blender", "blenderartists.org")
14 This script opens the user's default web browser at www.blender.org's
18 # --------------------------------------------------------------------------
19 # Tutorials Help Menu Item
20 # --------------------------------------------------------------------------
21 # ***** BEGIN GPL LICENSE BLOCK *****
23 # This program is free software; you can redistribute it and/or
24 # modify it under the terms of the GNU General Public License
25 # as published by the Free Software Foundation; either version 2
26 # of the License, or (at your option) any later version.
28 # This program is distributed in the hope that it will be useful,
29 # but WITHOUT ANY WARRANTY; without even the implied warranty of
30 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
31 # GNU General Public License for more details.
33 # You should have received a copy of the GNU General Public License
34 # along with this program; if not, write to the Free Software Foundation,
35 # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
37 # ***** END GPL LICENCE BLOCK *****
38 # --------------------------------------------------------------------------
41 try: import webbrowser
42 except: webbrowser = None
45 webbrowser.open('http://www.blender.org/education-help/tutorials/')
47 Blender.Draw.PupMenu("Error%t|This script requires a full python installation")