[tw] Re: Is it possible to send timed pagerefresh (F5) through a txtTheme (kioskmode)?

2010-06-22 Thread Måns
Hi Mike I think you're right about the restart/reload thing. What I was really after was restart, however I found another way to do it inside the TW - I used an iframe showing the document in slideshowtheme-mode and put this script inside it: script

[tw] Re: Is it possible to send timed pagerefresh (F5) through a txtTheme (kioskmode)?

2010-06-22 Thread Måns
Hi Mike - and I changed it from a restart to a reload - I think this is what you are looking for, not sure why it it not working as you desire. . . (Restart closes tiddlers and start over without reloading the entire document vs reload i.e. F5) Argh - That was exactly my first priority -

[tw] Re: Is it possible to send timed pagerefresh (F5) through a txtTheme (kioskmode)?

2010-06-22 Thread okido
Ever thought about iMacros with Firefox, you should able to pull the right url==tiddlywiki tiddler at timed intervals. Have a nice day, Okido On 22 June, 18:08, Måns humam...@gmail.com wrote: Hi Mike - and I  changed it from a restart to a reload - I think this is what you are looking for,

[tw] Re: Is it possible to send timed pagerefresh (F5) through a txtTheme (kioskmode)?

2010-06-22 Thread Måns
Hi Okido Thanks for the tip However I'm trying to make the TW somewhat browseragnostic - and have everything packed in the document, not having to rely on external (or browserspecific macros)... I found the ReloaderPlugin for Google Chrome, which works out of the box - again it's an external

[tw] Re: Is it possible to send timed pagerefresh (F5) through a txtTheme (kioskmode)?

2010-06-22 Thread Måns
Hmm 1) The TW:http://db.tt/8I0Xxm 2) TWframe (iframe with TW + metatag and timer ):http://db.tt/op9I9c It actually seems to suffice with only these two htmls - I had just tested it locally - online it seems to me that nr 2 html with metatag and timer does the job... regards Måns Mårtensson --

[tw] Re: Is it possible to send timed pagerefresh (F5) through a txtTheme (kioskmode)?

2010-06-22 Thread Måns
Hi Mike Last post on this subject - Neither solution worked? All of them did :-) for different purposes... The simple script worked in my testbed, although it seems ELS's solution would be more elegant I second that, therefore I've made a new systemTheme [[InfoMode]] Here:

[tw] Re: Is it possible to send timed pagerefresh (F5) through a txtTheme (kioskmode)?

2010-06-21 Thread Mike
Neither solution worked? The simple script worked in my testbed, although it seems ELS's solution would be more elegant I also made a mistake above 6 = 2 min 60 = 10 min +/- http://www.strm.us/tw/testwiki.htm I Modified my CustomViewTemplate to transclude TimedRestart - and I changed it

[tw] Re: Is it possible to send timed pagerefresh (F5) through a txtTheme (kioskmode)?

2010-06-21 Thread Mike
Arghh - wrong link above.. . http://www.strm.us/tw/testwiki.htm#chkRandomTheme:true Mike On Jun 21, 11:44 pm, Mike eris...@gmail.com wrote: Neither solution worked? The simple script worked in my testbed, although it seems ELS's solution would be more elegant I also made a mistake above

[tw] Re: Is it possible to send timed pagerefresh (F5) through a txtTheme (kioskmode)?

2010-06-20 Thread Mike
scriptsetTimeout(story.closeAllTiddlers();restart();,6);/ script If this is placed in MainMenu or another startup tiddler it should refresh the entire document every 6ms (10 min) Mike On Jun 19, 6:02 pm, Måns humam...@gmail.com wrote: Hi TwWizards I'm trying to develop a customized

[tw] Re: Is it possible to send timed pagerefresh (F5) through a txtTheme (kioskmode)?

2010-06-20 Thread Måns
Hi Mike Thanks for the script: scriptsetTimeout(story.closeAllTiddlers();restart();,6);/script If this is placed in MainMenu or another startup tiddler it should refresh the entire document every 6ms (10 min) Can I somehow make sure this only happens when my InfoTheme is active? ie put

[tw] Re: Is it possible to send timed pagerefresh (F5) through a txtTheme (kioskmode)?

2010-06-20 Thread Eric Shulman
Can I somehow make sure this only happens when my InfoTheme is active? ie put the script into a div only active in the infoPageTemplate? - And make sure that the pagerefresh falls back to the initial Url ie #txtTheme:InfoTilstand HovedSlide ? If you use

[tw] Re: Is it possible to send timed pagerefresh (F5) through a txtTheme (kioskmode)?

2010-06-20 Thread Mike
The URL should not change. . . (should be able to test and verify, my url is file:///E:/documents/tw/TestWiki.htm#chkRandomTheme:true with no problems) The div should also work if referenced via your theme as specified or just via ViewTemplate span macro=tiddler myRestartScript/span HTH, Mike On

[tw] Re: Is it possible to send timed pagerefresh (F5) through a txtTheme (kioskmode)?

2010-06-20 Thread Måns
Hi Eric |Init|InfoThemeInit| |Reset|InfoThemeReset| Then, in [[InfoThemeInit]], write: window.refreshTimerID=setTimeout(story.closeAllTiddlers();restart();, 6); and in [[InfoThemeReset]], write:    clearTimeout(window.refreshTimerID); Thanks for helping me in integrating the

[tw] Re: Is it possible to send timed pagerefresh (F5) through a txtTheme (kioskmode)?

2010-06-20 Thread Måns
Hi again Now I've run through the cycle a few times - and it is only refreshed 1 time - and not again? I will test it with FF when i get a chance - for now I have to use Google Chrome... [[InfoTilstand]] Here's my code: |Init|InfoTilstand##init| |Reset|InfoTilstand##reset| !init //{{{

[tw] Re: Is it possible to send timed pagerefresh (F5) through a txtTheme (kioskmode)?

2010-06-20 Thread Måns
Maybe this the way to go, for the embedded systems: http://windowssecrets.com/support-alert/2008/06/19/14-Free-auto-refresh-add-ins-for-your-browser - however I haven't found a plugin for Google Chrome yet.. regards Måns Mårtensson On 20 Jun., 19:55, Måns humam...@gmail.com wrote: Hi again Now

[tw] Re: Is it possible to send timed pagerefresh (F5) through a txtTheme (kioskmode)?

2010-06-20 Thread Måns
I found a specialized html/javascript code for refreshing browser/page here: http://www.myrefresher.com/samples/javascript_html_refresh_code.html.zip However I don't know if it's any better than the codebit I've got already - or how to implement it. It seems that you'll have to have it written

[tw] Re: Is it possible to send timed pagerefresh (F5) through a txtTheme (kioskmode)?

2010-06-20 Thread Måns
Is it possible to use the META tag in the customized pagetemplate to invoke the pagerefresh routine?? META HTTP-EQUIV=Refresh CONTENT=5; URL=http://MySlideShow#txtTheme; regards Måns Mårtensson On 20 Jun., 20:55, Måns humam...@gmail.com wrote: I found a specialized html/javascript