Re: GuideMe (TeaseMe v2.0): BETA Thread
Posted: Sat Oct 11, 2014 11:41 am
Ok, here it is: https://mega.co.nz/#F!oEsxHaxS!HlfXssQw3UmF6MGPdWpVgQ
I reran the tutorial and hearts club
I reran the tutorial and hearts club
... for the explorer at heart!
https://milovana.com/forum/
It is running the 64bit version of guideme but has found a 32bit version of vlc (video lan)trytime wrote:Ok, here it is: https://mega.co.nz/#F!oEsxHaxS!HlfXssQw3UmF6MGPdWpVgQ
I reran the tutorial and hearts club
Not sure what you mean by that.joigame wrote:Is there support for input type="file"?
All I did was to do a straight install of the latest version of VLC onto my machine. I didn't install it anywhere special, only to the default place in Program Files that VLC wanted to go. I put nothing into Guideme plugins. GuideMe found VLC just fine and it worked.andresku wrote:Into which folder should I install the new version of VLC? I downloaded 2.1.5. and installed into guideme lib/plugins/VLC. is that ok?
In theory it should find the one in the guideme directory, but on some machines it picks up the main installed version.meson1 wrote:All I did was to do a straight install of the latest version of VLC onto my machine. I didn't install it anywhere special, only to the default place in Program Files that VLC wanted to go. I put nothing into Guideme plugins. GuideMe found VLC just fine and it worked.andresku wrote:Into which folder should I install the new version of VLC? I downloaded 2.1.5. and installed into guideme lib/plugins/VLC. is that ok?
It could be that the xml was saved with BOM (Byte-Order-Mark, EF BB BF) for unicode.philo wrote:I have not looked in detail, but the file I looked at is not loading because of 3 weird characters at the start of the file.andresku wrote:Is anyone able to help me with my question a few posts above, please...
If you open it in notepad you will see Deleting the three characters allows it to load.
I did not look to see if it works once it is loaded
Guideme should handle BOM, but you may be on the right track, I suspect the editor being used doesn't and is writing it out differently when saving.Lex_Shade wrote:It could be that the xml was saved with BOM (Byte-Order-Mark, EF BB BF) for unicode.philo wrote:I have not looked in detail, but the file I looked at is not loading because of 3 weird characters at the start of the file.andresku wrote:Is anyone able to help me with my question a few posts above, please...
If you open it in notepad you will see Deleting the three characters allows it to load.
I did not look to see if it works once it is loaded
Code: Select all
<GlobalJavascript> <![CDATA[ function commonPageLoad() { if (typeof PageExit === 'function') { PageExit(); } else { scriptVars.put("strText","Boring default text."); }; } ]]> </GlobalJavascript> Code: Select all
<Page id="6"> <Text> <p class="text">Page 6 Text! <span>strText</span></p> </Text> <Image id="host006.jpg"/> <javascript> <![CDATA[ function pageLoad() { commonPageLoad(); } ]]> </javascript> </Page> <Page id="7"> <Text> <p class="text">Page 7 Text! <span>strText</span></p> </Text> <Image id="host007.jpg"/> <javascript> <![CDATA[ function pageLoad() { commonPageLoad(); } function PageExit() { scriptVars.put("strText","Exciting different text."); } ]]> </javascript> </Page> <Page id="8"> <Text> <p class="text">Page 8 Text! <span>strText</span></p> </Text> <Image id="host008.jpg"/> <javascript> <![CDATA[ function pageLoad() { commonPageLoad(); } ]]> </javascript> </Page> Code: Select all
Page 6 Text! Boring default text.Page 7 Text! Exciting different text.Page 8 Text! Boring default text. Code: Select all
Page 6 Text! Boring default text.Page 7 Text! Exciting different text.Page 8 Text! Exciting different text. Code: Select all
Page 6 Text! Exciting different text.Page 7 Text! Exciting different text.Page 8 Text! Exciting different text. If you want to upload the xml somewhere and pm me a link I will run it in debug mode and see if I can see what is going on.meson1 wrote:Hi Phil
I want to mention a fault I've found in the Javascript handling in GuideMe. I'm getting some odd results because GuideMe is remembering JS functions from previous pages.