Hi all,
I'm trying to make a short movie here and I came across something I can't
find on the internet how to do it.. I want to zoom in a region of the
protein (done easily) and at the same time fade its surface (also easily
done on its own, thanks Tsjerk).
Is this possible or we cannot have two
Hi,
> import os, __main__, time
>
> os.environ['PYMOL_PATH'] = "C:\Python27\PyMOL"
>
> __main__.pymol_argv = [ 'pymol', "-qx"] # Quiet and no GUI
> import pymol
> pymol.finish_launching()
>
> pymol.cmd.load("water.pdb")
> time.sleep(1)
> pymol.cmd.window("position", 500, 300)
>
> ...in Python,