<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Javascript and bookmark names in InfraWorks Forum</title>
    <link>https://forums.autodesk.com/t5/infraworks-forum/javascript-and-bookmark-names/m-p/6402994#M19976</link>
    <description>&lt;P&gt;Hey Matt,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So a colleague helped me out with this one.&lt;/P&gt;
&lt;P&gt;Looks like your original line of thinking was actually pretty close. Try this out, it seems to work pretty nicely:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;var bmList = app.ActiveDocument().Bookmarks;
for(var i=0; i&amp;lt;bmList.length; i++) {
    var bm = bmList[i];
    print((i+1) + ": '" + bm.name + "'");
}&lt;/PRE&gt;
&lt;P&gt;Best,&lt;/P&gt;
&lt;P&gt;Elliott&lt;/P&gt;</description>
    <pubDate>Fri, 24 Jun 2016 17:56:25 GMT</pubDate>
    <dc:creator>elliott.rosenfeld</dc:creator>
    <dc:date>2016-06-24T17:56:25Z</dc:date>
    <item>
      <title>Javascript and bookmark names</title>
      <link>https://forums.autodesk.com/t5/infraworks-forum/javascript-and-bookmark-names/m-p/6387486#M19972</link>
      <description>&lt;P&gt;Got another one for you&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1960481"&gt;@elliott.rosenfeld﻿&lt;/a&gt;. &amp;nbsp;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have a model with three bookmarks in it. When I run the code below.....&lt;/P&gt;
&lt;PRE&gt;var doc = app.ActiveDocument();

var varBM = doc.Bookmarks;
for (x in varBM) {
   print (varBM[x]);
}&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;...it returns this at the debug window.&lt;/P&gt;
&lt;PRE&gt;adsk::js::Bookmark(name = "")
adsk::js::Bookmark(name = "")
adsk::js::Bookmark(name = "")
Script evaluation: 0.002 seconds&lt;/PRE&gt;
&lt;P&gt;Which says to me it's not recognizing the names of the bookmarks and returning an empty value? And what's the deal with "adsk::js::"? Is IW / JS just being polite with its error messages?!?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;*heads off to scour the IW JS documentation and inner-webs for clues*&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jun 2016 14:51:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/infraworks-forum/javascript-and-bookmark-names/m-p/6387486#M19972</guid>
      <dc:creator>Matt__W</dc:creator>
      <dc:date>2016-06-16T14:51:24Z</dc:date>
    </item>
    <item>
      <title>Re: Javascript and bookmark names</title>
      <link>https://forums.autodesk.com/t5/infraworks-forum/javascript-and-bookmark-names/m-p/6397043#M19973</link>
      <description>&lt;P&gt;Hey Matt,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Haven't forgotten about you. I've been trying to puzzle this one out, and I am thinking that the issue here may be because the Bookmark metadata is stored in JSON inside a model's unver folder.&amp;nbsp;Just for reference, here's what I am thinking may work:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Step &amp;nbsp;1)&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#808080"&gt;// Set a variable for your Bookmarks folder, defining where the bookmarks are stored for your&amp;nbsp;model&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;var bmFolder = "C:/Users/&lt;FONT color="#FF0000"&gt;yourusername&lt;/FONT&gt;/Documents/Autodesk InfraWorks Models/Autodesk 360/&lt;FONT color="#FF0000"&gt;modelid#&lt;/FONT&gt;/&lt;FONT color="#FF0000"&gt;modelname.files&lt;/FONT&gt;/unver/Bookmarks";&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Step 2)&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#808080"&gt;//Retrieve the active model and document&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;var model = app.ActiveModel;&lt;/P&gt;
&lt;P&gt;var doc = app.ActiveDocument();&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Step 3)&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#808080"&gt;&lt;SPAN&gt;//Process each file in bmFolder (still not 100% certain the syntax for this)..&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Step 4)&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#808080"&gt;//parse the JSON strings within your bmFolder&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Step 5)&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#808080"&gt;//print&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Elliott&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jun 2016 22:43:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/infraworks-forum/javascript-and-bookmark-names/m-p/6397043#M19973</guid>
      <dc:creator>elliott.rosenfeld</dc:creator>
      <dc:date>2016-06-21T22:43:21Z</dc:date>
    </item>
    <item>
      <title>Re: Javascript and bookmark names</title>
      <link>https://forums.autodesk.com/t5/infraworks-forum/javascript-and-bookmark-names/m-p/6397047#M19974</link>
      <description>So I wasn't losing my mind thinking that the Bookmarks function isn't fully functional? Glad to see it wasn't something I was doing wrong.&lt;BR /&gt;&lt;BR /&gt;I'll hack away at this tomorrow and see what I can scratch together.</description>
      <pubDate>Tue, 21 Jun 2016 22:44:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/infraworks-forum/javascript-and-bookmark-names/m-p/6397047#M19974</guid>
      <dc:creator>Matt__W</dc:creator>
      <dc:date>2016-06-21T22:44:08Z</dc:date>
    </item>
    <item>
      <title>Re: Javascript and bookmark names</title>
      <link>https://forums.autodesk.com/t5/infraworks-forum/javascript-and-bookmark-names/m-p/6398385#M19975</link>
      <description>&lt;P&gt;So I've got this together but I'm getting stuck on iterating through the Bookmarks folder to search for JSON files. I can't seem to tap into the Script.FileSystemObject (which would make this infinitely easier) so now I'm at a loss. Nothing I've tried has worked so far. Below is my code. Any thoughts? Can anyone at the factory put me in the right direction?? This is my first real attempt at Javascript so I'm on a mission to figure this out and learn from it. You could say it's gotten personal now. &amp;nbsp;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;// Some global vars...
var curModel = app.ActiveModel;
var db = curModel.Db;
var fPath = db.FilesPath;
var bMarks = fPath + "unver/Bookmarks"
print (bMarks);

if(!file.FolderExists(bMarks)) {
      alert("Folder doesn't exist");
   }
   else {
//      alert("Folder exists"); // The folder still exists even if all bookmarks have been deleted
      print ("");
      print ("========================================");
      print ("Loop through directory and get all files");
      print ("========================================");
      print ("");&lt;BR /&gt;&lt;BR /&gt;// Code that I found online that I attempted to make work but...
      var fileList = getFiles(bMarks);  &amp;lt;&amp;lt;--- THIS IS WHERE IT DIES.
      for (var i = 0; i &amp;lt; fileList.length; i++) {
         if (fileList[i] instanceof File) {
            print (fileList[i]);
         }
   }
}&lt;/PRE&gt;</description>
      <pubDate>Wed, 22 Jun 2016 16:03:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/infraworks-forum/javascript-and-bookmark-names/m-p/6398385#M19975</guid>
      <dc:creator>Matt__W</dc:creator>
      <dc:date>2016-06-22T16:03:42Z</dc:date>
    </item>
    <item>
      <title>Re: Javascript and bookmark names</title>
      <link>https://forums.autodesk.com/t5/infraworks-forum/javascript-and-bookmark-names/m-p/6402994#M19976</link>
      <description>&lt;P&gt;Hey Matt,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So a colleague helped me out with this one.&lt;/P&gt;
&lt;P&gt;Looks like your original line of thinking was actually pretty close. Try this out, it seems to work pretty nicely:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;var bmList = app.ActiveDocument().Bookmarks;
for(var i=0; i&amp;lt;bmList.length; i++) {
    var bm = bmList[i];
    print((i+1) + ": '" + bm.name + "'");
}&lt;/PRE&gt;
&lt;P&gt;Best,&lt;/P&gt;
&lt;P&gt;Elliott&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jun 2016 17:56:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/infraworks-forum/javascript-and-bookmark-names/m-p/6402994#M19976</guid>
      <dc:creator>elliott.rosenfeld</dc:creator>
      <dc:date>2016-06-24T17:56:25Z</dc:date>
    </item>
    <item>
      <title>Re: Javascript and bookmark names</title>
      <link>https://forums.autodesk.com/t5/infraworks-forum/javascript-and-bookmark-names/m-p/6403006#M19977</link>
      <description>&lt;P&gt;This is perfect! Thank you so much!&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;{bro hug}&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;or fist bump... whatever. &amp;nbsp; &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jun 2016 18:00:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/infraworks-forum/javascript-and-bookmark-names/m-p/6403006#M19977</guid>
      <dc:creator>Matt__W</dc:creator>
      <dc:date>2016-06-24T18:00:10Z</dc:date>
    </item>
    <item>
      <title>Re: Javascript and bookmark names</title>
      <link>https://forums.autodesk.com/t5/infraworks-forum/javascript-and-bookmark-names/m-p/6403010#M19978</link>
      <description>&lt;P&gt;Hah great, back atcha. Although I can't take full credit, had to use my lifeline to answer this one.&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jun 2016 18:01:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/infraworks-forum/javascript-and-bookmark-names/m-p/6403010#M19978</guid>
      <dc:creator>elliott.rosenfeld</dc:creator>
      <dc:date>2016-06-24T18:01:36Z</dc:date>
    </item>
    <item>
      <title>Re: Javascript and bookmark names</title>
      <link>https://forums.autodesk.com/t5/infraworks-forum/javascript-and-bookmark-names/m-p/6403104#M19979</link>
      <description>&lt;P&gt;One more hopefully quick question....&lt;/P&gt;
&lt;P&gt;When I use the following code, Infraworks just blows through it and only sets the last bookmark as current. It's as if Infraworks isn't updating the view.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've tried the Regenerate function, ProcessEvents, Update and UpdateFeature (both of which I don't think apply since I'm not writing anything to a database).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How do I get it to stop and open each bookmark and set it current??&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;var doc = app.ActiveDocument();

var bmList = app.ActiveDocument().Bookmarks;
for(var i=0; i&amp;lt;bmList.length; i++) {
    var bm = bmList[i];
    print((i+1) + ": '" + bm.name + "'");
    doc.MoveToBookmark(bm.name);
}&lt;/PRE&gt;</description>
      <pubDate>Fri, 24 Jun 2016 18:59:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/infraworks-forum/javascript-and-bookmark-names/m-p/6403104#M19979</guid>
      <dc:creator>Matt__W</dc:creator>
      <dc:date>2016-06-24T18:59:38Z</dc:date>
    </item>
    <item>
      <title>Re: Javascript and bookmark names</title>
      <link>https://forums.autodesk.com/t5/infraworks-forum/javascript-and-bookmark-names/m-p/6403112#M19980</link>
      <description>&lt;P&gt;Sorry for the barrage of questions but I'm a newb when it comes to JS coding and I REALLY want to learn this and figure it out (with some help when needed).&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jun 2016 19:02:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/infraworks-forum/javascript-and-bookmark-names/m-p/6403112#M19980</guid>
      <dc:creator>Matt__W</dc:creator>
      <dc:date>2016-06-24T19:02:13Z</dc:date>
    </item>
    <item>
      <title>Re: Javascript and bookmark names</title>
      <link>https://forums.autodesk.com/t5/infraworks-forum/javascript-and-bookmark-names/m-p/6403185#M19981</link>
      <description>&lt;P&gt;Okay &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1960481"&gt;@elliott.rosenfeld﻿&lt;/a&gt;.... So I found that if I use a WAIT function, I can get IW to actually show the bookmarks. But I don't have that warm and fuzzy feeling that that's the "correct" way to go about it. Comments? Suggestions? Care to use another life line? &amp;nbsp;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;var doc = app.ActiveDocument();

function wait(ms){
   var start = new Date().getTime();
   var end = start;
   while(end &amp;lt; start + ms) {
     end = new Date().getTime();
  }
}

var bmList = app.ActiveDocument().Bookmarks;
for(var i=0; i&amp;lt;bmList.length; i++) {
    var bm = bmList[i];
    print((i+1) + ": '" + bm.name + "'");
    doc.MoveToBookmark(bm.name);
    wait(1000); // wait 1 second before continuing
}&lt;/PRE&gt;</description>
      <pubDate>Fri, 24 Jun 2016 19:44:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/infraworks-forum/javascript-and-bookmark-names/m-p/6403185#M19981</guid>
      <dc:creator>Matt__W</dc:creator>
      <dc:date>2016-06-24T19:44:53Z</dc:date>
    </item>
    <item>
      <title>Re: Javascript and bookmark names</title>
      <link>https://forums.autodesk.com/t5/infraworks-forum/javascript-and-bookmark-names/m-p/6408705#M19982</link>
      <description>&lt;P&gt;Hey Matt,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sorry for the late response, i've been at a conference. The WAIT function does seem to function (pun intended), but you are right that there may be a better way. Nice work getting that to work, and&amp;nbsp;sure I'll ask some colleagues about any possible improvements!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best,&lt;/P&gt;
&lt;P&gt;Elliott&lt;/P&gt;</description>
      <pubDate>Tue, 28 Jun 2016 16:57:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/infraworks-forum/javascript-and-bookmark-names/m-p/6408705#M19982</guid>
      <dc:creator>elliott.rosenfeld</dc:creator>
      <dc:date>2016-06-28T16:57:25Z</dc:date>
    </item>
    <item>
      <title>Re: Javascript and bookmark names</title>
      <link>https://forums.autodesk.com/t5/infraworks-forum/javascript-and-bookmark-names/m-p/6408710#M19983</link>
      <description>Thanks. I appreciate your help (and patience) on this. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;</description>
      <pubDate>Tue, 28 Jun 2016 16:58:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/infraworks-forum/javascript-and-bookmark-names/m-p/6408710#M19983</guid>
      <dc:creator>Matt__W</dc:creator>
      <dc:date>2016-06-28T16:58:47Z</dc:date>
    </item>
    <item>
      <title>Re: Javascript and bookmark names</title>
      <link>https://forums.autodesk.com/t5/infraworks-forum/javascript-and-bookmark-names/m-p/6412827#M19984</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1960481"&gt;@elliott.rosenfeld﻿&lt;/a&gt;&amp;nbsp;any progress on this? &amp;nbsp;I feel like I've been WAITing forever! (wakka wakka wakka) I have to believe there's a more correct&amp;nbsp;way to do this because if the wait period isn't long enough, Infraworks could still be processing while the JS continues to run which would mess things up. Processor speed and model size both play a factor in this so I hope there's a function that will handle this, otherwise I may need to bump up the wait time to allow Infraworks to catch up, so to speak.&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jun 2016 14:28:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/infraworks-forum/javascript-and-bookmark-names/m-p/6412827#M19984</guid>
      <dc:creator>Matt__W</dc:creator>
      <dc:date>2016-06-30T14:28:33Z</dc:date>
    </item>
    <item>
      <title>Re: Javascript and bookmark names</title>
      <link>https://forums.autodesk.com/t5/infraworks-forum/javascript-and-bookmark-names/m-p/6445430#M19985</link>
      <description>&lt;P&gt;*BUMP!*&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1960481"&gt;@elliott.rosenfeld﻿&lt;/a&gt;, any chance you've had the opportunity to discuss the wait issue with anyone?? (I just got back from a 2-week vacation which is why I didn't bother you about this earlier.&amp;nbsp;&lt;img id="smileywink" class="emoticon emoticon-smileywink" src="https://forums.autodesk.com/i/smilies/16x16_smiley-wink.png" alt="Smiley Wink" title="Smiley Wink" /&gt;)&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jul 2016 17:44:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/infraworks-forum/javascript-and-bookmark-names/m-p/6445430#M19985</guid>
      <dc:creator>Matt__W</dc:creator>
      <dc:date>2016-07-18T17:44:16Z</dc:date>
    </item>
    <item>
      <title>Re: Javascript and bookmark names</title>
      <link>https://forums.autodesk.com/t5/infraworks-forum/javascript-and-bookmark-names/m-p/6445439#M19986</link>
      <description>&lt;P&gt;Hey Matt,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Great timing,&amp;nbsp;I just heard back from some colleagues today.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(and sorry for the delay! We had a company week of rest, then I actually had some extra time away from the forum&amp;nbsp;to move, as I have just switched&amp;nbsp;office locations.)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here's what I was told after I forwarded this thread and your question to some colleagues: "While we are not aware of a function that asks AIW if it is ready, you may want to try to&amp;nbsp;replace the WAIT function with&amp;nbsp;&lt;FONT color="#003300"&gt;app.Sleep(1)&lt;/FONT&gt; instead."&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Let me know how this works out for you! If that doesn't provide the solution you're looking for, we can continue to dive into this and find a better way.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best,&lt;/P&gt;
&lt;P&gt;Elliott&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jul 2016 17:50:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/infraworks-forum/javascript-and-bookmark-names/m-p/6445439#M19986</guid>
      <dc:creator>elliott.rosenfeld</dc:creator>
      <dc:date>2016-07-18T17:50:04Z</dc:date>
    </item>
    <item>
      <title>Re: Javascript and bookmark names</title>
      <link>https://forums.autodesk.com/t5/infraworks-forum/javascript-and-bookmark-names/m-p/6445498#M19987</link>
      <description>&lt;P&gt;So no built in way of determining if a command has finished? Such as setting a bookmark current... *shrugs* Okay. I'll go with the sleep function since it's a built-in function and not something home-grown.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for all of your help,&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1960481"&gt;@elliott.rosenfeld﻿&lt;/a&gt;!!&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jul 2016 18:23:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/infraworks-forum/javascript-and-bookmark-names/m-p/6445498#M19987</guid>
      <dc:creator>Matt__W</dc:creator>
      <dc:date>2016-07-18T18:23:54Z</dc:date>
    </item>
    <item>
      <title>Re: Javascript and bookmark names</title>
      <link>https://forums.autodesk.com/t5/infraworks-forum/javascript-and-bookmark-names/m-p/6445630#M19988</link>
      <description>&lt;P&gt;Soooo... after a little more in-depth testing with a few other models it appears I *don't* need a sleep or wait function after all to achieve what I'm doing. &lt;img id="smileymad" class="emoticon emoticon-smileymad" src="https://forums.autodesk.com/i/smilies/16x16_smiley-mad.png" alt="Smiley Mad" title="Smiley Mad" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Stay tuned for an AKN article about batch printing snapshots using JS. &amp;nbsp;&lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://forums.autodesk.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;
&lt;P&gt;Thanks again for putting up with me and my questions&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1960481"&gt;@elliott.rosenfeld﻿&lt;/a&gt;.&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jul 2016 19:40:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/infraworks-forum/javascript-and-bookmark-names/m-p/6445630#M19988</guid>
      <dc:creator>Matt__W</dc:creator>
      <dc:date>2016-07-18T19:40:09Z</dc:date>
    </item>
  </channel>
</rss>

