Seems like it should be possible...

Take a look at the source code of http://www.simile-widgets.org/runway/. 
  You'll see "widget.select(7);"   This sets the starting selected item 
within the array on pageload.

And, you can always use javascript to parse the current URL.  You could 
use something like location.href (full url) or location.search (search 
terms after a ?).    So, you may be able to do something like (haven't 
tried it)

/page/index.html?7

and

widget.select(location.search);


If you need the name of the image/item, place that name in the URL after 
the ?, then search through the data array for that item index and pass 
the index number to widget.select().


- John

**************************************************
John Callahan, Geospatial Application Developer
Delaware Geological Survey, University of Delaware
Email: [email protected]
**************************************************




Danny wrote:
> Would it be possible to define which one to start from on pageload
> (seems sorta random)?
>
> Or something like /page/index.html#Name
>
> and it would scroll to whichever had an entry of name: "Name"
>
> >
>   

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to