could you refer me to any books ---- i searched many places but not a lot of people know scripting and those who do are too busy working to post a video
ok -I’ll bite. Here’s what you do (straight forward, actually) go here -> http://docs.python.org/tutorial/ follow those all the way -they take you from clueless to well, the right direction. then go here -> 1.open blender 2.find the console window 3.use it to follow the tutorials listed above that should teach you the language which is python (blender uses it) once you’re all set, go here -> http://www.blender.org/documentation/blender_python_api_2_60_5/ start with the first link and work your way down. this should teach you how to script blender with python (you could just go here right away, but if you are unfamiliar with python, it’ll hurt your brain. [speaks from experience] last thing. look up everything you can about lists, dictionaries and tuples from time to time. the whole point of scripting is to manipulate data. If you know python, it’s just a matter of applying what you know to blender’s api. K. that’s it. no shorter path really. There’s youtube, but you’ll still have to code to grasp it.
I have made a small book in blender wiki , for complete begineers and people new to coding. Its 50% done but its already useful. You can find it here —> http://wiki.blender.org/index.php/Us…_book_of_magic
Also, open Blender and switch to Scripting layout. In the text editor there is a menu option called Templates. These are working examples of code that you can build or learn from.
Look at the code snippets (to be found here in the forum and …) to learn how the Blender Api is used …(all Python scripts!)
AND start for youself with a little project: I want to build an addon (myFirstAddon.py) and create e.g. an object of YOUR choice.
(look for examples from the templates and the snippets)
Then make the creation an operator, such that you can change vour object ‘life’ …
And then have a REAL wish, start and ask questions (e.g. here)