[Jmol-users] Less than 24 hours to submit a poster to VIZBI 2013

2013-03-14 Thread Jim Procter
Dear jmol users! If you are planning to attend VIZBI 2013 in Boston next week or watch it live as an online participant then you have only a few hours left to submit a poster! Scientific poster submissions close at 11.59pm PDT on Thursday 14th March 2013 (7am UTC). Instructions for

Re: [Jmol-users] I give you.... JavaScript MMFF94 and UFF minimization

2013-03-14 Thread Robert Hanson
Modelkit menu is working now. Had a problem with images. Just uploaded http://chemapps.stolaf.edu/jmol/jsmol.zip for that. On Wed, Mar 13, 2013 at 10:01 PM, Otis Rothenberger osrot...@chemagic.comwrote: Oh my. Minimization magic! I've been minimizing by running 5 step runs. No need for that

Re: [Jmol-users] Less than 24 hours to submit a poster to VIZBI 2013

2013-03-14 Thread Robert Hanson
well, darned. I probably should have gone to that On Thu, Mar 14, 2013 at 7:15 AM, Jim Procter jproc...@compbio.dundee.ac.ukwrote: Dear jmol users! If you are planning to attend VIZBI 2013 in Boston next week or watch it live as an online participant then you have only a few hours left

[Jmol-users] Jmol scripting frames

2013-03-14 Thread Jaime Prilusky
Dear Jmol, The following script from JSmol/Jmol button frame 4 8; delay 0.5;frame play plays great, but, the first step is to draw frames 4 to 8 all together, then it starts playing. This happens both on Jmol and JSmol. Is this the expected behavior? How may I construct a button to play a

Re: [Jmol-users] Jmol scripting frames

2013-03-14 Thread Jaime Prilusky
Thank you for a prompt reply. It works great by adding the RANGE word. On Mar 14, 2013, at 6:29 PM, Rolf Huehne wrote: On 03/14/2013 05:13 PM, Jaime Prilusky wrote: Dear Jmol, The following script from JSmol/Jmol button frame 4 8; delay 0.5;frame play plays great, but, the first step is

[Jmol-users] DOCUMENTATION getProperty fileInfo

2013-03-14 Thread Eric Martz
Hi, Bob, fileInfo is not listed under getProperty. It would be very useful to give an example of using a keyterm, such as jmolGetPropertyAsString(fileInfo, EXPDTA); Also stateInfo is not listed. Thanks, Eric --

Re: [Jmol-users] old Jmol, new JSmol

2013-03-14 Thread Robert Hanson
On Thu, Mar 14, 2013 at 11:16 AM, Richard Steane richard.ste...@ntlworld.com wrote: Bob I have two questions. 1) Jmol and Java question Last week you commented on some source code from my site: The second one is a typo. applet code=JmolApplet.class archive=JmolApplet0.jar title=an

Re: [Jmol-users] old Jmol, new JSmol

2013-03-14 Thread Robert Hanson
I think it has something to do with antialiasDisplay. Could you remove that from your script and see if it works? On Thu, Mar 14, 2013 at 5:21 PM, Robert Hanson hans...@stolaf.edu wrote: On Thu, Mar 14, 2013 at 11:16 AM, Richard Steane richard.ste...@ntlworld.com wrote: Bob I have

[Jmol-users] chainInfo.models.length ??

2013-03-14 Thread Eric Martz
When I do this in javascript: chainInfo = jmolGetPropertyAsArray(chainInfo); chainInfo.models.length is always 1, even when there are multiple models, for example in 1o9a (15 models) or 2jqo (20 models). ??? On the other hand these seem to be what I expect:

Re: [Jmol-users] old Jmol, new JSmol

2013-03-14 Thread Robert Hanson
OK, it turns out it is a recognized MSIE 9 bug having to do with the beforeunload event that I tapped into recently so as to help with garbage collection. I'll have to do a check for MSIE 9 and not do that. Will update later. Must go On Thu, Mar 14, 2013 at 5:37 PM, Robert Hanson

Re: [Jmol-users] DOCUMENTATION getProperty fileInfo

2013-03-14 Thread Robert Hanson
thanks, Eric. Definitely missed that one. Yes, getProperty(fileInfo) is valuable. On Thu, Mar 14, 2013 at 3:47 PM, Eric Martz ema...@microbio.umass.eduwrote: Hi, Bob, fileInfo is not listed under getProperty. It would be very useful to give an example of using a keyterm, such as

Re: [Jmol-users] chainInfo.models.length ??

2013-03-14 Thread Robert Hanson
the default for all such properties is VISIBLE. So unless you use frame * you won't see more than one model. On Thu, Mar 14, 2013 at 5:47 PM, Eric Martz ema...@microbio.umass.eduwrote: When I do this in javascript: chainInfo = jmolGetPropertyAsArray(chainInfo); chainInfo.models.length

Re: [Jmol-users] old Jmol, new JSmol

2013-03-14 Thread Robert Hanson
The problem with MSIE 9 is fixed. A newly optimized version of JSmol is in http://chemapps.stolaf.edu/jmol/jsmol.zip On Thu, Mar 14, 2013 at 6:27 PM, Robert Hanson hans...@stolaf.edu wrote: OK, it turns out it is a recognized MSIE 9 bug having to do with the beforeunload event that I tapped