From knowledgeware at kccsoft.com Sun Jan 1 04:24:25 2012 From: knowledgeware at kccsoft.com (KnowledgeWare) Date: Sat, 31 Dec 2011 20:24:25 -0800 Subject: [Xerte] display checkmarks on menu Message-ID: <001201ccc83d$3f4a3590$bddea0b0$@kccsoft.com> I'd like to turn checkmarks on on a menu when the student has finished a section. I want to loop through an array to get '1' or '0' then place the checkmark and display it if the value is '1'. How to best do that in AS? Can I create one checkmark graphic, move it around with x/y coordinates and make it visible on the fly? Any time saving suggestions on how to best handle this? My AW code is not a direct port on this one :- ( Happy New Year! RonM2 -------------- next part -------------- An HTML attachment was scrubbed... URL: From johnathan.kemp at ntlworld.com Sun Jan 1 12:56:33 2012 From: johnathan.kemp at ntlworld.com (Kemp Johnathan) Date: Sun, 1 Jan 2012 12:56:33 +0000 Subject: [Xerte] Re: display checkmarks on menu In-Reply-To: <001201ccc83d$3f4a3590$bddea0b0$@kccsoft.com> References: <001201ccc83d$3f4a3590$bddea0b0$@kccsoft.com> Message-ID: Hello Ron, I don't know how you are building your menu but if each item is a text object you could assign an image to each text item and then change the image when the menu item has been accessed. Create an image icon for each image you will require - it may be you just use a tick image and a transparent image. In this example I'll call then imgBlank and imgTick For each image capture the url data blankUrl = imgBlank.XMLElement.attributes.url.substring(16,imgBlank.XMLElement.attributes.url.length -1 ); tickUrl = imgTick.XMLElement.attributes.url.substring(16,imgTick.XMLElement.attributes.url.length -1 ); // Set the image visible properties to 0 to hide them. imgBlank._visible = 0; imgTick._visible = 0; // create a movieclip loader loader = new MovieClipLoader(); // for each text icon in your menu you can then assign an image txtMenuItemA.createEmptyMovieClip("myImage", 999); // then assign the appropriate graphic loader.loadClip(FileLocation + blankUrl, txtMenuItemA.myImage); // at a later time you should be able to change the graphic to a tick loader.loadClip(FileLocation + tickUrl, txtMenuItemA.myImage); The above is based on a page I created a while back. I don't have time to test it out now but if you think it looks like it may solve your problem then give it a try. If you have any issues getting it to work post back and I will check everything over to make sure I haven't missed anything out. Kind regards Johnathan On 1 January 2012 04:24, KnowledgeWare wrote: > I?d like to turn checkmarks on on a menu when the student has finished a > section. > > > > I want to loop through an array to get ?1? or ?0? then place the checkmark > and display it if the value is ?1?. > > > > How to best do that in AS? Can I create one checkmark graphic, move it > around with x/y coordinates and make it visible on the fly? Any time saving > suggestions on how to best handle this? My AW code is not a direct port on > this one :- ( > > > Happy New Year! > > > > RonM2 > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an > attachment may still contain software viruses which could damage your > computer system: you are advised to perform your own checks. Email > communications with the University of Nottingham may be monitored as > permitted by UK legislation. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do > not use, copy or disclose the information contained in this message or in > any attachment. Any views or opinions expressed by the author of this > email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From matis25 at yahoo.com Sun Jan 1 13:15:37 2012 From: matis25 at yahoo.com (pippo pluto) Date: Sun, 1 Jan 2012 13:15:37 +0000 (GMT) Subject: [Xerte] Re: download file pdf In-Reply-To: References: <1325144714.69853.YahooMailNeo@web24106.mail.ird.yahoo.com> <00ac01ccc65f$cb4d8630$61e89290$@kccsoft.com> <1325244403.39058.YahooMailNeo@web24103.mail.ird.yahoo.com> Message-ID: <1325423737.67657.YahooMailNeo@web24102.mail.ird.yahoo.com> Hello Johnathan and Dave my problem is here:? getURL('http://www.bbc.co.uk','_blank'); // change the first parameter to match the url of the file you want to open ok Johnathan I wrote in my script : debug("clicked"); getURL('http://media/pdf/comparative.pdf','_blank'); ok the window opens in the browser but it does not display my document. pdf (comparative.pdf). Kind regardsMatteo ________________________________ Da: Kemp Johnathan A: Xerte discussion list Inviato: Sabato 31 Dicembre 2011 12:11 Oggetto: [Xerte] Re: download file pdf Hello Dave, I just tried your approach and that works as well - just note that it is the event's icon property that needs setting to mypic and not the event's id property. But all in all a tidier solution than the one I offered. Nice one. Kind regards Johnathan On 30 December 2011 23:28, Dave Burnett wrote: The image itself is an allowable event target (at least it worked for me) ? > > >image (id = mypic >interaction >event (id = mypic, event=onRelease) >script (I think the problem is the way the relative path was specified originally) > > > > > >________________________________ >Date: Fri, 30 Dec 2011 19:13:14 +0000 >From: johnathan.kemp at ntlworld.com >To: matis25 at yahoo.com; xerte at lists.nottingham.ac.uk > >Subject: [Xerte] Re: download file pdf > > >Hello Matteo, > > > >Try the following > > >Create a new desktop xerte project with the icon structure > > >Learning Object >? Interface >? ? page >? ? ? image (id = myPic url = FileLocation + 'media/myFileName.jpg') >? ? ? interaction (perpetual setting is either 1 or 0 depending on whether you want the execution flow to stop at the interaction) >? ? ? ? HotObject (rs = myPic click = 1) >? ? ? ? ? ?Script > > >The contents of the script are > > >debug("clicked"); // will display a debug message in preview mode to confirm click was detected >getURL('http://www.bbc.co.uk','_blank'); // change the first parameter to match the url of the file you want to open >// getURL will open a window in your browser > > >Notes on properties > * You need to set the image icon's id property so that this can be used in the HotObject to identify what object it is responding to. > * The interaction Icon can have a perpetual property of 1 or 0 try both, one of the values will stop the project flow at the interaction but I can't remember which it is - so play around with this setting. > * The HotObject icon's rs property must be set to the same value as the Image icon's id property. The click property is set to 1 if you want the event to trigger on clicking or 0 if you want to trigger the event on mouse over. >Hope this solves your problem > > >Kind regards? > > >Johnathan > > > >On 30 December 2011 11:26, pippo pluto wrote: > >Hello Johnathan >>I tried your suggestion but does not work. >>Maybe I'm wrong but I do not know where is the error...I'll try again.. >> >> >>Kind regards >>Matteo >> >> >> >> >>________________________________ >> Da: Kemp Johnathan >>A: Xerte discussion list >>Inviato: Gioved? 29 Dicembre 2011 23:40 >>Oggetto: [Xerte] Re: download file pdf >> >> >> >>The ID is used as the unique identifier of an icon, so once you set the icon property of an icon you can refer directly to it by using its ID. That is except for icons that are normally the children of an interaction icon i.e. the sort of icons you see listed when you right click on an interaction icon in desktop Xerte e.g. button, hotspot etc. These use the rs property to identify themselves and not the id property.? >> >> >>Julian will know the why's and wherefore's of this. >> >> >>You can read about it in the "interactions overview" section of the Xerte help file. >> >> >>Kind regards >> >> >>Johnathan >> >> >>You >> >>On 29 December 2011 19:26, KnowledgeWare wrote: >> >>Johnathan ? question if you don?t mind ? what?s the difference between the ?rs? and ?id? properties? What?s the appropriate use of each? Where can I learn more about these? >>>? >>>Thanks >>>RonM2 >>>? >>>From:xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Kemp Johnathan >>>Sent: Thursday, December 29, 2011 3:51 AM >>>To: pippo pluto; Xerte discussion list >>>Subject: [Xerte] Re: download file pdf >>>? >>>Hello Matteo, >>>? >>>Sorry I don't have time to test this solution before suggesting it. >>>? >>>Check out the Xerte help files. >>>? >>>I don't think that by default an image icon is sensitive to mouse events and thus will not trigger an onRelease event. >>>? >>>However you can add a hotObject icon to an interaction and then add an image icon as a child of the hotObject. This will allow mouse events to be detected by the image. I am not sure if the event will be triggered by the hot object or the image. If it is the hot object icon then you may need to use the rs property rather than the id property to identify the hotObject icon when specifying what object sends the event. >>>? >>>Kind regards >>>? >>>Johnathan >>>? >>>On 29 December 2011 07:45, pippo pluto wrote: >>>hi >>>this is my problem: >>>? >>>I have a small icon (a jpg image, it is called 'logopdf1') I would click on and download a simple PDF file (its name is comparative.pdf) : >>>? >>>I did it this way: >>>1) I have an id (logo) associated with image >>>2) I create an interection >>>3) I create an event that I called Event1,? icon : logo , eventname: onRelease >>>4) I create a script : into the script I wrote:? getURL('media/pdf/comparative.pdf', '_blank'); >>>? >>>but doesn't work...what code should I write in the script? >>>? >>>thank's >>>Matteo Pirola >>>University of Ferrara >>>Italy >>>? >>>This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. >>>This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. >>> >>>_______________________________________________ >>>Xerte mailing list >>>Xerte at lists.nottingham.ac.uk >>>http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>> >>>This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. ? Please do not use, copy or disclose the information contained in this message or in any attachment. ?Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. >>> >>>This message has been checked for viruses but the contents of an attachment >>>may still contain software viruses which could damage your computer system: >>>you are advised to perform your own checks. Email communications with the >>>University of Nottingham may be monitored as permitted by UK legislation. >>> >>> >>>? >>>_______________________________________________ >>>Xerte mailing list >>>Xerte at lists.nottingham.ac.uk >>>http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>> >>>This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. ? Please do not use, copy or disclose the information contained in this message or in any attachment. ?Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. >>> >>>This message has been checked for viruses but the contents of an attachment >>>may still contain software viruses which could damage your computer system: >>>you are advised to perform your own checks. Email communications with the >>>University of Nottingham may be monitored as permitted by UK legislation. >>> >>> >>> >> >> >>This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. >>This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. >>_______________________________________________ >>Xerte mailing list >>Xerte at lists.nottingham.ac.uk >>http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >>This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it.? Please do not use, copy or disclose the information contained in this message or in any attachment.? Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. >> >>This message has been checked for viruses but the contents of an attachment >>may still contain software viruses which could damage your computer system: >>you are advised to perform your own checks. Email communications with the >>University of Nottingham may be monitored as permitted by UK legislation. >> >> >> >> >>_______________________________________________ >>Xerte mailing list >>Xerte at lists.nottingham.ac.uk >>http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >>This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. ? Please do not use, copy or disclose the information contained in this message or in any attachment. ?Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. >> >>This message has been checked for viruses but the contents of an attachment >>may still contain software viruses which could damage your computer system: >>you are advised to perform your own checks. Email communications with the >>University of Nottingham may be monitored as permitted by UK legislation. >> >> >> > >_______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. >_______________________________________________ >Xerte mailing list >Xerte at lists.nottingham.ac.uk >http://lists.nottingham.ac.uk/mailman/listinfo/xerte > >This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. ? Please do not use, copy or disclose the information contained in this message or in any attachment. ?Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > >This message has been checked for viruses but the contents of an attachment >may still contain software viruses which could damage your computer system: >you are advised to perform your own checks. Email communications with the >University of Nottingham may be monitored as permitted by UK legislation. > > > _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it.? Please do not use, copy or disclose the information contained in this message or in any attachment.? Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. -------------- next part -------------- An HTML attachment was scrubbed... URL: From johnathan.kemp at ntlworld.com Sun Jan 1 13:31:12 2012 From: johnathan.kemp at ntlworld.com (Kemp Johnathan) Date: Sun, 1 Jan 2012 13:31:12 +0000 Subject: [Xerte] Re: download file pdf In-Reply-To: <1325423737.67657.YahooMailNeo@web24102.mail.ird.yahoo.com> References: <1325144714.69853.YahooMailNeo@web24106.mail.ird.yahoo.com> <00ac01ccc65f$cb4d8630$61e89290$@kccsoft.com> <1325244403.39058.YahooMailNeo@web24103.mail.ird.yahoo.com> <1325423737.67657.YahooMailNeo@web24102.mail.ird.yahoo.com> Message-ID: Hello Matteo, Your file is not located on a web server so http won't find it. I am guessing your file is in a folder that is in the project folder hierarchy. Try instead getURL(FileLocation + 'media/pdf/comparative.pdf','_blank'); that might work. Kind regards and a Happy New Year Johnathan On 1 January 2012 13:15, pippo pluto wrote: > Hello Johnathan and Dave > > my problem is here: > > getURL('http://www.bbc.co.uk','_blank'); // change the first parameter to > match the url of the file you want to open > ok Johnathan I wrote in my script : > debug("clicked"); > getURL('http://media/pdf/comparative.pdf','_blank'); > ok the window opens in the browser but it does not display my document. > pdf (comparative.pdf). > > Kind regards > Matteo > > > > > > ------------------------------ > *Da:* Kemp Johnathan > *A:* Xerte discussion list > *Inviato:* Sabato 31 Dicembre 2011 12:11 > > *Oggetto:* [Xerte] Re: download file pdf > > Hello Dave, > > I just tried your approach and that works as well - just note that it is > the event's icon property that needs setting to mypic and not the event's > id property. But all in all a tidier solution than the one I offered. > > Nice one. > > Kind regards > > Johnathan > > On 30 December 2011 23:28, Dave Burnett wrote: > > The image itself is an allowable event target (at least it worked for me) > > > image (id = mypic > interaction > event (id = mypic, event=onRelease) > script (I think the problem is the way the relative path was specified > originally) > > > ------------------------------ > Date: Fri, 30 Dec 2011 19:13:14 +0000 > From: johnathan.kemp at ntlworld.com > To: matis25 at yahoo.com; xerte at lists.nottingham.ac.uk > > Subject: [Xerte] Re: download file pdf > > Hello Matteo, > > Try the following > > Create a new desktop xerte project with the icon structure > > Learning Object > Interface > page > image (id = myPic url = FileLocation + 'media/myFileName.jpg') > interaction (perpetual setting is either 1 or 0 depending on whether > you want the execution flow to stop at the interaction) > HotObject (rs = myPic click = 1) > Script > > The contents of the script are > > debug("clicked"); // will display a debug message in preview mode to > confirm click was detected > getURL('http://www.bbc.co.uk','_blank'); // change the first parameter to > match the url of the file you want to open > // getURL will open a window in your browser > > Notes on properties > > - You need to set the image icon's id property so that this can be > used in the HotObject to identify what object it is responding to. > - The interaction Icon can have a perpetual property of 1 or 0 try > both, one of the values will stop the project flow at the interaction but I > can't remember which it is - so play around with this setting. > - The HotObject icon's rs property must be set to the same value as > the Image icon's id property. The click property is set to 1 if you want > the event to trigger on clicking or 0 if you want to trigger the event on > mouse over. > > Hope this solves your problem > > Kind regards > > Johnathan > > > On 30 December 2011 11:26, pippo pluto wrote: > > Hello Johnathan > I tried your suggestion but does not work. > Maybe I'm wrong but I do not know where is the error...I'll try again.. > > Kind regards > Matteo > > ------------------------------ > *Da:* Kemp Johnathan > *A:* Xerte discussion list > *Inviato:* Gioved? 29 Dicembre 2011 23:40 > *Oggetto:* [Xerte] Re: download file pdf > > The ID is used as the unique identifier of an icon, so once you set the > icon property of an icon you can refer directly to it by using its ID. That > is except for icons that are normally the children of an interaction icon > i.e. the sort of icons you see listed when you right click on an > interaction icon in desktop Xerte e.g. button, hotspot etc. These use the > rs property to identify themselves and not the id property. > > Julian will know the why's and wherefore's of this. > > You can read about it in the "interactions overview" section of the Xerte > help file. > > Kind regards > > Johnathan > > You > > On 29 December 2011 19:26, KnowledgeWare wrote: > > Johnathan ? question if you don?t mind ? what?s the difference between the > ?rs? and ?id? properties? What?s the appropriate use of each? Where can I > learn more about these? > > Thanks > RonM2 > > *From:* xerte-bounces at lists.nottingham.ac.uk [mailto: > xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Kemp Johnathan > *Sent:* Thursday, December 29, 2011 3:51 AM > *To:* pippo pluto; Xerte discussion list > *Subject:* [Xerte] Re: download file pdf > > Hello Matteo, > > Sorry I don't have time to test this solution before suggesting it. > > Check out the Xerte help files. > > I don't think that by default an image icon is sensitive to mouse events > and thus will not trigger an onRelease event. > > However you can add a hotObject icon to an interaction and then add an > image icon as a child of the hotObject. This will allow mouse events to be > detected by the image. I am not sure if the event will be triggered by the > hot object or the image. If it is the hot object icon then you may need to > use the rs property rather than the id property to identify the hotObject > icon when specifying what object sends the event. > > Kind regards > > Johnathan > > On 29 December 2011 07:45, pippo pluto wrote: > hi > this is my problem: > > I have a small icon (a jpg image, it is called 'logopdf1') I would click > on and download a simple PDF file (its name is comparative.pdf) : > > I did it this way: > 1) I have an id (logo) associated with image > 2) I create an interection > 3) I create an event that I called Event1, icon : logo , eventname: > onRelease > 4) I create a script : into the script I wrote: > getURL('media/pdf/comparative.pdf', '_blank'); > > but doesn't work...what code should I write in the script? > > thank's > Matteo Pirola > University of Ferrara > Italy > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > This message has been checked for viruses but the contents of an > attachment may still contain software viruses which could damage your > computer system: you are advised to perform your own checks. Email > communications with the University of Nottingham may be monitored as > permitted by UK legislation. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do > not use, copy or disclose the information contained in this message or in > any attachment. Any views or opinions expressed by the author of this > email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do > not use, copy or disclose the information contained in this message or in > any attachment. Any views or opinions expressed by the author of this > email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > This message has been checked for viruses but the contents of an > attachment may still contain software viruses which could damage your > computer system: you are advised to perform your own checks. Email > communications with the University of Nottingham may be monitored as > permitted by UK legislation. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do > not use, copy or disclose the information contained in this message or in > any attachment. Any views or opinions expressed by the author of this > email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > > > _______________________________________________ Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any > attachment are intended solely for the addressee and may contain > confidential information. If you have received this message in error, > please send it back to me, and immediately delete it. Please do not use, > copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. This > message has been checked for viruses but the contents of an attachment may > still contain software viruses which could damage your computer system: you > are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do > not use, copy or disclose the information contained in this message or in > any attachment. Any views or opinions expressed by the author of this > email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do > not use, copy or disclose the information contained in this message or in > any attachment. Any views or opinions expressed by the author of this > email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From d_b_burnett at hotmail.com Sun Jan 1 14:17:33 2012 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Sun, 1 Jan 2012 09:17:33 -0500 Subject: [Xerte] Re: display checkmarks on menu In-Reply-To: <001201ccc83d$3f4a3590$bddea0b0$@kccsoft.com> References: <001201ccc83d$3f4a3590$bddea0b0$@kccsoft.com> Message-ID: I'd say place a single checkmark graphic/mc icon off the flow, duplicate it (maybe dynamically) as per number of sections.All are initially x/y'ed off screen.Then when you examine the array, use the array position value to position the matching checkmark child icon. From: knowledgeware at kccsoft.com To: xerte at lists.nottingham.ac.uk Date: Sat, 31 Dec 2011 20:24:25 -0800 Subject: [Xerte] display checkmarks on menu I?d like to turn checkmarks on on a menu when the student has finished a section. I want to loop through an array to get ?1? or ?0? then place the checkmark and display it if the value is ?1?. How to best do that in AS? Can I create one checkmark graphic, move it around with x/y coordinates and make it visible on the fly? Any time saving suggestions on how to best handle this? My AW code is not a direct port on this one :- ( Happy New Year! RonM2 This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. -------------- next part -------------- An HTML attachment was scrubbed... URL: From d_b_burnett at hotmail.com Sun Jan 1 17:22:30 2012 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Sun, 1 Jan 2012 12:22:30 -0500 Subject: [Xerte] set x values using relative path instead of ID In-Reply-To: References: <1325144714.69853.YahooMailNeo@web24106.mail.ird.yahoo.com>, , <00ac01ccc65f$cb4d8630$61e89290$@kccsoft.com>, , <1325244403.39058.YahooMailNeo@web24103.mail.ird.yahoo.com>, , , , <1325423737.67657.YahooMailNeo@web24102.mail.ird.yahoo.com>, Message-ID: Happy New Year!Too much happiness actually, getting a brain lock. //set the x value of this display //from here, not knowing the ID of the DIS something like icon._parent._parent.clip()._x etc??? I can't figure it out. -------------- next part -------------- An HTML attachment was scrubbed... URL: From knowledgeware at kccsoft.com Mon Jan 2 00:48:15 2012 From: knowledgeware at kccsoft.com (KnowledgeWare) Date: Sun, 1 Jan 2012 16:48:15 -0800 Subject: [Xerte] Re: display checkmarks on menu In-Reply-To: References: <001201ccc83d$3f4a3590$bddea0b0$@kccsoft.com> Message-ID: <001901ccc8e8$36deca00$a49c5e00$@kccsoft.com> Hello Johnathan Thanks for this suggestion. It's far bit over my head at this point but I'll try to work my way through it as time permits. RonM2 :- ) From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Kemp Johnathan Sent: Sunday, January 01, 2012 4:57 AM To: Xerte discussion list Subject: [Xerte] Re: display checkmarks on menu Hello Ron, I don't know how you are building your menu but if each item is a text object you could assign an image to each text item and then change the image when the menu item has been accessed. Create an image icon for each image you will require - it may be you just use a tick image and a transparent image. In this example I'll call then imgBlank and imgTick For each image capture the url data blankUrl = imgBlank.XMLElement.attributes.url.substring(16,imgBlank.XMLElement.attribut es.url.length -1 ); tickUrl = imgTick.XMLElement.attributes.url.substring(16,imgTick.XMLElement.attributes .url.length -1 ); // Set the image visible properties to 0 to hide them. imgBlank._visible = 0; imgTick._visible = 0; // create a movieclip loader loader = new MovieClipLoader(); // for each text icon in your menu you can then assign an image txtMenuItemA.createEmptyMovieClip("myImage", 999); // then assign the appropriate graphic loader.loadClip(FileLocation + blankUrl, txtMenuItemA.myImage); // at a later time you should be able to change the graphic to a tick loader.loadClip(FileLocation + tickUrl, txtMenuItemA.myImage); The above is based on a page I created a while back. I don't have time to test it out now but if you think it looks like it may solve your problem then give it a try. If you have any issues getting it to work post back and I will check everything over to make sure I haven't missed anything out. Kind regards Johnathan On 1 January 2012 04:24, KnowledgeWare wrote: I'd like to turn checkmarks on on a menu when the student has finished a section. I want to loop through an array to get '1' or '0' then place the checkmark and display it if the value is '1'. How to best do that in AS? Can I create one checkmark graphic, move it around with x/y coordinates and make it visible on the fly? Any time saving suggestions on how to best handle this? My AW code is not a direct port on this one :- ( Happy New Year! RonM2 This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. -------------- next part -------------- An HTML attachment was scrubbed... URL: From d_b_burnett at hotmail.com Mon Jan 2 12:19:09 2012 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Mon, 2 Jan 2012 07:19:09 -0500 Subject: [Xerte] children of entry pane question In-Reply-To: <1325423737.67657.YahooMailNeo@web24102.mail.ird.yahoo.com> References: <1325144714.69853.YahooMailNeo@web24106.mail.ird.yahoo.com>, , <00ac01ccc65f$cb4d8630$61e89290$@kccsoft.com>, , <1325244403.39058.YahooMailNeo@web24103.mail.ird.yahoo.com>, , , , <1325423737.67657.YahooMailNeo@web24102.mail.ird.yahoo.com> Message-ID: In the IFC framework entry below I have a script icon that duplicates a proto display // id=fwid // dupes proto below 4 times When I query for the children of that FW_ENT, I only get the displays listed. inspect(fwid) children : _level0.engine.IFC.FW_ENT.DIS_MC1,_level0.engine.IFC.FW_ENT.DIS_MC2,_level0.engine.IFC.FW_ENT.DIS_MC3,_level0.engine.IFC.FW_ENT.DIS_MC4,_level0.engine.IFC.FW_ENT.DIS_MC5 Does the SCR not count as a child? -------------- next part -------------- An HTML attachment was scrubbed... URL: From johnathan.kemp at ntlworld.com Mon Jan 2 15:39:17 2012 From: johnathan.kemp at ntlworld.com (Kemp Johnathan) Date: Mon, 2 Jan 2012 15:39:17 +0000 Subject: [Xerte] Re: set x values using relative path instead of ID In-Reply-To: References: <1325144714.69853.YahooMailNeo@web24106.mail.ird.yahoo.com> <00ac01ccc65f$cb4d8630$61e89290$@kccsoft.com> <1325244403.39058.YahooMailNeo@web24103.mail.ird.yahoo.com> <1325423737.67657.YahooMailNeo@web24102.mail.ird.yahoo.com> Message-ID: How about icon.parentNode.parentNode.parentNode.parentNode.firstChild.clip()._x ? Just a wild guess! Kind regards Johnathan On 1 January 2012 17:22, Dave Burnett wrote: > > Happy New Year! > Too much happiness actually, getting a brain lock. > > > > > > //set the x value of this display > > > > //from here, not knowing the ID of the DIS > > > something like icon._parent._parent.clip()._x etc??? > > I can't figure it out. > > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an > attachment may still contain software viruses which could damage your > computer system: you are advised to perform your own checks. Email > communications with the University of Nottingham may be monitored as > permitted by UK legislation. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do > not use, copy or disclose the information contained in this message or in > any attachment. Any views or opinions expressed by the author of this > email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From d_b_burnett at hotmail.com Mon Jan 2 16:21:42 2012 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Mon, 2 Jan 2012 11:21:42 -0500 Subject: [Xerte] Re: set x values using relative path instead of ID In-Reply-To: References: <1325144714.69853.YahooMailNeo@web24106.mail.ird.yahoo.com>, , <00ac01ccc65f$cb4d8630$61e89290$@kccsoft.com>, , <1325244403.39058.YahooMailNeo@web24103.mail.ird.yahoo.com>, , , , <1325423737.67657.YahooMailNeo@web24102.mail.ird.yahoo.com>, , , Message-ID: Thanks Johnathan. I tried many variations on that theme. :-) I think the problem is that nomen addresses the xml nodes, while I'm trying to address an instantiated object. I finally ran across this: _level0.engine.IFC.FW_ENT.children[i]._y = 100+(offset*i); which I loop through and can indeed move the clips about after they have been created. Probably some misuse of code in there, which Julian will box my ears with when he returns.;-) Dave Date: Mon, 2 Jan 2012 15:39:17 +0000 From: johnathan.kemp at ntlworld.com To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: set x values using relative path instead of ID How about icon.parentNode.parentNode.parentNode.parentNode.firstChild.clip()._x ? Just a wild guess! Kind regards Johnathan On 1 January 2012 17:22, Dave Burnett wrote: Happy New Year!Too much happiness actually, getting a brain lock. //set the x value of this display //from here, not knowing the ID of the DIS something like icon._parent._parent.clip()._x etc??? I can't figure it out. This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Tue Jan 3 09:46:17 2012 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Tue, 3 Jan 2012 09:46:17 +0000 Subject: [Xerte] Re: children of entry pane question In-Reply-To: References: <1325144714.69853.YahooMailNeo@web24106.mail.ird.yahoo.com>, , <00ac01ccc65f$cb4d8630$61e89290$@kccsoft.com>, , <1325244403.39058.YahooMailNeo@web24103.mail.ird.yahoo.com>, , , , <1325423737.67657.YahooMailNeo@web24102.mail.ird.yahoo.com> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0B9FDBEEAD@EXCHANGE1.ad.nottingham.ac.uk> SCR doesn't get turned into a movieclip, so it's never made a child: rather the code in it just executes. You'll see the results of the dupe in the xml, rather than the movieclips until the rest of the xml has been parsed. If you debug in another script after the dupe'd DIS icons, you'll see them, J From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 02 January 2012 12:19 To: Xerte list Subject: [Xerte] children of entry pane question In the IFC framework entry below I have a script icon that duplicates a proto display // id=fwid // dupes proto below 4 times When I query for the children of that FW_ENT, I only get the displays listed. inspect(fwid) children : _level0.engine.IFC.FW_ENT.DIS_MC1,_level0.engine.IFC.FW_ENT.DIS_MC2,_level0.engine.IFC.FW_ENT.DIS_MC3,_level0.engine.IFC.FW_ENT.DIS_MC4,_level0.engine.IFC.FW_ENT.DIS_MC5 Does the SCR not count as a child? -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Tue Jan 3 09:50:41 2012 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Tue, 3 Jan 2012 09:50:41 +0000 Subject: [Xerte] Re: set x values using relative path instead of ID In-Reply-To: References: <1325144714.69853.YahooMailNeo@web24106.mail.ird.yahoo.com>, , <00ac01ccc65f$cb4d8630$61e89290$@kccsoft.com>, , <1325244403.39058.YahooMailNeo@web24103.mail.ird.yahoo.com>, , , , <1325423737.67657.YahooMailNeo@web24102.mail.ird.yahoo.com>, Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0B9FDBEEBC@EXCHANGE1.ad.nottingham.ac.uk> Give the DIS an ID? Otherwise give the FW_ENT an ID and you can do myFWENT.XMLElement.firstChild.clip() Or I think there are some getChildByName that will return the XML Node for an icon known by name / ID, so you can do rootIcon.XMLElement.getChildByName(); Otherwise it's really too messy to do the icon.parentNode.parentNode.parentNode.previousSibling.firstChild, but you could do. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 01 January 2012 17:23 To: Xerte list Subject: [Xerte] set x values using relative path instead of ID Happy New Year! Too much happiness actually, getting a brain lock. //set the x value of this display //from here, not knowing the ID of the DIS something like icon._parent._parent.clip()._x etc??? I can't figure it out. -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Tue Jan 3 09:53:11 2012 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Tue, 3 Jan 2012 09:53:11 +0000 Subject: [Xerte] Re: display checkmarks on menu In-Reply-To: <001201ccc83d$3f4a3590$bddea0b0$@kccsoft.com> References: <001201ccc83d$3f4a3590$bddea0b0$@kccsoft.com> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0B9FDBEEC7@EXCHANGE1.ad.nottingham.ac.uk> There is a 'tick' symbol in the engine's library for this purpose, called 'tick', so you can do attachMovie(). You can change the colour of the tick using the MovieClip methods, setRGB() I think. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of KnowledgeWare Sent: 01 January 2012 04:24 To: Xerte discussion list Subject: [Xerte] display checkmarks on menu I'd like to turn checkmarks on on a menu when the student has finished a section. I want to loop through an array to get '1' or '0' then place the checkmark and display it if the value is '1'. How to best do that in AS? Can I create one checkmark graphic, move it around with x/y coordinates and make it visible on the fly? Any time saving suggestions on how to best handle this? My AW code is not a direct port on this one :- ( Happy New Year! RonM2 -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Tue Jan 3 10:34:18 2012 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Tue, 3 Jan 2012 10:34:18 +0000 Subject: [Xerte] Re: download file pdf In-Reply-To: References: <1325144714.69853.YahooMailNeo@web24106.mail.ird.yahoo.com> <00ac01ccc65f$cb4d8630$61e89290$@kccsoft.com> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0B9FDBEF6E@EXCHANGE1.ad.nottingham.ac.uk> Julian will know the why's and wherefore's of this. They are simply facts of life. The real explanation is that there are two IDs associated with an interaction response: the interactive 'thing' (a button, image, control, etc) and the page of content that is rendered when the interaction is matched. So we needed a new property for the interactive 'thing' and 'rs' is short for 'response'. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Kemp Johnathan Sent: 29 December 2011 22:41 To: Xerte discussion list Subject: [Xerte] Re: download file pdf The ID is used as the unique identifier of an icon, so once you set the icon property of an icon you can refer directly to it by using its ID. That is except for icons that are normally the children of an interaction icon i.e. the sort of icons you see listed when you right click on an interaction icon in desktop Xerte e.g. button, hotspot etc. These use the rs property to identify themselves and not the id property. Julian will know the why's and wherefore's of this. You can read about it in the "interactions overview" section of the Xerte help file. Kind regards Johnathan You On 29 December 2011 19:26, KnowledgeWare > wrote: Johnathan - question if you don't mind - what's the difference between the 'rs' and 'id' properties? What's the appropriate use of each? Where can I learn more about these? Thanks RonM2 From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Kemp Johnathan Sent: Thursday, December 29, 2011 3:51 AM To: pippo pluto; Xerte discussion list Subject: [Xerte] Re: download file pdf Hello Matteo, Sorry I don't have time to test this solution before suggesting it. Check out the Xerte help files. I don't think that by default an image icon is sensitive to mouse events and thus will not trigger an onRelease event. However you can add a hotObject icon to an interaction and then add an image icon as a child of the hotObject. This will allow mouse events to be detected by the image. I am not sure if the event will be triggered by the hot object or the image. If it is the hot object icon then you may need to use the rs property rather than the id property to identify the hotObject icon when specifying what object sends the event. Kind regards Johnathan On 29 December 2011 07:45, pippo pluto > wrote: hi this is my problem: I have a small icon (a jpg image, it is called 'logopdf1') I would click on and download a simple PDF file (its name is comparative.pdf) : I did it this way: 1) I have an id (logo) associated with image 2) I create an interection 3) I create an event that I called Event1, icon : logo , eventname: onRelease 4) I create a script : into the script I wrote: getURL('media/pdf/comparative.pdf', '_blank'); but doesn't work...what code should I write in the script? thank's Matteo Pirola University of Ferrara Italy This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Tue Jan 3 11:43:23 2012 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Tue, 3 Jan 2012 11:43:23 +0000 Subject: [Xerte] Re: youtube movie dimensions In-Reply-To: <4EF1248C.1050801@tor.nl> References: <015401ccbe98$1ef4d510$5cde7f30$@kccsoft.com> <12C67A1EEC419342AF5E59DA31562C3F0B9F849C46@EXCHANGE1.ad.nottingham.ac.uk> <4EF1248C.1050801@tor.nl> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0B9FDBF02F@EXCHANGE1.ad.nottingham.ac.uk> You still see the movie flicker though? It appears large, then resizes to fit the white panel? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Tom Reijnders Sent: 21 December 2011 00:13 To: Xerte discussion list Subject: [Xerte] Re: youtube movie dimensions Couldn't resist.... :-) It depends a bit on the youtube model you have. This is preliminary, I have no final fix (I am not at home, and have no access to all I need) If you have a version where you can set the size, it is more or less already fixed. If you are using an older model, you need to update the model, or change the component. This is (probably) caused by the fact that the default video size that youtube sends has been changed from 320x240 to something larger. SetSize is never called after initialisation, and Xerte assumes that the size should be 320x240. If you use one of the newer model where you can set the size, this works. As far as I can tell you need to set the correct size in the onPlayerLoad event handler script. See the toggle event handler for an example. Tom Op 20-12-2011 22:48, Julian Tenney schreef: If anyone's got nothing better to do, then the source code is in the /templates folder of a xerte windows install, and the youtube docs are online. Make a page templates project, and then compile youTubeComponent.fla over the swf in /common, and see what happens. The .fla is not complicated... ...but you really ought to have better things to be doing at this time of year... ...so Merry Christmas! Thanks to everyone for all the input this year, enjoy the holidays, and we'll pick it all up again in the New year. Best wishes for a great 2012. J ________________________________ From: xerte-bounces at lists.nottingham.ac.uk [xerte-bounces at lists.nottingham.ac.uk] On Behalf Of KnowledgeWare [knowledgeware at kccsoft.com] Sent: 19 December 2011 21:49 To: Xerte discussion list Subject: [Xerte] youtube movie dimensions I'm still stuck on youtube movie sizing. When I enter a youtube movie page the movie is oversized like in the image below to the left. I want it to display in the preview window as the image below on the right. I'd appreciate it if someone could try these links below and tell me if the youtube movie (usually page 7) displays properly in the small preview window or opens right off the page as in the image below left. On all my machines here it is right off the page. http://www.kccsoft.com/RGM/ssv51training/index.htm (desktop version) https://kccsoft.com/u2c/tk100714/play.php?template_id=410 (toolkits 1.5 version) This just started a few days ago, up until then the page opened with the movie in the preview window. I'm using the youtube older 'object' 'embed' code. I've tried setting the xerte display mode from 'full screen' and 'full window' to 'default', set text alignment to 'right' and tried removing the variables off the end of the youtube URL, all to no effect. If you play with the 'magnify' icon (click it three times) the movie will resize back into the preview window, but that's too much to ask a user to do. Is there a way I can initialize the movie size when the page loads or somehow force the size (although it is set in the youtube embed code). Thanks for any suggestions....am I missing something obvious? RonM2 [cid:image001.jpg at 01CCCA0C.E659B9C0][cid:image002.jpg at 01CCCA0C.E659B9C0] This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. -- -- Tom Reijnders TOR Informatica Chopinlaan 27 5242HM Rosmalen Tel: 073 5226191 Fax: 073 5226196 -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 26619 bytes Desc: image001.jpg URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image002.jpg Type: image/jpeg Size: 20102 bytes Desc: image002.jpg URL: From Julian.Tenney at nottingham.ac.uk Tue Jan 3 11:50:57 2012 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Tue, 3 Jan 2012 11:50:57 +0000 Subject: [Xerte] Re: youtube movie dimensions In-Reply-To: <4EF1248C.1050801@tor.nl> References: <015401ccbe98$1ef4d510$5cde7f30$@kccsoft.com> <12C67A1EEC419342AF5E59DA31562C3F0B9F849C46@EXCHANGE1.ad.nottingham.ac.uk> <4EF1248C.1050801@tor.nl> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0B9FDBF043@EXCHANGE1.ad.nottingham.ac.uk> OK, a simple enough fix is to hide the youtube swf off the screen until onPlayerLoad fires and then let the code in there reposition it. Then you don't see the component flickering: http://www.nottingham.ac.uk/toolkits/play_6393 From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Tom Reijnders Sent: 21 December 2011 00:13 To: Xerte discussion list Subject: [Xerte] Re: youtube movie dimensions Couldn't resist.... :-) It depends a bit on the youtube model you have. This is preliminary, I have no final fix (I am not at home, and have no access to all I need) If you have a version where you can set the size, it is more or less already fixed. If you are using an older model, you need to update the model, or change the component. This is (probably) caused by the fact that the default video size that youtube sends has been changed from 320x240 to something larger. SetSize is never called after initialisation, and Xerte assumes that the size should be 320x240. If you use one of the newer model where you can set the size, this works. As far as I can tell you need to set the correct size in the onPlayerLoad event handler script. See the toggle event handler for an example. Tom Op 20-12-2011 22:48, Julian Tenney schreef: If anyone's got nothing better to do, then the source code is in the /templates folder of a xerte windows install, and the youtube docs are online. Make a page templates project, and then compile youTubeComponent.fla over the swf in /common, and see what happens. The .fla is not complicated... ...but you really ought to have better things to be doing at this time of year... ...so Merry Christmas! Thanks to everyone for all the input this year, enjoy the holidays, and we'll pick it all up again in the New year. Best wishes for a great 2012. J ________________________________ From: xerte-bounces at lists.nottingham.ac.uk [xerte-bounces at lists.nottingham.ac.uk] On Behalf Of KnowledgeWare [knowledgeware at kccsoft.com] Sent: 19 December 2011 21:49 To: Xerte discussion list Subject: [Xerte] youtube movie dimensions I'm still stuck on youtube movie sizing. When I enter a youtube movie page the movie is oversized like in the image below to the left. I want it to display in the preview window as the image below on the right. I'd appreciate it if someone could try these links below and tell me if the youtube movie (usually page 7) displays properly in the small preview window or opens right off the page as in the image below left. On all my machines here it is right off the page. http://www.kccsoft.com/RGM/ssv51training/index.htm (desktop version) https://kccsoft.com/u2c/tk100714/play.php?template_id=410 (toolkits 1.5 version) This just started a few days ago, up until then the page opened with the movie in the preview window. I'm using the youtube older 'object' 'embed' code. I've tried setting the xerte display mode from 'full screen' and 'full window' to 'default', set text alignment to 'right' and tried removing the variables off the end of the youtube URL, all to no effect. If you play with the 'magnify' icon (click it three times) the movie will resize back into the preview window, but that's too much to ask a user to do. Is there a way I can initialize the movie size when the page loads or somehow force the size (although it is set in the youtube embed code). Thanks for any suggestions....am I missing something obvious? RonM2 [cid:image001.jpg at 01CCCA0D.F4811E70][cid:image002.jpg at 01CCCA0D.F4811E70] This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. -- -- Tom Reijnders TOR Informatica Chopinlaan 27 5242HM Rosmalen Tel: 073 5226191 Fax: 073 5226196 -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 26619 bytes Desc: image001.jpg URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image002.jpg Type: image/jpeg Size: 20102 bytes Desc: image002.jpg URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: youtube.rlm Type: application/octet-stream Size: 7596 bytes Desc: youtube.rlm URL: From reijnders at tor.nl Tue Jan 3 12:26:24 2012 From: reijnders at tor.nl (Tom Reijnders) Date: Tue, 03 Jan 2012 13:26:24 +0100 Subject: [Xerte] Re: youtube movie dimensions In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0B9FDBF043@EXCHANGE1.ad.nottingham.ac.uk> References: <015401ccbe98$1ef4d510$5cde7f30$@kccsoft.com> <12C67A1EEC419342AF5E59DA31562C3F0B9F849C46@EXCHANGE1.ad.nottingham.ac.uk> <4EF1248C.1050801@tor.nl> <12C67A1EEC419342AF5E59DA31562C3F0B9FDBF043@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <4F02F3F0.5060303@tor.nl> Yes, that works! Perfect! Op 3-1-2012 12:50, Julian Tenney schreef: > > OK, a simple enough fix is to hide the youtube swf off the screen > until onPlayerLoad fires and then let the code in there reposition it. > Then you don't see the component flickering: > > http://www.nottingham.ac.uk/toolkits/play_6393 > > *From:*xerte-bounces at lists.nottingham.ac.uk > [mailto:xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Tom Reijnders > *Sent:* 21 December 2011 00:13 > *To:* Xerte discussion list > *Subject:* [Xerte] Re: youtube movie dimensions > > Couldn't resist.... :-) > It depends a bit on the youtube model you have. > > This is preliminary, I have no final fix (I am not at home, and have > no access to all I need) > > If you have a version where you can set the size, it is more or less > already fixed. > If you are using an older model, you need to update the model, or > change the component. > > This is (probably) caused by the fact that the default video size that > youtube sends has been changed from 320x240 to something larger. > > SetSize is never called after initialisation, and Xerte assumes that > the size should be 320x240. If you use one of the newer model where > you can set the size, this works. > > As far as I can tell you need to set the correct size in the > onPlayerLoad event handler script. See the toggle event handler for an > example. > > Tom > > > > Op 20-12-2011 22:48, Julian Tenney schreef: > > If anyone's got nothing better to do, then the source code is in the > /templates folder of a xerte windows install, and the youtube docs are > online. Make a page templates project, and then compile > youTubeComponent.fla over the swf in /common, and see what happens. > The .fla is not complicated... > > ...but you really ought to have better things to be doing at this time > of year... > > ...so Merry Christmas! Thanks to everyone for all the input this year, > enjoy the holidays, and we'll pick it all up again in the New year. > > Best wishes for a great 2012. > > J > > ------------------------------------------------------------------------ > > *From:*xerte-bounces at lists.nottingham.ac.uk > > [xerte-bounces at lists.nottingham.ac.uk > ] On Behalf Of > KnowledgeWare [knowledgeware at kccsoft.com > ] > *Sent:* 19 December 2011 21:49 > *To:* Xerte discussion list > *Subject:* [Xerte] youtube movie dimensions > > I'm still stuck on youtube movie sizing. When I enter a youtube movie > page the movie is oversized like in the image below to the left. I > want it to display in the preview window as the image below on the right. > > I'd appreciate it if someone could try these links below and tell me > if the youtube movie (usually page 7) displays properly in the small > preview window or opens right off the page as in the image below left. > On all my machines here it is right off the page. > > http://www.kccsoft.com/RGM/ssv51training/index.htm (desktop version) > > https://kccsoft.com/u2c/tk100714/play.php?template_id=410 (toolkits > 1.5 version) > > This just started a few days ago, up until then the page opened with > the movie in the preview window. I'm using the youtube older 'object' > 'embed' code. I've tried setting the xerte display mode from 'full > screen' and 'full window' to 'default', set text alignment to 'right' > and tried removing the variables off the end of the youtube URL, all > to no effect. > > If you play with the 'magnify' icon (click it three times) the movie > will resize back into the preview window, but that's too much to ask a > user to do. Is there a way I can initialize the movie size when the > page loads or somehow force the size (although it is set in the > youtube embed code). > > Thanks for any suggestions....am I missing something obvious? > > RonM2 > > This message and any attachment are intended solely for the addressee > and may contain confidential information. If you have received this > message in error, please send it back to me, and immediately delete > it. Please do not use, copy or disclose the information contained in > this message or in any attachment. Any views or opinions expressed by > the author of this email do not necessarily reflect the views of the > University of Nottingham. > > This message has been checked for viruses but the contents of an > attachment may still contain software viruses which could damage your > computer system: you are advised to perform your own checks. Email > communications with the University of Nottingham may be monitored as > permitted by UK legislation. > > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > > > -- > -- > > Tom Reijnders > TOR Informatica > Chopinlaan 27 > 5242HM Rosmalen > Tel: 073 5226191 > Fax: 073 5226196 > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > -- -- Tom Reijnders TOR Informatica Chopinlaan 27 5242HM Rosmalen Tel: 073 5226191 Fax: 073 5226196 -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: image/jpeg Size: 26619 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: image/jpeg Size: 20102 bytes Desc: not available URL: From d_b_burnett at hotmail.com Tue Jan 3 12:32:42 2012 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Tue, 3 Jan 2012 07:32:42 -0500 Subject: [Xerte] Re: youtube movie dimensions In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0B9FDBF043@EXCHANGE1.ad.nottingham.ac.uk> References: <015401ccbe98$1ef4d510$5cde7f30$@kccsoft.com>, <12C67A1EEC419342AF5E59DA31562C3F0B9F849C46@EXCHANGE1.ad.nottingham.ac.uk>, <4EF1248C.1050801@tor.nl>, <12C67A1EEC419342AF5E59DA31562C3F0B9FDBF043@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: > OK, a simple enough fix is to hide the youtube swf off the screen until onPlayerLoad fires and then let the code in there reposition it. Echoes of ActiveX in AW in my head."How do I hide the white flash?"Auld Lang Syne. -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 26619 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image002.jpg Type: image/jpeg Size: 20102 bytes Desc: not available URL: From d_b_burnett at hotmail.com Tue Jan 3 12:36:07 2012 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Tue, 3 Jan 2012 07:36:07 -0500 Subject: [Xerte] Re: display checkmarks on menu In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0B9FDBEEC7@EXCHANGE1.ad.nottingham.ac.uk> References: <001201ccc83d$3f4a3590$bddea0b0$@kccsoft.com>, <12C67A1EEC419342AF5E59DA31562C3F0B9FDBEEC7@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: aha. That's actually what the other thread is about. (parentNode etc) We're duping a custom swf "tick" icon in the IFC entrypane then repositioning as sections are completed. From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Tue, 3 Jan 2012 09:53:11 +0000 Subject: [Xerte] Re: display checkmarks on menu There is a ?tick? symbol in the engine?s library for this purpose, called ?tick?, so you can do attachMovie(). You can change the colour of the tick using the MovieClip methods, setRGB() I think. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of KnowledgeWare Sent: 01 January 2012 04:24 To: Xerte discussion list Subject: [Xerte] display checkmarks on menu I?d like to turn checkmarks on on a menu when the student has finished a section. I want to loop through an array to get ?1? or ?0? then place the checkmark and display it if the value is ?1?. How to best do that in AS? Can I create one checkmark graphic, move it around with x/y coordinates and make it visible on the fly? Any time saving suggestions on how to best handle this? My AW code is not a direct port on this one :- ( Happy New Year! RonM2 This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. -------------- next part -------------- An HTML attachment was scrubbed... URL: From ronm at mitchellmedia.co.uk Tue Jan 3 12:42:51 2012 From: ronm at mitchellmedia.co.uk (Ron Mitchell) Date: Tue, 3 Jan 2012 12:42:51 -0000 Subject: [Xerte] Re: youtube movie dimensions In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0B9FDBF043@EXCHANGE1.ad.nottingham.ac.uk> References: <015401ccbe98$1ef4d510$5cde7f30$@kccsoft.com> <12C67A1EEC419342AF5E59DA31562C3F0B9F849C46@EXCHANGE1.ad.nottingham.ac.uk> <4EF1248C.1050801@tor.nl> <12C67A1EEC419342AF5E59DA31562C3F0B9FDBF043@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <008b01ccca15$36c0a2e0$a441e8a0$@co.uk> Thanks Julian - seems to work a treat! e.g. no more flash and snap back For any sandpit users reading this - the new .rlm is now in place on the sandpit From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 03 January 2012 11:51 To: Xerte discussion list Subject: [Xerte] Re: youtube movie dimensions OK, a simple enough fix is to hide the youtube swf off the screen until onPlayerLoad fires and then let the code in there reposition it. Then you don't see the component flickering: http://www.nottingham.ac.uk/toolkits/play_6393 From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Tom Reijnders Sent: 21 December 2011 00:13 To: Xerte discussion list Subject: [Xerte] Re: youtube movie dimensions Couldn't resist.... :-) It depends a bit on the youtube model you have. This is preliminary, I have no final fix (I am not at home, and have no access to all I need) If you have a version where you can set the size, it is more or less already fixed. If you are using an older model, you need to update the model, or change the component. This is (probably) caused by the fact that the default video size that youtube sends has been changed from 320x240 to something larger. SetSize is never called after initialisation, and Xerte assumes that the size should be 320x240. If you use one of the newer model where you can set the size, this works. As far as I can tell you need to set the correct size in the onPlayerLoad event handler script. See the toggle event handler for an example. Tom Op 20-12-2011 22:48, Julian Tenney schreef: If anyone's got nothing better to do, then the source code is in the /templates folder of a xerte windows install, and the youtube docs are online. Make a page templates project, and then compile youTubeComponent.fla over the swf in /common, and see what happens. The .fla is not complicated... ...but you really ought to have better things to be doing at this time of year... ...so Merry Christmas! Thanks to everyone for all the input this year, enjoy the holidays, and we'll pick it all up again in the New year. Best wishes for a great 2012. J _____ From: xerte-bounces at lists.nottingham.ac.uk [xerte-bounces at lists.nottingham.ac.uk] On Behalf Of KnowledgeWare [knowledgeware at kccsoft.com] Sent: 19 December 2011 21:49 To: Xerte discussion list Subject: [Xerte] youtube movie dimensions I'm still stuck on youtube movie sizing. When I enter a youtube movie page the movie is oversized like in the image below to the left. I want it to display in the preview window as the image below on the right. I'd appreciate it if someone could try these links below and tell me if the youtube movie (usually page 7) displays properly in the small preview window or opens right off the page as in the image below left. On all my machines here it is right off the page. http://www.kccsoft.com/RGM/ssv51training/index.htm (desktop version) https://kccsoft.com/u2c/tk100714/play.php?template_id=410 (toolkits 1.5 version) This just started a few days ago, up until then the page opened with the movie in the preview window. I'm using the youtube older 'object' 'embed' code. I've tried setting the xerte display mode from 'full screen' and 'full window' to 'default', set text alignment to 'right' and tried removing the variables off the end of the youtube URL, all to no effect. If you play with the 'magnify' icon (click it three times) the movie will resize back into the preview window, but that's too much to ask a user to do. Is there a way I can initialize the movie size when the page loads or somehow force the size (although it is set in the youtube embed code). Thanks for any suggestions..am I missing something obvious? RonM2 This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. -- -- Tom Reijnders TOR Informatica Chopinlaan 27 5242HM Rosmalen Tel: 073 5226191 Fax: 073 5226196 -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 26619 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image002.jpg Type: image/jpeg Size: 20102 bytes Desc: not available URL: From Julian.Tenney at nottingham.ac.uk Tue Jan 3 13:06:32 2012 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Tue, 3 Jan 2012 13:06:32 +0000 Subject: [Xerte] Re: youtube movie dimensions In-Reply-To: References: <015401ccbe98$1ef4d510$5cde7f30$@kccsoft.com>, <12C67A1EEC419342AF5E59DA31562C3F0B9F849C46@EXCHANGE1.ad.nottingham.ac.uk>, <4EF1248C.1050801@tor.nl>, <12C67A1EEC419342AF5E59DA31562C3F0B9FDBF043@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0B9FDBF0CF@EXCHANGE1.ad.nottingham.ac.uk> I think that was the thing Authorware taught me best: how to work around just about every possible issue there might ever be... I remember once thinking 'why would you need a 0 second wait icon...' From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 03 January 2012 12:33 To: Xerte list Subject: [Xerte] Re: youtube movie dimensions > OK, a simple enough fix is to hide the youtube swf off the screen until onPlayerLoad fires and then let the code in there reposition it. Echoes of ActiveX in AW in my head. "How do I hide the white flash?" Auld Lang Syne. -------------- next part -------------- An HTML attachment was scrubbed... URL: From d_b_burnett at hotmail.com Tue Jan 3 13:26:14 2012 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Tue, 3 Jan 2012 08:26:14 -0500 Subject: [Xerte] Re: youtube movie dimensions In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0B9FDBF0CF@EXCHANGE1.ad.nottingham.ac.uk> References: <015401ccbe98$1ef4d510$5cde7f30$@kccsoft.com>, , <12C67A1EEC419342AF5E59DA31562C3F0B9F849C46@EXCHANGE1.ad.nottingham.ac.uk>, , <4EF1248C.1050801@tor.nl>, , <12C67A1EEC419342AF5E59DA31562C3F0B9FDBF043@EXCHANGE1.ad.nottingham.ac.uk>, , <12C67A1EEC419342AF5E59DA31562C3F0B9FDBF0CF@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: Or a motion icon set to 0 seconds.But remember to leave 1x1 pixels on screen, or it won't work...:-) From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Tue, 3 Jan 2012 13:06:32 +0000 Subject: [Xerte] Re: youtube movie dimensions I think that was the thing Authorware taught me best: how to work around just about every possible issue there might ever be? I remember once thinking ?why would you need a 0 second wait icon?? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 03 January 2012 12:33 To: Xerte list Subject: [Xerte] Re: youtube movie dimensions > OK, a simple enough fix is to hide the youtube swf off the screen until onPlayerLoad fires and then let the code in there reposition it. Echoes of ActiveX in AW in my head."How do I hide the white flash?"Auld Lang Syne. This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Tue Jan 3 14:13:11 2012 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Tue, 3 Jan 2012 14:13:11 +0000 Subject: [Xerte] Re: [Xerte2] Drag and drop labelling: align top or bottom? In-Reply-To: References: Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0B9FDBF145@EXCHANGE1.ad.nottingham.ac.uk> Not a the moment, you'd need to add the functionality to handle the different layouts to the code, J -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Hugo Callens Sent: 21 December 2011 09:53 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] [Xerte2] Drag and drop labelling: align top or bottom? Hi, Image and Advanced image objects have the ability of aligning text to top or bottom. Drag and drop labelling and Hotspot image only provide left and right options. Is it possible in any way to have top and bottom alignment in these object types too, combined with a full width image? Thx for any hints. Op 19-dec-2011, om 09:34 heeft xerte-request at lists.nottingham.ac.uk het volgende geschreven: > Send Xerte mailing list submissions to > xerte at lists.nottingham.ac.uk > > To subscribe or unsubscribe via the World Wide Web, visit > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > or, via email, send a message with subject or body 'help' to > xerte-request at lists.nottingham.ac.uk > > You can reach the person managing the list at > xerte-owner at lists.nottingham.ac.uk > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of Xerte digest..." > > > Today's Topics: > > 1. Re: Change Flash container size (Hugo Callens) > 2. Re: Change Flash container size (Dave Burnett) > 3. Re: XOT - Speech recognition - Keyboard short cut keys > (Alistair McNaught) > 4. Re: XOT - Speech recognition - Keyboard short cut keys > (Alistair McNaught) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Sun, 18 Dec 2011 19:51:40 +0100 > From: Hugo Callens > To: xerte at lists.nottingham.ac.uk > Subject: [Xerte] Re: Change Flash container size > Message-ID: <7C15D295-69D7-49FA-9AC5-26B7EA547842 at socius.be> > Content-Type: text/plain; charset=us-ascii > > Hi Dave, > > The Flash stage size. Talking about Xerte2 desktop. > I am new to this; but I guess my question can also be put as: how to make a custom 900x500 interface instead of the standard 800x600? > > Regards > > Hugo > >> >> Message: 2 >> Date: Sun, 18 Dec 2011 11:48:13 -0500 >> From: Dave Burnett >> To: Xerte list >> Subject: [Xerte] Re: Change Flash container size >> Message-ID: >> Content-Type: text/plain; charset="iso-8859-1" >> >> >> Desktop or Xerte Online Toolkits?Do you mean the Flash stage size or the embed box set by the html? >> >>> From: hugo.callens at socius.be >>> Date: Sun, 18 Dec 2011 16:57:30 +0100 >>> To: xerte at lists.nottingham.ac.uk >>> Subject: [Xerte] Change Flash container size >>> >>> I would like to have the general Xerte container a bit wider and a bit less high in order to fit better on a widescreen computer. Is this possible? >>> _______________________________________________ >>> Xerte mailing list >>> Xerte at lists.nottingham.ac.uk >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > > ------------------------------ > > Message: 2 > Date: Sun, 18 Dec 2011 15:00:51 -0500 > From: Dave Burnett > To: Xerte list > Subject: [Xerte] Re: Change Flash container size > Message-ID: > Content-Type: text/plain; charset="iso-8859-1" > > > > Highlight the Learning Object icon. > In the Properties dropdown in the R/H panel, choose stageSize then hit Addput > 900,500 in the Value space. > > >> From: hugo.callens at socius.be >> Date: Sun, 18 Dec 2011 19:51:40 +0100 >> To: xerte at lists.nottingham.ac.uk >> Subject: [Xerte] Re: Change Flash container size >> >> Hi Dave, >> >> The Flash stage size. Talking about Xerte2 desktop. >> I am new to this; but I guess my question can also be put as: how to make a custom 900x500 interface instead of the standard 800x600? >> >> Regards >> >> Hugo >> >>> >>> Message: 2 >>> Date: Sun, 18 Dec 2011 11:48:13 -0500 >>> From: Dave Burnett >>> To: Xerte list >>> Subject: [Xerte] Re: Change Flash container size >>> Message-ID: >>> Content-Type: text/plain; charset="iso-8859-1" >>> >>> >>> Desktop or Xerte Online Toolkits?Do you mean the Flash stage size or the embed box set by the html? >>> >>>> From: hugo.callens at socius.be >>>> Date: Sun, 18 Dec 2011 16:57:30 +0100 >>>> To: xerte at lists.nottingham.ac.uk >>>> Subject: [Xerte] Change Flash container size >>>> >>>> I would like to have the general Xerte container a bit wider and a bit less high in order to fit better on a widescreen computer. Is this possible? >>>> _______________________________________________ >>>> Xerte mailing list >>>> Xerte at lists.nottingham.ac.uk >>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. >> >> This message has been checked for viruses but the contents of an attachment >> may still contain software viruses which could damage your computer system: >> you are advised to perform your own checks. Email communications with the >> University of Nottingham may be monitored as permitted by UK legislation. >> > > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > > ------------------------------ > > Message: 3 > Date: Sun, 18 Dec 2011 18:12:27 +0000 > From: Alistair McNaught > To: Xerte discussion list > Cc: Xerte discussion list > Subject: [Xerte] Re: XOT - Speech recognition - Keyboard short cut > keys > Message-ID: > Content-Type: text/plain; charset="utf-8" > > I'd welcome your support on the audit, Peter. > > Has anyone noticed the oddity on the current Nottingham play_560 example > where TTS on the navigation controls announces "Page n of n"? There's also a > tendency for tabbing to escape the learning object back to the browser > navigation but then be unable to return to the browser. Neither of these are > issues with our 2 TechDis installations which is a puzzle. I'd be interested > if others find the same on their current installs. > > Alistair > > > > Sent from my iPad > > On 18 Dec 2011, at 01:40, "Peter Snowball" > wrote: > > > > Thanks very much. I have breifly tried the keys and the voice commands > "Press page down" Press page up"- they seem to work OK. "Press Shift Home" > also brings up the table of contents. In dialog boxes "move down one" "move > up one" works also then you have to "tab" to the button and "Press Enter" > some times "Press Space bar"to activate the button etc. > > I will need to put a lot more time into exploring using voice commands in > the full range of templates in XOT. Probably the best way will be to jing > some examples as input into the accessibility audit. I will start on this > when I get some free time in the new year. > > In dragon professional you can create custom voice commands that use scripts > that press keys etc. So "Table of contents" would press shift Home key etc. > > > > Peter Snowball > > Dept Of Economic Development > > Tasmania > > On 14/12/2011 10:45 PM, Julian Tenney wrote: > >> A few XOT inbuilt shot cut keys say "Press Control T" etc that advance the >> slide no matter where you are would help novice user with XOT. Others eg: >> go to first Tab Item on the slide would also make a big difference. > > > > They are already there: try page up, pagedown, home, end with / without the > shit key? > > > > From: > xerte-bounces at lists.nottingham.ac.uk [ > > mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Alistair McNaught > Sent: 14 December 2011 11:36 > To: Xerte discussion list > Subject: [Xerte] Re: XOT - Speech recognition - Keyboard short cut keys > > > > Hi Peter > > JISC TechDis are currently doing some accessibility audits on Xerte and this > is a useful contribution to the pot. Can we Skype at some time in next > couple of days and I?ll update you on where we?ve got to. We?re hoping to > put together a wish list and have some budget to help ease the process. > > > > A > > > > From: > xerte-bounces at lists.nottingham.ac.uk [ > > mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Peter Snowball > Sent: 14 December 2011 11:00 > To: Xerte discussion list > Subject: [Xerte] Re: XOT - Speech recognition - Keyboard short cut keys > > > > I am planning to develop some simple courses to support new users of Dragon > naturally speaking speech recognition software. The problem is that the > Voice commands "Press Tab" , "Press Shift Tab","Press Enter", "Press Space > Bar" fire the key board keys and allow you to navigate Xerte, but it is very > painful to get to where you want to go if you simply want to advance a slide > or bring up the table of contents. "Press Tab","Press Tab","Press > Tab","Press Tab" etc > > If you have the high end professional version of dragon you can say "Press > Tab 6" or you can program mouse position commands, assuming you load xerte > into the same window size every time, and say "Next Slide" which will > locate the mouse and click it. However the target audience for the courses > are novice dragon users with a typical low end version of Dragon so this is > not really an option. You can also use "Mouse Grid 5,2,3 Mouse click" to > position the mouse and click it, but again you have to be an experienced > user to be able to do this. > > A few XOT inbuilt shot cut keys say "Press Control T" etc that advance the > slide no matter where you are would help novice user with XOT. Others eg: go > to first Tab Item on the slide would also make a big difference. > > Understand that there may be possible conflicts with windows mac etc pre > defined short cut keys but the question is can this and should this be done > easily in XOT to assist disability users who use speech recognition.( > including built in Win7 speech recognition) > > > > Peter Snowball > Dept Of Infrastructure, Energy and Resources > Tasmania > > > > > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > This email is confidential and may be privileged. If you are not the > intended recipient please accept our apologies. Please do not disclose, > copy, or distribute information in this email nor take any action in > reliance on its contents: to do so is strictly prohibited and may be > unlawful. Please inform us that this message has gone astray before deleting > it. Please note that views expressed in this email are those of the author > and do not necessarily represent those of the Higher Education Academy. > Please note that this e-mail has been created in the knowledge that Internet > e-mail is not a secure communications medium. We advise that you understand > and observe this lack of security when e-mailing us. Although we have taken > steps to ensure this e-mail and attachments are free from any virus, we > advise that in keeping with good computing practice the recipient should > ensure they are actually virus free. The Higher Education Academy Registered > No 4930131 > > > > > _______________________________________________ > > Xerte mailing list > > Xerte at lists.nottingham.ac.uk > > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > > > This message has been checked for viruses but the contents of an attachment > > may still contain software viruses which could damage your computer system: > > you are advised to perform your own checks. Email communications with the > > University of Nottingham may be monitored as permitted by UK legislation. > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > > This email is confidential and may be privileged. If you are not the > intended recipient please accept our apologies. Please do not disclose, > copy, or distribute information in this email nor take any action in > reliance on its contents: to do so is strictly prohibited and may be > unlawful. Please inform us that this message has gone astray before deleting > it. Please note that views expressed in this email are those of the author > and do not necessarily represent those of the Higher Education Academy. > Please note that this e-mail has been created in the knowledge that Internet > e-mail is not a secure communications medium. We advise that you understand > and observe this lack of security when e-mailing us. Although we have taken > steps to ensure this e-mail and attachments are free from any virus, we > advise that in keeping with good computing practice the recipient should > ensure they are actually virus free. The Higher Education Academy Registered > No 4930131 > -------------- next part -------------- > An embedded and charset-unspecified text was scrubbed... > Name: ATT711699.txt > URL: > > ------------------------------ > > Message: 4 > Date: Sun, 18 Dec 2011 18:12:27 +0000 > From: Alistair McNaught > To: Xerte discussion list > Cc: Xerte discussion list > Subject: [Xerte] Re: XOT - Speech recognition - Keyboard short cut > keys > Message-ID: > Content-Type: text/plain; charset="utf-8" > > I'd welcome your support on the audit, Peter. > > Has anyone noticed the oddity on the current Nottingham play_560 example > where TTS on the navigation controls announces "Page n of n"? There's also a > tendency for tabbing to escape the learning object back to the browser > navigation but then be unable to return to the browser. Neither of these are > issues with our 2 TechDis installations which is a puzzle. I'd be interested > if others find the same on their current installs. > > Alistair > > > > Sent from my iPad > > On 18 Dec 2011, at 01:40, "Peter Snowball" > wrote: > > > > Thanks very much. I have breifly tried the keys and the voice commands > "Press page down" Press page up"- they seem to work OK. "Press Shift Home" > also brings up the table of contents. In dialog boxes "move down one" "move > up one" works also then you have to "tab" to the button and "Press Enter" > some times "Press Space bar"to activate the button etc. > > I will need to put a lot more time into exploring using voice commands in > the full range of templates in XOT. Probably the best way will be to jing > some examples as input into the accessibility audit. I will start on this > when I get some free time in the new year. > > In dragon professional you can create custom voice commands that use scripts > that press keys etc. So "Table of contents" would press shift Home key etc. > > > > Peter Snowball > > Dept Of Economic Development > > Tasmania > > On 14/12/2011 10:45 PM, Julian Tenney wrote: > >> A few XOT inbuilt shot cut keys say "Press Control T" etc that advance the >> slide no matter where you are would help novice user with XOT. Others eg: >> go to first Tab Item on the slide would also make a big difference. > > > > They are already there: try page up, pagedown, home, end with / without the > shit key? > > > > From: > xerte-bounces at lists.nottingham.ac.uk [ > > mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Alistair McNaught > Sent: 14 December 2011 11:36 > To: Xerte discussion list > Subject: [Xerte] Re: XOT - Speech recognition - Keyboard short cut keys > > > > Hi Peter > > JISC TechDis are currently doing some accessibility audits on Xerte and this > is a useful contribution to the pot. Can we Skype at some time in next > couple of days and I?ll update you on where we?ve got to. We?re hoping to > put together a wish list and have some budget to help ease the process. > > > > A > > > > From: > xerte-bounces at lists.nottingham.ac.uk [ > > mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Peter Snowball > Sent: 14 December 2011 11:00 > To: Xerte discussion list > Subject: [Xerte] Re: XOT - Speech recognition - Keyboard short cut keys > > > > I am planning to develop some simple courses to support new users of Dragon > naturally speaking speech recognition software. The problem is that the > Voice commands "Press Tab" , "Press Shift Tab","Press Enter", "Press Space > Bar" fire the key board keys and allow you to navigate Xerte, but it is very > painful to get to where you want to go if you simply want to advance a slide > or bring up the table of contents. "Press Tab","Press Tab","Press > Tab","Press Tab" etc > > If you have the high end professional version of dragon you can say "Press > Tab 6" or you can program mouse position commands, assuming you load xerte > into the same window size every time, and say "Next Slide" which will > locate the mouse and click it. However the target audience for the courses > are novice dragon users with a typical low end version of Dragon so this is > not really an option. You can also use "Mouse Grid 5,2,3 Mouse click" to > position the mouse and click it, but again you have to be an experienced > user to be able to do this. > > A few XOT inbuilt shot cut keys say "Press Control T" etc that advance the > slide no matter where you are would help novice user with XOT. Others eg: go > to first Tab Item on the slide would also make a big difference. > > Understand that there may be possible conflicts with windows mac etc pre > defined short cut keys but the question is can this and should this be done > easily in XOT to assist disability users who use speech recognition.( > including built in Win7 speech recognition) > > > > Peter Snowball > Dept Of Infrastructure, Energy and Resources > Tasmania > > > > > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > This email is confidential and may be privileged. If you are not the > intended recipient please accept our apologies. Please do not disclose, > copy, or distribute information in this email nor take any action in > reliance on its contents: to do so is strictly prohibited and may be > unlawful. Please inform us that this message has gone astray before deleting > it. Please note that views expressed in this email are those of the author > and do not necessarily represent those of the Higher Education Academy. > Please note that this e-mail has been created in the knowledge that Internet > e-mail is not a secure communications medium. We advise that you understand > and observe this lack of security when e-mailing us. Although we have taken > steps to ensure this e-mail and attachments are free from any virus, we > advise that in keeping with good computing practice the recipient should > ensure they are actually virus free. The Higher Education Academy Registered > No 4930131 > > > > > _______________________________________________ > > Xerte mailing list > > Xerte at lists.nottingham.ac.uk > > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > > > This message has been checked for viruses but the contents of an attachment > > may still contain software viruses which could damage your computer system: > > you are advised to perform your own checks. Email communications with the > > University of Nottingham may be monitored as permitted by UK legislation. > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > > This email is confidential and may be privileged. If you are not the > intended recipient please accept our apologies. Please do not disclose, > copy, or distribute information in this email nor take any action in > reliance on its contents: to do so is strictly prohibited and may be > unlawful. Please inform us that this message has gone astray before deleting > it. Please note that views expressed in this email are those of the author > and do not necessarily represent those of the Higher Education Academy. > Please note that this e-mail has been created in the knowledge that Internet > e-mail is not a secure communications medium. We advise that you understand > and observe this lack of security when e-mailing us. Although we have taken > steps to ensure this e-mail and attachments are free from any virus, we > advise that in keeping with good computing practice the recipient should > ensure they are actually virus free. The Higher Education Academy Registered > No 4930131 > -------------- next part -------------- > An embedded and charset-unspecified text was scrubbed... > Name: ATT711699.txt > URL: > > ------------------------------ > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > End of Xerte Digest, Vol 56, Issue 1 > ************************************ _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte From reijnders at tor.nl Tue Jan 3 14:43:15 2012 From: reijnders at tor.nl (Tom Reijnders) Date: Tue, 03 Jan 2012 15:43:15 +0100 Subject: [Xerte] Re: youtube movie dimensions In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0B9FDBF043@EXCHANGE1.ad.nottingham.ac.uk> References: <015401ccbe98$1ef4d510$5cde7f30$@kccsoft.com> <12C67A1EEC419342AF5E59DA31562C3F0B9F849C46@EXCHANGE1.ad.nottingham.ac.uk> <4EF1248C.1050801@tor.nl> <12C67A1EEC419342AF5E59DA31562C3F0B9FDBF043@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <4F031403.50101@tor.nl> Julian, youtuberss.rlm needs updating as well.... Op 3-1-2012 12:50, Julian Tenney schreef: > > OK, a simple enough fix is to hide the youtube swf off the screen > until onPlayerLoad fires and then let the code in there reposition it. > Then you don't see the component flickering: > > http://www.nottingham.ac.uk/toolkits/play_6393 > > *From:*xerte-bounces at lists.nottingham.ac.uk > [mailto:xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Tom Reijnders > *Sent:* 21 December 2011 00:13 > *To:* Xerte discussion list > *Subject:* [Xerte] Re: youtube movie dimensions > > Couldn't resist.... :-) > It depends a bit on the youtube model you have. > > This is preliminary, I have no final fix (I am not at home, and have > no access to all I need) > > If you have a version where you can set the size, it is more or less > already fixed. > If you are using an older model, you need to update the model, or > change the component. > > This is (probably) caused by the fact that the default video size that > youtube sends has been changed from 320x240 to something larger. > > SetSize is never called after initialisation, and Xerte assumes that > the size should be 320x240. If you use one of the newer model where > you can set the size, this works. > > As far as I can tell you need to set the correct size in the > onPlayerLoad event handler script. See the toggle event handler for an > example. > > Tom > > > > Op 20-12-2011 22:48, Julian Tenney schreef: > > If anyone's got nothing better to do, then the source code is in the > /templates folder of a xerte windows install, and the youtube docs are > online. Make a page templates project, and then compile > youTubeComponent.fla over the swf in /common, and see what happens. > The .fla is not complicated... > > ...but you really ought to have better things to be doing at this time > of year... > > ...so Merry Christmas! Thanks to everyone for all the input this year, > enjoy the holidays, and we'll pick it all up again in the New year. > > Best wishes for a great 2012. > > J > > ------------------------------------------------------------------------ > > *From:*xerte-bounces at lists.nottingham.ac.uk > > [xerte-bounces at lists.nottingham.ac.uk > ] On Behalf Of > KnowledgeWare [knowledgeware at kccsoft.com > ] > *Sent:* 19 December 2011 21:49 > *To:* Xerte discussion list > *Subject:* [Xerte] youtube movie dimensions > > I'm still stuck on youtube movie sizing. When I enter a youtube movie > page the movie is oversized like in the image below to the left. I > want it to display in the preview window as the image below on the right. > > I'd appreciate it if someone could try these links below and tell me > if the youtube movie (usually page 7) displays properly in the small > preview window or opens right off the page as in the image below left. > On all my machines here it is right off the page. > > http://www.kccsoft.com/RGM/ssv51training/index.htm (desktop version) > > https://kccsoft.com/u2c/tk100714/play.php?template_id=410 (toolkits > 1.5 version) > > This just started a few days ago, up until then the page opened with > the movie in the preview window. I'm using the youtube older 'object' > 'embed' code. I've tried setting the xerte display mode from 'full > screen' and 'full window' to 'default', set text alignment to 'right' > and tried removing the variables off the end of the youtube URL, all > to no effect. > > If you play with the 'magnify' icon (click it three times) the movie > will resize back into the preview window, but that's too much to ask a > user to do. Is there a way I can initialize the movie size when the > page loads or somehow force the size (although it is set in the > youtube embed code). > > Thanks for any suggestions....am I missing something obvious? > > RonM2 > > This message and any attachment are intended solely for the addressee > and may contain confidential information. If you have received this > message in error, please send it back to me, and immediately delete > it. Please do not use, copy or disclose the information contained in > this message or in any attachment. Any views or opinions expressed by > the author of this email do not necessarily reflect the views of the > University of Nottingham. > > This message has been checked for viruses but the contents of an > attachment may still contain software viruses which could damage your > computer system: you are advised to perform your own checks. Email > communications with the University of Nottingham may be monitored as > permitted by UK legislation. > > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > > > -- > -- > > Tom Reijnders > TOR Informatica > Chopinlaan 27 > 5242HM Rosmalen > Tel: 073 5226191 > Fax: 073 5226196 > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > -- -- Tom Reijnders TOR Informatica Chopinlaan 27 5242HM Rosmalen Tel: 073 5226191 Fax: 073 5226196 -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: image/jpeg Size: 26619 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: image/jpeg Size: 20102 bytes Desc: not available URL: From Julian.Tenney at nottingham.ac.uk Tue Jan 3 14:44:11 2012 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Tue, 3 Jan 2012 14:44:11 +0000 Subject: [Xerte] Re: youtube movie dimensions In-Reply-To: <4F031403.50101@tor.nl> References: <015401ccbe98$1ef4d510$5cde7f30$@kccsoft.com> <12C67A1EEC419342AF5E59DA31562C3F0B9F849C46@EXCHANGE1.ad.nottingham.ac.uk> <4EF1248C.1050801@tor.nl> <12C67A1EEC419342AF5E59DA31562C3F0B9FDBF043@EXCHANGE1.ad.nottingham.ac.uk> <4F031403.50101@tor.nl> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0B9FDBF1C4@EXCHANGE1.ad.nottingham.ac.uk> OK. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Tom Reijnders Sent: 03 January 2012 14:43 To: Xerte discussion list Subject: [Xerte] Re: youtube movie dimensions Julian, youtuberss.rlm needs updating as well.... Op 3-1-2012 12:50, Julian Tenney schreef: OK, a simple enough fix is to hide the youtube swf off the screen until onPlayerLoad fires and then let the code in there reposition it. Then you don't see the component flickering: http://www.nottingham.ac.uk/toolkits/play_6393 From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Tom Reijnders Sent: 21 December 2011 00:13 To: Xerte discussion list Subject: [Xerte] Re: youtube movie dimensions Couldn't resist.... :-) It depends a bit on the youtube model you have. This is preliminary, I have no final fix (I am not at home, and have no access to all I need) If you have a version where you can set the size, it is more or less already fixed. If you are using an older model, you need to update the model, or change the component. This is (probably) caused by the fact that the default video size that youtube sends has been changed from 320x240 to something larger. SetSize is never called after initialisation, and Xerte assumes that the size should be 320x240. If you use one of the newer model where you can set the size, this works. As far as I can tell you need to set the correct size in the onPlayerLoad event handler script. See the toggle event handler for an example. Tom Op 20-12-2011 22:48, Julian Tenney schreef: If anyone's got nothing better to do, then the source code is in the /templates folder of a xerte windows install, and the youtube docs are online. Make a page templates project, and then compile youTubeComponent.fla over the swf in /common, and see what happens. The .fla is not complicated... ...but you really ought to have better things to be doing at this time of year... ...so Merry Christmas! Thanks to everyone for all the input this year, enjoy the holidays, and we'll pick it all up again in the New year. Best wishes for a great 2012. J ________________________________ From: xerte-bounces at lists.nottingham.ac.uk [xerte-bounces at lists.nottingham.ac.uk] On Behalf Of KnowledgeWare [knowledgeware at kccsoft.com] Sent: 19 December 2011 21:49 To: Xerte discussion list Subject: [Xerte] youtube movie dimensions I'm still stuck on youtube movie sizing. When I enter a youtube movie page the movie is oversized like in the image below to the left. I want it to display in the preview window as the image below on the right. I'd appreciate it if someone could try these links below and tell me if the youtube movie (usually page 7) displays properly in the small preview window or opens right off the page as in the image below left. On all my machines here it is right off the page. http://www.kccsoft.com/RGM/ssv51training/index.htm (desktop version) https://kccsoft.com/u2c/tk100714/play.php?template_id=410 (toolkits 1.5 version) This just started a few days ago, up until then the page opened with the movie in the preview window. I'm using the youtube older 'object' 'embed' code. I've tried setting the xerte display mode from 'full screen' and 'full window' to 'default', set text alignment to 'right' and tried removing the variables off the end of the youtube URL, all to no effect. If you play with the 'magnify' icon (click it three times) the movie will resize back into the preview window, but that's too much to ask a user to do. Is there a way I can initialize the movie size when the page loads or somehow force the size (although it is set in the youtube embed code). Thanks for any suggestions....am I missing something obvious? RonM2 [cid:image001.jpg at 01CCCA26.27F7C8E0][cid:image002.jpg at 01CCCA26.27F7C8E0] This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. -- -- Tom Reijnders TOR Informatica Chopinlaan 27 5242HM Rosmalen Tel: 073 5226191 Fax: 073 5226196 _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. -- -- Tom Reijnders TOR Informatica Chopinlaan 27 5242HM Rosmalen Tel: 073 5226191 Fax: 073 5226196 -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 26619 bytes Desc: image001.jpg URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image002.jpg Type: image/jpeg Size: 20102 bytes Desc: image002.jpg URL: From Julian.Tenney at nottingham.ac.uk Tue Jan 3 14:47:58 2012 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Tue, 3 Jan 2012 14:47:58 +0000 Subject: [Xerte] Re: youtube movie dimensions In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0B9FDBF1C4@EXCHANGE1.ad.nottingham.ac.uk> References: <015401ccbe98$1ef4d510$5cde7f30$@kccsoft.com> <12C67A1EEC419342AF5E59DA31562C3F0B9F849C46@EXCHANGE1.ad.nottingham.ac.uk> <4EF1248C.1050801@tor.nl> <12C67A1EEC419342AF5E59DA31562C3F0B9FDBF043@EXCHANGE1.ad.nottingham.ac.uk> <4F031403.50101@tor.nl> <12C67A1EEC419342AF5E59DA31562C3F0B9FDBF1C4@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0B9FDBF1D4@EXCHANGE1.ad.nottingham.ac.uk> Here y'are. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 03 January 2012 14:44 To: Xerte discussion list Subject: [Xerte] Re: youtube movie dimensions OK. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Tom Reijnders Sent: 03 January 2012 14:43 To: Xerte discussion list Subject: [Xerte] Re: youtube movie dimensions Julian, youtuberss.rlm needs updating as well.... Op 3-1-2012 12:50, Julian Tenney schreef: OK, a simple enough fix is to hide the youtube swf off the screen until onPlayerLoad fires and then let the code in there reposition it. Then you don't see the component flickering: http://www.nottingham.ac.uk/toolkits/play_6393 From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Tom Reijnders Sent: 21 December 2011 00:13 To: Xerte discussion list Subject: [Xerte] Re: youtube movie dimensions Couldn't resist.... :-) It depends a bit on the youtube model you have. This is preliminary, I have no final fix (I am not at home, and have no access to all I need) If you have a version where you can set the size, it is more or less already fixed. If you are using an older model, you need to update the model, or change the component. This is (probably) caused by the fact that the default video size that youtube sends has been changed from 320x240 to something larger. SetSize is never called after initialisation, and Xerte assumes that the size should be 320x240. If you use one of the newer model where you can set the size, this works. As far as I can tell you need to set the correct size in the onPlayerLoad event handler script. See the toggle event handler for an example. Tom Op 20-12-2011 22:48, Julian Tenney schreef: If anyone's got nothing better to do, then the source code is in the /templates folder of a xerte windows install, and the youtube docs are online. Make a page templates project, and then compile youTubeComponent.fla over the swf in /common, and see what happens. The .fla is not complicated... ...but you really ought to have better things to be doing at this time of year... ...so Merry Christmas! Thanks to everyone for all the input this year, enjoy the holidays, and we'll pick it all up again in the New year. Best wishes for a great 2012. J ________________________________ From: xerte-bounces at lists.nottingham.ac.uk [xerte-bounces at lists.nottingham.ac.uk] On Behalf Of KnowledgeWare [knowledgeware at kccsoft.com] Sent: 19 December 2011 21:49 To: Xerte discussion list Subject: [Xerte] youtube movie dimensions I'm still stuck on youtube movie sizing. When I enter a youtube movie page the movie is oversized like in the image below to the left. I want it to display in the preview window as the image below on the right. I'd appreciate it if someone could try these links below and tell me if the youtube movie (usually page 7) displays properly in the small preview window or opens right off the page as in the image below left. On all my machines here it is right off the page. http://www.kccsoft.com/RGM/ssv51training/index.htm (desktop version) https://kccsoft.com/u2c/tk100714/play.php?template_id=410 (toolkits 1.5 version) This just started a few days ago, up until then the page opened with the movie in the preview window. I'm using the youtube older 'object' 'embed' code. I've tried setting the xerte display mode from 'full screen' and 'full window' to 'default', set text alignment to 'right' and tried removing the variables off the end of the youtube URL, all to no effect. If you play with the 'magnify' icon (click it three times) the movie will resize back into the preview window, but that's too much to ask a user to do. Is there a way I can initialize the movie size when the page loads or somehow force the size (although it is set in the youtube embed code). Thanks for any suggestions....am I missing something obvious? RonM2 [cid:image001.jpg at 01CCCA26.AEFBB040][cid:image002.jpg at 01CCCA26.AEFBB040] This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. -- -- Tom Reijnders TOR Informatica Chopinlaan 27 5242HM Rosmalen Tel: 073 5226191 Fax: 073 5226196 _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. -- -- Tom Reijnders TOR Informatica Chopinlaan 27 5242HM Rosmalen Tel: 073 5226191 Fax: 073 5226196 -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 26619 bytes Desc: image001.jpg URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image002.jpg Type: image/jpeg Size: 20102 bytes Desc: image002.jpg URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: youtuberss.rlm Type: application/octet-stream Size: 6893 bytes Desc: youtuberss.rlm URL: From Julian.Tenney at nottingham.ac.uk Tue Jan 3 15:53:16 2012 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Tue, 3 Jan 2012 15:53:16 +0000 Subject: [Xerte] http://code.google.com/apis/language/translate/overview.html Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0B9FDBF270@EXCHANGE1.ad.nottingham.ac.uk> Also of relevance if you're following the various 'things google have changed since we all went on holiday' threads today. Will probably have to retire the translate page. -------------- next part -------------- An HTML attachment was scrubbed... URL: From d_b_burnett at hotmail.com Tue Jan 3 16:04:42 2012 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Tue, 3 Jan 2012 11:04:42 -0500 Subject: [Xerte] Re: http://code.google.com/apis/language/translate/overview.html In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0B9FDBF270@EXCHANGE1.ad.nottingham.ac.uk> References: <12C67A1EEC419342AF5E59DA31562C3F0B9FDBF270@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: "These decisions were made due to the substantial economic burden caused by extensive abuse." Isn't it always the way.A few spoil it for everyone else. From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Tue, 3 Jan 2012 15:53:16 +0000 Subject: [Xerte] http://code.google.com/apis/language/translate/overview.html Also of relevance if you?re following the various ?things google have changed since we all went on holiday? threads today. Will probably have to retire the translate page. This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Tue Jan 3 16:07:00 2012 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Tue, 3 Jan 2012 16:07:00 +0000 Subject: [Xerte] Re: http://code.google.com/apis/language/translate/overview.html In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F0B9FDBF270@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0B9FDBF29E@EXCHANGE1.ad.nottingham.ac.uk> Maybe the xerte project broke it? ;-) V2 will cost $20 for a million characters a month to be translated. If folk are making extensive use of it, then they will have to set up with google and manage the code themselves. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 03 January 2012 16:05 To: Xerte list Subject: [Xerte] Re: http://code.google.com/apis/language/translate/overview.html "These decisions were made due to the substantial economic burden caused by extensive abuse." Isn't it always the way. A few spoil it for everyone else. ________________________________ From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Tue, 3 Jan 2012 15:53:16 +0000 Subject: [Xerte] http://code.google.com/apis/language/translate/overview.html Also of relevance if you're following the various 'things google have changed since we all went on holiday' threads today. Will probably have to retire the translate page. This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. -------------- next part -------------- An HTML attachment was scrubbed... URL: From patrick.lockley at googlemail.com Tue Jan 3 16:15:40 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Tue, 3 Jan 2012 16:15:40 +0000 Subject: [Xerte] Re: http://code.google.com/apis/language/translate/overview.html In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F0B9FDBF270@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: Was the translate API not rate limited? On Tue, Jan 3, 2012 at 4:04 PM, Dave Burnett wrote: > > "These decisions were made due to the substantial economic burden caused by > extensive abuse." > > > Isn't it always the way. > A few spoil it for everyone else. > > > ________________________________ > From: Julian.Tenney at nottingham.ac.uk > To: xerte at lists.nottingham.ac.uk > Date: Tue, 3 Jan 2012 15:53:16 +0000 > Subject: [Xerte] > http://code.google.com/apis/language/translate/overview.html > > Also of relevance if you?re following the various ?things google have > changed since we all went on holiday? threads today. > > > > Will probably have to retire the translate page. > > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any > attachment are intended solely for the addressee and may contain > confidential information. If you have received this message in error, please > send it back to me, and immediately delete it. Please do not use, copy or > disclose the information contained in this message or in any attachment. Any > views or opinions expressed by the author of this email do not necessarily > reflect the views of the University of Nottingham. This message has been > checked for viruses but the contents of an attachment may still contain > software viruses which could damage your computer system: you are advised to > perform your own checks. Email communications with the University of > Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. ? Please do not > use, copy or disclose the information contained in this message or in any > attachment. ?Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > From david at palepurple.co.uk Tue Jan 3 16:29:01 2012 From: david at palepurple.co.uk (David Goodwin) Date: Tue, 3 Jan 2012 16:29:01 +0000 Subject: [Xerte] Re: http://code.google.com/apis/language/translate/overview.html In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0B9FDBF29E@EXCHANGE1.ad.nottingham.ac.uk> References: <12C67A1EEC419342AF5E59DA31562C3F0B9FDBF270@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F0B9FDBF29E@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: > > V2 will cost $20 for a million characters a month to be translated. If folk are making extensive use of it, then they will have to set up with google and manage the code themselves. > It's sort of the same with Maps - if you make too many requests on that, you'll effectively get rate limited / need a license?. it's understandable, but unfortunate. I suspect some people will just screens-crape http://translate.google.com (if that's possible to use without Javascript enabled) David. Pale Purple Ltd. (Company No: 5580814) 'Business Web Application Development and Training in PHP' http://www.palepurple.co.uk Office: 0845 0046746 Mobile: 07792380669 Follow us on Twitter: @PalePurpleLtd From Julian.Tenney at nottingham.ac.uk Tue Jan 3 16:29:01 2012 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Tue, 3 Jan 2012 16:29:01 +0000 Subject: [Xerte] Re: http://code.google.com/apis/language/translate/overview.html In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F0B9FDBF270@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0B9FDBF2EF@EXCHANGE1.ad.nottingham.ac.uk> Not before, no. It was just free and open: you didn't even need to register an API Key. Pheesh. What did they think was going to happen? On Tue, Jan 3, 2012 at 4:04 PM, Dave Burnett wrote: > > "These decisions were made due to the substantial economic burden caused by > extensive abuse." > > > Isn't it always the way. > A few spoil it for everyone else. > > > ________________________________ > From: Julian.Tenney at nottingham.ac.uk > To: xerte at lists.nottingham.ac.uk > Date: Tue, 3 Jan 2012 15:53:16 +0000 > Subject: [Xerte] > http://code.google.com/apis/language/translate/overview.html > > Also of relevance if you're following the various 'things google have > changed since we all went on holiday' threads today. > > > > Will probably have to retire the translate page. > > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any > attachment are intended solely for the addressee and may contain > confidential information. If you have received this message in error, please > send it back to me, and immediately delete it. Please do not use, copy or > disclose the information contained in this message or in any attachment. Any > views or opinions expressed by the author of this email do not necessarily > reflect the views of the University of Nottingham. This message has been > checked for viruses but the contents of an attachment may still contain > software viruses which could damage your computer system: you are advised to > perform your own checks. Email communications with the University of > Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Tue Jan 3 16:40:00 2012 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Tue, 3 Jan 2012 16:40:00 +0000 Subject: [Xerte] Re: Projects make in Xerte In-Reply-To: <4EEA79C9.50403@tor.nl> References: <12C67A1EEC419342AF5E59DA31562C3F0B9F9DB28F@EXCHANGE1.ad.nottingham.ac.uk> <8B6D69C81759694E92E48C18738CF3AF019FAE0E@exchange5.cornwall.ac.uk> <01b201ccb67b$97756e70$c6604b50$@co.uk> <12C67A1EEC419342AF5E59DA31562C3F0B9FB562CD@EXCHANGE1.ad.nottingham.ac.uk> <4EE645AE.4080800@tor.nl> <4EE64B2E.90903@tor.nl> <12C67A1EEC419342AF5E59DA31562C3F0B9FB5687B@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F0B9FB56894@EXCHANGE1.ad.nottingham.ac.uk> <4EEA79C9.50403@tor.nl> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0B9FDBF30B@EXCHANGE1.ad.nottingham.ac.uk> OK, we are using your script now, and If it all works fine while we test it here, we'll go with it, thanks. Can you monitor how many hits you are getting, and even where they originate from? That might be interesting to know. -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Tom Reijnders Sent: 15 December 2011 22:51 To: Xerte discussion list Subject: [Xerte] Re: Projects make in Xerte Julian, You can use http://xerte.tor.nl/cgi-bin/mathtex.cgi Op 13-12-2011 12:44, Julian Tenney schreef: > Yeah, we got close, but I'm suffering from some familiar frustrations... > > -----Original Message----- > From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley > Sent: 13 December 2011 11:41 > To: Xerte discussion list > Subject: [Xerte] Re: Projects make in Xerte > > When I left it, it was because there wasn't a dvi to jpeg command on > the server. If there was that app, then it was doable. > > On Tue, Dec 13, 2011 at 11:37 AM, Julian Tenney > wrote: >> Touchstone does something with fonts to do equations etc, so that won't work for the flash player. >> >> -----Original Message----- >> From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Tom Reijnders >> Sent: 12 December 2011 18:43 >> To: Xerte discussion list >> Subject: [Xerte] Re: Projects make in Xerte >> >> Yes, but what about existing LO's then? >> >> You would need latex (for the fonts) and dvipng on the server. The >> server has to be a *nix flavour, or you have to port the mathtex code to >> Windows. >> >> Tom >> >> Op 12-12-2011 19:28, Pat Lockley schreef: >>> The Nottingham server has GD now, I'd be surprised if there isn't a >>> PHP class to do it - touchstone? >>> >>> On Mon, Dec 12, 2011 at 6:19 PM, Tom Reijnders wrote: >>>> Julian, >>>> >>>> Yes, I can accomodate this. Looking in the best way to do this. Will keep >>>> you informed. >>>> >>>> Tom >>>> >>>> Op 12-12-2011 11:07, Julian Tenney schreef: >>>> >>>> Dah. The script is still there, but under >>>> >>>> http://www.forkosh.com/mathtex.cgi >>>> >>>> >>>> >>>> instead of >>>> >>>> >>>> >>>> http://www.forkosh.dreamhost.com/mathtex.cgi >>>> >>>> >>>> >>>> I've changed it in the engine attached. However, it would be good if we >>>> could get a more reliable solution going. I have been chasing it up here for >>>> a year or more, and haven't got anywhere, so if someone runs a web server >>>> and can install mathtex on it, that might be easier. >>>> >>>> >>>> >>>> J >>>> >>>> >>>> >>>> >>>> >>>> From: xerte-bounces at lists.nottingham.ac.uk >>>> [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell >>>> Sent: 09 December 2011 14:05 >>>> To: 'Xerte discussion list' >>>> Subject: [Xerte] Re: Projects make in Xerte >>>> >>>> >>>> >>>> There normally is but I think there may be something wrong because my >>>> examples and tests aren't working anymore and neither is the Nottingham >>>> example http://www.nottingham.ac.uk/toolkits/play_595 >>>> >>>> >>>> >>>> Julian - any ideas? >>>> >>>> >>>> >>>> From: xerte-bounces at lists.nottingham.ac.uk >>>> [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Shirley Crawford >>>> Sent: 09 December 2011 13:07 >>>> To: Xerte discussion list >>>> Subject: [Xerte] Re: Projects make in Xerte >>>> >>>> >>>> >>>> Hi >>>> >>>> >>>> >>>> Is it possible to insert maths equations in Xerte, I want to display >>>> something similar to below but the 30cm2 displays as 30cm2 >>>> >>>> >>>> >>>> We work out the area of the grey rectangle by multiplying 3 by 10 which = 30 >>>> cm this is written as 30cm2 or 30 cm Squared >>>> >>>> >>>> >>>> Thanks >>>> >>>> Shirley >>>> >>>> >>>> >>>> Shirley Crawford >>>> E-Learning Teaching Mentor >>>> >>>> (Room J453 Tel:external: 01726 226755 ext 2755) >>>> Cornwall College - St Austell >>>> >>>> >>>> >>>> >>>> >>>> This message and any attachment are intended solely for the addressee and >>>> may contain confidential information. If you have received this message in >>>> error, please send it back to me, and immediately delete it. Please do not >>>> use, copy or disclose the information contained in this message or in any >>>> attachment. Any views or opinions expressed by the author of this email do >>>> not necessarily reflect the views of the University of Nottingham. >>>> >>>> This message has been checked for viruses but the contents of an attachment >>>> may still contain software viruses which could damage your computer system: >>>> you are advised to perform your own checks. Email communications with the >>>> University of Nottingham may be monitored as permitted by UK legislation. >>>> >>>> >>>> >>>> _______________________________________________ >>>> Xerte mailing list >>>> Xerte at lists.nottingham.ac.uk >>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>>> >>>> This message and any attachment are intended solely for the addressee and >>>> may contain confidential information. If you have received this message in >>>> error, please send it back to me, and immediately delete it. Please do not >>>> use, copy or disclose the information contained in this message or in any >>>> attachment. Any views or opinions expressed by the author of this email do >>>> not necessarily reflect the views of the University of Nottingham. >>>> >>>> This message has been checked for viruses but the contents of an attachment >>>> may still contain software viruses which could damage your computer system: >>>> you are advised to perform your own checks. Email communications with the >>>> University of Nottingham may be monitored as permitted by UK legislation. >>>> >>>> >>>> -- >>>> -- >>>> >>>> Tom Reijnders >>>> TOR Informatica >>>> Chopinlaan 27 >>>> 5242HM Rosmalen >>>> Tel: 073 5226191 >>>> Fax: 073 5226196 >>>> >>>> >>>> _______________________________________________ >>>> Xerte mailing list >>>> Xerte at lists.nottingham.ac.uk >>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>>> >>>> This message and any attachment are intended solely for the addressee and >>>> may contain confidential information. If you have received this message in >>>> error, please send it back to me, and immediately delete it. Please do not >>>> use, copy or disclose the information contained in this message or in any >>>> attachment. Any views or opinions expressed by the author of this email do >>>> not necessarily reflect the views of the University of Nottingham. >>>> >>>> This message has been checked for viruses but the contents of an attachment >>>> may still contain software viruses which could damage your computer system: >>>> you are advised to perform your own checks. Email communications with the >>>> University of Nottingham may be monitored as permitted by UK legislation. >>>> >>>> >>> _______________________________________________ >>> Xerte mailing list >>> Xerte at lists.nottingham.ac.uk >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>> >> -- >> -- >> >> Tom Reijnders >> TOR Informatica >> Chopinlaan 27 >> 5242HM Rosmalen >> Tel: 073 5226191 >> Fax: 073 5226196 >> >> >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > -- -- Tom Reijnders TOR Informatica Chopinlaan 27 5242HM Rosmalen Tel: 073 5226191 Fax: 073 5226196 _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte From reijnders at tor.nl Tue Jan 3 18:20:05 2012 From: reijnders at tor.nl (Tom Reijnders) Date: Tue, 03 Jan 2012 19:20:05 +0100 Subject: [Xerte] Re: Projects make in Xerte In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0B9FDBF30B@EXCHANGE1.ad.nottingham.ac.uk> References: <12C67A1EEC419342AF5E59DA31562C3F0B9F9DB28F@EXCHANGE1.ad.nottingham.ac.uk> <8B6D69C81759694E92E48C18738CF3AF019FAE0E@exchange5.cornwall.ac.uk> <01b201ccb67b$97756e70$c6604b50$@co.uk> <12C67A1EEC419342AF5E59DA31562C3F0B9FB562CD@EXCHANGE1.ad.nottingham.ac.uk> <4EE645AE.4080800@tor.nl> <4EE64B2E.90903@tor.nl> <12C67A1EEC419342AF5E59DA31562C3F0B9FB5687B@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F0B9FB56894@EXCHANGE1.ad.nottingham.ac.uk> <4EEA79C9.50403@tor.nl> <12C67A1EEC419342AF5E59DA31562C3F0B9FDBF30B@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <4F0346D5.2070500@tor.nl> Yes, that is logged by the mathtexcgi itself.... Op 3-1-2012 17:40, Julian Tenney schreef: > OK, we are using your script now, and If it all works fine while we test it here, we'll go with it, thanks. > > Can you monitor how many hits you are getting, and even where they originate from? That might be interesting to know. > > -----Original Message----- > From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Tom Reijnders > Sent: 15 December 2011 22:51 > To: Xerte discussion list > Subject: [Xerte] Re: Projects make in Xerte > > Julian, > > You can use http://xerte.tor.nl/cgi-bin/mathtex.cgi > > > Op 13-12-2011 12:44, Julian Tenney schreef: >> Yeah, we got close, but I'm suffering from some familiar frustrations... >> >> -----Original Message----- >> From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley >> Sent: 13 December 2011 11:41 >> To: Xerte discussion list >> Subject: [Xerte] Re: Projects make in Xerte >> >> When I left it, it was because there wasn't a dvi to jpeg command on >> the server. If there was that app, then it was doable. >> >> On Tue, Dec 13, 2011 at 11:37 AM, Julian Tenney >> wrote: >>> Touchstone does something with fonts to do equations etc, so that won't work for the flash player. >>> >>> -----Original Message----- >>> From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Tom Reijnders >>> Sent: 12 December 2011 18:43 >>> To: Xerte discussion list >>> Subject: [Xerte] Re: Projects make in Xerte >>> >>> Yes, but what about existing LO's then? >>> >>> You would need latex (for the fonts) and dvipng on the server. The >>> server has to be a *nix flavour, or you have to port the mathtex code to >>> Windows. >>> >>> Tom >>> >>> Op 12-12-2011 19:28, Pat Lockley schreef: >>>> The Nottingham server has GD now, I'd be surprised if there isn't a >>>> PHP class to do it - touchstone? >>>> >>>> On Mon, Dec 12, 2011 at 6:19 PM, Tom Reijnders wrote: >>>>> Julian, >>>>> >>>>> Yes, I can accomodate this. Looking in the best way to do this. Will keep >>>>> you informed. >>>>> >>>>> Tom >>>>> >>>>> Op 12-12-2011 11:07, Julian Tenney schreef: >>>>> >>>>> Dah. The script is still there, but under >>>>> >>>>> http://www.forkosh.com/mathtex.cgi >>>>> >>>>> >>>>> >>>>> instead of >>>>> >>>>> >>>>> >>>>> http://www.forkosh.dreamhost.com/mathtex.cgi >>>>> >>>>> >>>>> >>>>> I've changed it in the engine attached. However, it would be good if we >>>>> could get a more reliable solution going. I have been chasing it up here for >>>>> a year or more, and haven't got anywhere, so if someone runs a web server >>>>> and can install mathtex on it, that might be easier. >>>>> >>>>> >>>>> >>>>> J >>>>> >>>>> >>>>> >>>>> >>>>> >>>>> From: xerte-bounces at lists.nottingham.ac.uk >>>>> [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell >>>>> Sent: 09 December 2011 14:05 >>>>> To: 'Xerte discussion list' >>>>> Subject: [Xerte] Re: Projects make in Xerte >>>>> >>>>> >>>>> >>>>> There normally is but I think there may be something wrong because my >>>>> examples and tests aren't working anymore and neither is the Nottingham >>>>> example http://www.nottingham.ac.uk/toolkits/play_595 >>>>> >>>>> >>>>> >>>>> Julian - any ideas? >>>>> >>>>> >>>>> >>>>> From: xerte-bounces at lists.nottingham.ac.uk >>>>> [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Shirley Crawford >>>>> Sent: 09 December 2011 13:07 >>>>> To: Xerte discussion list >>>>> Subject: [Xerte] Re: Projects make in Xerte >>>>> >>>>> >>>>> >>>>> Hi >>>>> >>>>> >>>>> >>>>> Is it possible to insert maths equations in Xerte, I want to display >>>>> something similar to below but the 30cm2 displays as 30cm2 >>>>> >>>>> >>>>> >>>>> We work out the area of the grey rectangle by multiplying 3 by 10 which = 30 >>>>> cm this is written as 30cm2 or 30 cm Squared >>>>> >>>>> >>>>> >>>>> Thanks >>>>> >>>>> Shirley >>>>> >>>>> >>>>> >>>>> Shirley Crawford >>>>> E-Learning Teaching Mentor >>>>> >>>>> (Room J453 Tel:external: 01726 226755 ext 2755) >>>>> Cornwall College - St Austell >>>>> >>>>> >>>>> >>>>> >>>>> >>>>> This message and any attachment are intended solely for the addressee and >>>>> may contain confidential information. If you have received this message in >>>>> error, please send it back to me, and immediately delete it. Please do not >>>>> use, copy or disclose the information contained in this message or in any >>>>> attachment. Any views or opinions expressed by the author of this email do >>>>> not necessarily reflect the views of the University of Nottingham. >>>>> >>>>> This message has been checked for viruses but the contents of an attachment >>>>> may still contain software viruses which could damage your computer system: >>>>> you are advised to perform your own checks. Email communications with the >>>>> University of Nottingham may be monitored as permitted by UK legislation. >>>>> >>>>> >>>>> >>>>> _______________________________________________ >>>>> Xerte mailing list >>>>> Xerte at lists.nottingham.ac.uk >>>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>>>> >>>>> This message and any attachment are intended solely for the addressee and >>>>> may contain confidential information. If you have received this message in >>>>> error, please send it back to me, and immediately delete it. Please do not >>>>> use, copy or disclose the information contained in this message or in any >>>>> attachment. Any views or opinions expressed by the author of this email do >>>>> not necessarily reflect the views of the University of Nottingham. >>>>> >>>>> This message has been checked for viruses but the contents of an attachment >>>>> may still contain software viruses which could damage your computer system: >>>>> you are advised to perform your own checks. Email communications with the >>>>> University of Nottingham may be monitored as permitted by UK legislation. >>>>> >>>>> >>>>> -- >>>>> -- >>>>> >>>>> Tom Reijnders >>>>> TOR Informatica >>>>> Chopinlaan 27 >>>>> 5242HM Rosmalen >>>>> Tel: 073 5226191 >>>>> Fax: 073 5226196 >>>>> >>>>> >>>>> _______________________________________________ >>>>> Xerte mailing list >>>>> Xerte at lists.nottingham.ac.uk >>>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>>>> >>>>> This message and any attachment are intended solely for the addressee and >>>>> may contain confidential information. If you have received this message in >>>>> error, please send it back to me, and immediately delete it. Please do not >>>>> use, copy or disclose the information contained in this message or in any >>>>> attachment. Any views or opinions expressed by the author of this email do >>>>> not necessarily reflect the views of the University of Nottingham. >>>>> >>>>> This message has been checked for viruses but the contents of an attachment >>>>> may still contain software viruses which could damage your computer system: >>>>> you are advised to perform your own checks. Email communications with the >>>>> University of Nottingham may be monitored as permitted by UK legislation. >>>>> >>>>> >>>> _______________________________________________ >>>> Xerte mailing list >>>> Xerte at lists.nottingham.ac.uk >>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>>> >>> -- >>> -- >>> >>> Tom Reijnders >>> TOR Informatica >>> Chopinlaan 27 >>> 5242HM Rosmalen >>> Tel: 073 5226191 >>> Fax: 073 5226196 >>> >>> >>> >>> _______________________________________________ >>> Xerte mailing list >>> Xerte at lists.nottingham.ac.uk >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>> >>> _______________________________________________ >>> Xerte mailing list >>> Xerte at lists.nottingham.ac.uk >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> -- -- Tom Reijnders TOR Informatica Chopinlaan 27 5242HM Rosmalen Tel: 073 5226191 Fax: 073 5226196 From info at mtgjc.com Tue Jan 3 19:23:04 2012 From: info at mtgjc.com (MTG Judge Course) Date: Tue, 3 Jan 2012 14:23:04 -0500 Subject: [Xerte] Xerte Online Toolkits: Installation Guide Message-ID: <002d01ccca4d$235223e0$69f66ba0$@mtgjc.com> I tried to install Xerte online and ran into a roadblock. I followed all the installation directions to the letter, and the installation script successfully created all the Xerte tables in the database I'd set up for it. However, when I try to access the Xerte installation, it says: "Sorry, the system cannot connect to the database at present. The mysql error is Access denied for user 'mtg5[..]8'@'184.[..].193' (using password: YES)" My website is hosted through GoDaddy. Thanks!!! -------------- next part -------------- An HTML attachment was scrubbed... URL: From patrick.lockley at googlemail.com Tue Jan 3 19:29:30 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Tue, 3 Jan 2012 19:29:30 +0000 Subject: [Xerte] Re: Xerte Online Toolkits: Installation Guide In-Reply-To: <002d01ccca4d$235223e0$69f66ba0$@mtgjc.com> References: <002d01ccca4d$235223e0$69f66ba0$@mtgjc.com> Message-ID: The username in database.php isn't allowed to access the database the installer created If you have cPanel check to see if the account you're using in database.php has select,delete,insert and update privileges for that database. On Tue, Jan 3, 2012 at 7:23 PM, MTG Judge Course wrote: > I tried to install Xerte online and ran into a roadblock. I followed all the > installation directions to the letter, and the installation script > successfully created all the Xerte tables in the database I?d set up for it. > However, when I try to access the Xerte installation, it says: > > > > ?Sorry, the system cannot connect to the database at present. The mysql > error is Access denied for user 'mtg5[..]8'@'184.[..].193' (using password: > YES)? > > > > My website is hosted through GoDaddy. > > > > Thanks!!! > > > > > > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. ? Please do not > use, copy or disclose the information contained in this message or in any > attachment. ?Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > From knowledgeware at kccsoft.com Tue Jan 3 19:46:14 2012 From: knowledgeware at kccsoft.com (KnowledgeWare) Date: Tue, 3 Jan 2012 11:46:14 -0800 Subject: [Xerte] Re: youtube movie dimensions In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0B9FDBF043@EXCHANGE1.ad.nottingham.ac.uk> References: <015401ccbe98$1ef4d510$5cde7f30$@kccsoft.com> <12C67A1EEC419342AF5E59DA31562C3F0B9F849C46@EXCHANGE1.ad.nottingham.ac.uk> <4EF1248C.1050801@tor.nl> <12C67A1EEC419342AF5E59DA31562C3F0B9FDBF043@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <010801ccca50$5a9c9f30$0fd5dd90$@kccsoft.com> Is it OK to just replace the toolkits 1.5 youtube.rlm's with these new ones? Any compatibility issues? RonM2 From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: Tuesday, January 03, 2012 3:51 AM To: Xerte discussion list Subject: [Xerte] Re: youtube movie dimensions OK, a simple enough fix is to hide the youtube swf off the screen until onPlayerLoad fires and then let the code in there reposition it. Then you don't see the component flickering: http://www.nottingham.ac.uk/toolkits/play_6393 From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Tom Reijnders Sent: 21 December 2011 00:13 To: Xerte discussion list Subject: [Xerte] Re: youtube movie dimensions Couldn't resist.... :-) It depends a bit on the youtube model you have. This is preliminary, I have no final fix (I am not at home, and have no access to all I need) If you have a version where you can set the size, it is more or less already fixed. If you are using an older model, you need to update the model, or change the component. This is (probably) caused by the fact that the default video size that youtube sends has been changed from 320x240 to something larger. SetSize is never called after initialisation, and Xerte assumes that the size should be 320x240. If you use one of the newer model where you can set the size, this works. As far as I can tell you need to set the correct size in the onPlayerLoad event handler script. See the toggle event handler for an example. Tom Op 20-12-2011 22:48, Julian Tenney schreef: If anyone's got nothing better to do, then the source code is in the /templates folder of a xerte windows install, and the youtube docs are online. Make a page templates project, and then compile youTubeComponent.fla over the swf in /common, and see what happens. The .fla is not complicated... ...but you really ought to have better things to be doing at this time of year... ...so Merry Christmas! Thanks to everyone for all the input this year, enjoy the holidays, and we'll pick it all up again in the New year. Best wishes for a great 2012. J _____ From: xerte-bounces at lists.nottingham.ac.uk [xerte-bounces at lists.nottingham.ac.uk] On Behalf Of KnowledgeWare [knowledgeware at kccsoft.com] Sent: 19 December 2011 21:49 To: Xerte discussion list Subject: [Xerte] youtube movie dimensions I'm still stuck on youtube movie sizing. When I enter a youtube movie page the movie is oversized like in the image below to the left. I want it to display in the preview window as the image below on the right. I'd appreciate it if someone could try these links below and tell me if the youtube movie (usually page 7) displays properly in the small preview window or opens right off the page as in the image below left. On all my machines here it is right off the page. http://www.kccsoft.com/RGM/ssv51training/index.htm (desktop version) https://kccsoft.com/u2c/tk100714/play.php?template_id=410 (toolkits 1.5 version) This just started a few days ago, up until then the page opened with the movie in the preview window. I'm using the youtube older 'object' 'embed' code. I've tried setting the xerte display mode from 'full screen' and 'full window' to 'default', set text alignment to 'right' and tried removing the variables off the end of the youtube URL, all to no effect. If you play with the 'magnify' icon (click it three times) the movie will resize back into the preview window, but that's too much to ask a user to do. Is there a way I can initialize the movie size when the page loads or somehow force the size (although it is set in the youtube embed code). Thanks for any suggestions..am I missing something obvious? RonM2 This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. -- -- Tom Reijnders TOR Informatica Chopinlaan 27 5242HM Rosmalen Tel: 073 5226191 Fax: 073 5226196 -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 26619 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image002.jpg Type: image/jpeg Size: 20102 bytes Desc: not available URL: From knowledgeware at kccsoft.com Tue Jan 3 19:48:50 2012 From: knowledgeware at kccsoft.com (KnowledgeWare) Date: Tue, 3 Jan 2012 11:48:50 -0800 Subject: [Xerte] Re: display checkmarks on menu In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0B9FDBEEC7@EXCHANGE1.ad.nottingham.ac.uk> References: <001201ccc83d$3f4a3590$bddea0b0$@kccsoft.com> <12C67A1EEC419342AF5E59DA31562C3F0B9FDBEEC7@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <011401ccca50$b78ce380$26a6aa80$@kccsoft.com> Hmm..sounds bloody convenient.thanks! RonM2 From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: Tuesday, January 03, 2012 1:53 AM To: Xerte discussion list Subject: [Xerte] Re: display checkmarks on menu There is a 'tick' symbol in the engine's library for this purpose, called 'tick', so you can do attachMovie(). You can change the colour of the tick using the MovieClip methods, setRGB() I think. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of KnowledgeWare Sent: 01 January 2012 04:24 To: Xerte discussion list Subject: [Xerte] display checkmarks on menu I'd like to turn checkmarks on on a menu when the student has finished a section. I want to loop through an array to get '1' or '0' then place the checkmark and display it if the value is '1'. How to best do that in AS? Can I create one checkmark graphic, move it around with x/y coordinates and make it visible on the fly? Any time saving suggestions on how to best handle this? My AW code is not a direct port on this one :- ( Happy New Year! RonM2 This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. -------------- next part -------------- An HTML attachment was scrubbed... URL: From d_b_burnett at hotmail.com Tue Jan 3 21:22:49 2012 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Tue, 3 Jan 2012 16:22:49 -0500 Subject: [Xerte] accessing objects with sequential names In-Reply-To: References: <002d01ccca4d$235223e0$69f66ba0$@mtgjc.com>, Message-ID: Created by using attachMovie in a loop: pageid.attachMovie("clip", "myclip"+ i, i+2); How do I access those in a loop again?Julian posted it but I've gapped. I'm trying to set some _x values. engine["myclip" + i]._x = 30; Close? -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Wed Jan 4 09:36:40 2012 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Wed, 4 Jan 2012 09:36:40 +0000 Subject: [Xerte] Re: accessing objects with sequential names In-Reply-To: References: <002d01ccca4d$235223e0$69f66ba0$@mtgjc.com>, Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0B9FDBF40C@EXCHANGE1.ad.nottingham.ac.uk> Yes, object['string'].property is the same as object.string.property. Doesn't attach movie have an initObject as the fourth param so you can do attachMovie(libItem, newName, depth, {_x: 30}); etc? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 03 January 2012 21:23 To: Xerte list Subject: [Xerte] accessing objects with sequential names Created by using attachMovie in a loop: pageid.attachMovie("clip", "myclip"+ i, i+2); How do I access those in a loop again? Julian posted it but I've gapped. I'm trying to set some _x values. engine["myclip" + i]._x = 30; Close? -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Wed Jan 4 09:37:52 2012 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Wed, 4 Jan 2012 09:37:52 +0000 Subject: [Xerte] Re: youtube movie dimensions In-Reply-To: <010801ccca50$5a9c9f30$0fd5dd90$@kccsoft.com> References: <015401ccbe98$1ef4d510$5cde7f30$@kccsoft.com> <12C67A1EEC419342AF5E59DA31562C3F0B9F849C46@EXCHANGE1.ad.nottingham.ac.uk> <4EF1248C.1050801@tor.nl> <12C67A1EEC419342AF5E59DA31562C3F0B9FDBF043@EXCHANGE1.ad.nottingham.ac.uk> <010801ccca50$5a9c9f30$0fd5dd90$@kccsoft.com> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0B9FDBF40F@EXCHANGE1.ad.nottingham.ac.uk> Shouldn't be. Keep the old files just in case. You might need to update the youtube component swf. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of KnowledgeWare Sent: 03 January 2012 19:46 To: 'Xerte discussion list' Subject: [Xerte] Re: youtube movie dimensions Is it OK to just replace the toolkits 1.5 youtube.rlm's with these new ones? Any compatibility issues? RonM2 From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: Tuesday, January 03, 2012 3:51 AM To: Xerte discussion list Subject: [Xerte] Re: youtube movie dimensions OK, a simple enough fix is to hide the youtube swf off the screen until onPlayerLoad fires and then let the code in there reposition it. Then you don't see the component flickering: http://www.nottingham.ac.uk/toolkits/play_6393 From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Tom Reijnders Sent: 21 December 2011 00:13 To: Xerte discussion list Subject: [Xerte] Re: youtube movie dimensions Couldn't resist.... :-) It depends a bit on the youtube model you have. This is preliminary, I have no final fix (I am not at home, and have no access to all I need) If you have a version where you can set the size, it is more or less already fixed. If you are using an older model, you need to update the model, or change the component. This is (probably) caused by the fact that the default video size that youtube sends has been changed from 320x240 to something larger. SetSize is never called after initialisation, and Xerte assumes that the size should be 320x240. If you use one of the newer model where you can set the size, this works. As far as I can tell you need to set the correct size in the onPlayerLoad event handler script. See the toggle event handler for an example. Tom Op 20-12-2011 22:48, Julian Tenney schreef: If anyone's got nothing better to do, then the source code is in the /templates folder of a xerte windows install, and the youtube docs are online. Make a page templates project, and then compile youTubeComponent.fla over the swf in /common, and see what happens. The .fla is not complicated... ...but you really ought to have better things to be doing at this time of year... ...so Merry Christmas! Thanks to everyone for all the input this year, enjoy the holidays, and we'll pick it all up again in the New year. Best wishes for a great 2012. J ________________________________ From: xerte-bounces at lists.nottingham.ac.uk [xerte-bounces at lists.nottingham.ac.uk] On Behalf Of KnowledgeWare [knowledgeware at kccsoft.com] Sent: 19 December 2011 21:49 To: Xerte discussion list Subject: [Xerte] youtube movie dimensions I'm still stuck on youtube movie sizing. When I enter a youtube movie page the movie is oversized like in the image below to the left. I want it to display in the preview window as the image below on the right. I'd appreciate it if someone could try these links below and tell me if the youtube movie (usually page 7) displays properly in the small preview window or opens right off the page as in the image below left. On all my machines here it is right off the page. http://www.kccsoft.com/RGM/ssv51training/index.htm (desktop version) https://kccsoft.com/u2c/tk100714/play.php?template_id=410 (toolkits 1.5 version) This just started a few days ago, up until then the page opened with the movie in the preview window. I'm using the youtube older 'object' 'embed' code. I've tried setting the xerte display mode from 'full screen' and 'full window' to 'default', set text alignment to 'right' and tried removing the variables off the end of the youtube URL, all to no effect. If you play with the 'magnify' icon (click it three times) the movie will resize back into the preview window, but that's too much to ask a user to do. Is there a way I can initialize the movie size when the page loads or somehow force the size (although it is set in the youtube embed code). Thanks for any suggestions....am I missing something obvious? RonM2 [cid:image001.jpg at 01CCCAC4.87D78130][cid:image002.jpg at 01CCCAC4.87D78130] This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. -- -- Tom Reijnders TOR Informatica Chopinlaan 27 5242HM Rosmalen Tel: 073 5226191 Fax: 073 5226196 -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 26619 bytes Desc: image001.jpg URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image002.jpg Type: image/jpeg Size: 20102 bytes Desc: image002.jpg URL: From d_b_burnett at hotmail.com Wed Jan 4 10:56:07 2012 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Wed, 4 Jan 2012 05:56:07 -0500 Subject: [Xerte] Re: accessing objects with sequential names In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0B9FDBF40C@EXCHANGE1.ad.nottingham.ac.uk> References: <002d01ccca4d$235223e0$69f66ba0$@mtgjc.com>, , , , <12C67A1EEC419342AF5E59DA31562C3F0B9FDBF40C@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: This worked in a loop: pageid.attachMovie("tick", "mytick"+i, i+2);pageid['mytick'+i]._x = 30;pageid['mytick'+i]._y = 100+(offset*i); From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Wed, 4 Jan 2012 09:36:40 +0000 Subject: [Xerte] Re: accessing objects with sequential names Yes, object[?string?].property is the same as object.string.property. Doesn?t attach movie have an initObject as the fourth param so you can do attachMovie(libItem, newName, depth, {_x: 30}); etc? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 03 January 2012 21:23 To: Xerte list Subject: [Xerte] accessing objects with sequential names Created by using attachMovie in a loop: pageid.attachMovie("clip", "myclip"+ i, i+2); How do I access those in a loop again?Julian posted it but I've gapped. I'm trying to set some _x values. engine["myclip" + i]._x = 30; Close? This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. -------------- next part -------------- An HTML attachment was scrubbed... URL: From info at mtgjc.com Wed Jan 4 15:19:04 2012 From: info at mtgjc.com (MTG Judge Course) Date: Wed, 4 Jan 2012 10:19:04 -0500 Subject: [Xerte] Re: Xerte Online Toolkits: Installation Guide In-Reply-To: References: <002d01ccca4d$235223e0$69f66ba0$@mtgjc.com> Message-ID: <013d01cccaf4$328c2ca0$97a485e0$@mtgjc.com> Thanks so much for your response. I've checked the database.php file, and all appears to be correct. I have a GoDaddy basic account, so I cannot create more than one user for each database. I only have one username and password, and that username of course has full access of every type to the database. Note that during setup, this same username/password was used to *create* the database tables. Everything appeared to be working perfectly until I tried to use Xerte and it gave me that error message. Blargh! :) -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: Tuesday, January 03, 2012 2:30 PM To: Xerte discussion list Subject: [Xerte] Re: Xerte Online Toolkits: Installation Guide The username in database.php isn't allowed to access the database the installer created If you have cPanel check to see if the account you're using in database.php has select,delete,insert and update privileges for that database. On Tue, Jan 3, 2012 at 7:23 PM, MTG Judge Course wrote: > I tried to install Xerte online and ran into a roadblock. I followed > all the installation directions to the letter, and the installation > script successfully created all the Xerte tables in the database I?d set up for it. > However, when I try to access the Xerte installation, it says: > > > > ?Sorry, the system cannot connect to the database at present. The > mysql error is Access denied for user 'mtg5[..]8'@'184.[..].193' (using password: > YES)? > > > > My website is hosted through GoDaddy. > > > > Thanks!!! > > > > > > > This message and any attachment are intended solely for the addressee > and may contain confidential information. If you have received this > message in error, please send it back to me, and immediately delete > it. Please do not use, copy or disclose the information contained in > this message or in any attachment. Any views or opinions expressed by > the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an > attachment may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with > the University of Nottingham may be monitored as permitted by UK legislation. > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee > and may contain confidential information. If you have received this > message in error, please send it back to me, and immediately delete > it. ? Please do not use, copy or disclose the information contained in > this message or in any attachment. ?Any views or opinions expressed by > the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an > attachment may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with > the University of Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte From patrick.lockley at googlemail.com Wed Jan 4 15:24:41 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Wed, 4 Jan 2012 15:24:41 +0000 Subject: [Xerte] Re: Xerte Online Toolkits: Installation Guide In-Reply-To: <013d01cccaf4$328c2ca0$97a485e0$@mtgjc.com> References: <002d01ccca4d$235223e0$69f66ba0$@mtgjc.com> <013d01cccaf4$328c2ca0$97a485e0$@mtgjc.com> Message-ID: Ok, It might be the host details - what is the host set as? Pat On Wed, Jan 4, 2012 at 3:19 PM, MTG Judge Course wrote: > Thanks so much for your response. I've checked the database.php file, and > all appears to be correct. I have a GoDaddy basic account, so I cannot > create more than one user for each database. I only have one username and > password, and that username of course has full access of every type to the > database. > > Note that during setup, this same username/password was used to *create* the > database tables. Everything appeared to be working perfectly until I tried > to use Xerte and it gave me that error message. > > Blargh! :) > > -----Original Message----- > From: xerte-bounces at lists.nottingham.ac.uk > [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley > Sent: Tuesday, January 03, 2012 2:30 PM > To: Xerte discussion list > Subject: [Xerte] Re: Xerte Online Toolkits: Installation Guide > > The username in database.php isn't allowed to access the database the > installer created > > If you have cPanel check to see if the account you're using in database.php > has select,delete,insert and update privileges for that database. > > On Tue, Jan 3, 2012 at 7:23 PM, MTG Judge Course wrote: >> I tried to install Xerte online and ran into a roadblock. I followed >> all the installation directions to the letter, and the installation >> script successfully created all the Xerte tables in the database I?d set > up for it. >> However, when I try to access the Xerte installation, it says: >> >> >> >> ?Sorry, the system cannot connect to the database at present. The >> mysql error is Access denied for user 'mtg5[..]8'@'184.[..].193' (using > password: >> YES)? >> >> >> >> My website is hosted through GoDaddy. >> >> >> >> Thanks!!! >> >> >> >> >> >> >> This message and any attachment are intended solely for the addressee >> and may contain confidential information. If you have received this >> message in error, please send it back to me, and immediately delete >> it. Please do not use, copy or disclose the information contained in >> this message or in any attachment. Any views or opinions expressed by >> the author of this email do not necessarily reflect the views of the > University of Nottingham. >> >> This message has been checked for viruses but the contents of an >> attachment may still contain software viruses which could damage your > computer system: >> you are advised to perform your own checks. Email communications with >> the University of Nottingham may be monitored as permitted by UK > legislation. >> >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> This message and any attachment are intended solely for the addressee >> and may contain confidential information. If you have received this >> message in error, please send it back to me, and immediately delete >> it. ? Please do not use, copy or disclose the information contained in >> this message or in any attachment. ?Any views or opinions expressed by >> the author of this email do not necessarily reflect the views of the > University of Nottingham. >> >> This message has been checked for viruses but the contents of an >> attachment may still contain software viruses which could damage your > computer system: >> you are advised to perform your own checks. Email communications with >> the University of Nottingham may be monitored as permitted by UK > legislation. >> >> > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte From info at mtgjc.com Wed Jan 4 15:37:59 2012 From: info at mtgjc.com (MTG Judge Course) Date: Wed, 4 Jan 2012 10:37:59 -0500 Subject: [Xerte] Re: Xerte Online Toolkits: Installation Guide In-Reply-To: References: <002d01ccca4d$235223e0$69f66ba0$@mtgjc.com> <013d01cccaf4$328c2ca0$97a485e0$@mtgjc.com> Message-ID: <014701cccaf6$d76ef340$864cd9c0$@mtgjc.com> I set the host, username, and password in the installation steps. The installer was able to create the database in the proper place using this information. So unless I'm really confused, that should mean that the host, username, and password are all correct, and that the user has the appropriate rights to the database?? The host and username are below. I'm omitting certain pieces of information since I believe these list communications are publicly accessible. Host: mtg1*7.db.8777228.hostedresource.com Username: mtg1*7 Password: ***** [my password that works when accessing the db via PHPMyAdmin or ODBC connection] -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: Wednesday, January 04, 2012 10:25 AM To: Xerte discussion list Subject: [Xerte] Re: Xerte Online Toolkits: Installation Guide Ok, It might be the host details - what is the host set as? Pat On Wed, Jan 4, 2012 at 3:19 PM, MTG Judge Course wrote: > Thanks so much for your response. I've checked the database.php file, > and all appears to be correct. I have a GoDaddy basic account, so I > cannot create more than one user for each database. I only have one > username and password, and that username of course has full access of > every type to the database. > > Note that during setup, this same username/password was used to > *create* the database tables. Everything appeared to be working > perfectly until I tried to use Xerte and it gave me that error message. > > Blargh! :) > > -----Original Message----- > From: xerte-bounces at lists.nottingham.ac.uk > [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley > Sent: Tuesday, January 03, 2012 2:30 PM > To: Xerte discussion list > Subject: [Xerte] Re: Xerte Online Toolkits: Installation Guide > > The username in database.php isn't allowed to access the database the > installer created > > If you have cPanel check to see if the account you're using in > database.php has select,delete,insert and update privileges for that database. > > On Tue, Jan 3, 2012 at 7:23 PM, MTG Judge Course wrote: >> I tried to install Xerte online and ran into a roadblock. I followed >> all the installation directions to the letter, and the installation >> script successfully created all the Xerte tables in the database I?d >> set > up for it. >> However, when I try to access the Xerte installation, it says: >> >> >> >> ?Sorry, the system cannot connect to the database at present. The >> mysql error is Access denied for user 'mtg5[..]8'@'184.[..].193' >> (using > password: >> YES)? >> >> >> >> My website is hosted through GoDaddy. >> >> >> >> Thanks!!! >> >> >> >> >> >> >> This message and any attachment are intended solely for the addressee >> and may contain confidential information. If you have received this >> message in error, please send it back to me, and immediately delete >> it. Please do not use, copy or disclose the information contained in >> this message or in any attachment. Any views or opinions expressed by >> the author of this email do not necessarily reflect the views of the > University of Nottingham. >> >> This message has been checked for viruses but the contents of an >> attachment may still contain software viruses which could damage your > computer system: >> you are advised to perform your own checks. Email communications with >> the University of Nottingham may be monitored as permitted by UK > legislation. >> >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> This message and any attachment are intended solely for the addressee >> and may contain confidential information. If you have received this >> message in error, please send it back to me, and immediately delete >> it. ? Please do not use, copy or disclose the information contained >> in this message or in any attachment. ?Any views or opinions >> expressed by the author of this email do not necessarily reflect the >> views of the > University of Nottingham. >> >> This message has been checked for viruses but the contents of an >> attachment may still contain software viruses which could damage your > computer system: >> you are advised to perform your own checks. Email communications with >> the University of Nottingham may be monitored as permitted by UK > legislation. >> >> > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte From patrick.lockley at googlemail.com Wed Jan 4 16:28:11 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Wed, 4 Jan 2012 16:28:11 +0000 Subject: [Xerte] Re: Xerte Online Toolkits: Installation Guide In-Reply-To: <014701cccaf6$d76ef340$864cd9c0$@mtgjc.com> References: <002d01ccca4d$235223e0$69f66ba0$@mtgjc.com> <013d01cccaf4$328c2ca0$97a485e0$@mtgjc.com> <014701cccaf6$d76ef340$864cd9c0$@mtgjc.com> Message-ID: Yep, it should all work, but then if it should all work I can't think what to suggest to help. Are you ok with PHP? On Wed, Jan 4, 2012 at 3:37 PM, MTG Judge Course wrote: > I set the host, username, and password in the installation steps. The > installer was able to create the database in the proper place using this > information. So unless I'm really confused, that should mean that the host, > username, and password are all correct, and that the user has the > appropriate rights to the database?? > > The host and username are below. I'm omitting certain pieces of information > since I believe these list communications are publicly accessible. > > Host: mtg1*7.db.8777228.hostedresource.com > Username: mtg1*7 > Password: ***** [my password that works when accessing the db via PHPMyAdmin > or ODBC connection] > > > -----Original Message----- > From: xerte-bounces at lists.nottingham.ac.uk > [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley > Sent: Wednesday, January 04, 2012 10:25 AM > To: Xerte discussion list > Subject: [Xerte] Re: Xerte Online Toolkits: Installation Guide > > Ok, > > It might be the host details - what is the host set as? > > Pat > > On Wed, Jan 4, 2012 at 3:19 PM, MTG Judge Course wrote: >> Thanks so much for your response. I've checked the database.php file, >> and all appears to be correct. I have a GoDaddy basic account, so I >> cannot create more than one user for each database. I only have one >> username and password, and that username of course has full access of >> every type to the database. >> >> Note that during setup, this same username/password was used to >> *create* the database tables. Everything appeared to be working >> perfectly until I tried to use Xerte and it gave me that error message. >> >> Blargh! :) >> >> -----Original Message----- >> From: xerte-bounces at lists.nottingham.ac.uk >> [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley >> Sent: Tuesday, January 03, 2012 2:30 PM >> To: Xerte discussion list >> Subject: [Xerte] Re: Xerte Online Toolkits: Installation Guide >> >> The username in database.php isn't allowed to access the database the >> installer created >> >> If you have cPanel check to see if the account you're using in >> database.php has select,delete,insert and update privileges for that > database. >> >> On Tue, Jan 3, 2012 at 7:23 PM, MTG Judge Course wrote: >>> I tried to install Xerte online and ran into a roadblock. I followed >>> all the installation directions to the letter, and the installation >>> script successfully created all the Xerte tables in the database I?d >>> set >> up for it. >>> However, when I try to access the Xerte installation, it says: >>> >>> >>> >>> ?Sorry, the system cannot connect to the database at present. The >>> mysql error is Access denied for user 'mtg5[..]8'@'184.[..].193' >>> (using >> password: >>> YES)? >>> >>> >>> >>> My website is hosted through GoDaddy. >>> >>> >>> >>> Thanks!!! >>> >>> >>> >>> >>> >>> >>> This message and any attachment are intended solely for the addressee >>> and may contain confidential information. If you have received this >>> message in error, please send it back to me, and immediately delete >>> it. Please do not use, copy or disclose the information contained in >>> this message or in any attachment. Any views or opinions expressed by >>> the author of this email do not necessarily reflect the views of the >> University of Nottingham. >>> >>> This message has been checked for viruses but the contents of an >>> attachment may still contain software viruses which could damage your >> computer system: >>> you are advised to perform your own checks. Email communications with >>> the University of Nottingham may be monitored as permitted by UK >> legislation. >>> >>> >>> _______________________________________________ >>> Xerte mailing list >>> Xerte at lists.nottingham.ac.uk >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>> >>> This message and any attachment are intended solely for the addressee >>> and may contain confidential information. If you have received this >>> message in error, please send it back to me, and immediately delete >>> it. ? Please do not use, copy or disclose the information contained >>> in this message or in any attachment. ?Any views or opinions >>> expressed by the author of this email do not necessarily reflect the >>> views of the >> University of Nottingham. >>> >>> This message has been checked for viruses but the contents of an >>> attachment may still contain software viruses which could damage your >> computer system: >>> you are advised to perform your own checks. Email communications with >>> the University of Nottingham may be monitored as permitted by UK >> legislation. >>> >>> >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte From info at mtgjc.com Wed Jan 4 18:59:42 2012 From: info at mtgjc.com (MTG Judge Course) Date: Wed, 4 Jan 2012 13:59:42 -0500 Subject: [Xerte] Re: Xerte Online Toolkits: Installation Guide In-Reply-To: References: <002d01ccca4d$235223e0$69f66ba0$@mtgjc.com> <013d01cccaf4$328c2ca0$97a485e0$@mtgjc.com> <014701cccaf6$d76ef340$864cd9c0$@mtgjc.com> Message-ID: <01fc01cccb13$055b7a00$10126e00$@mtgjc.com> LOL. Too true!! =) Yes, I'm decent with PHP, but not expert, and I fear I've surpassed the limits of my ability to scour the PHP for where the problem might lie. -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: Wednesday, January 04, 2012 11:28 AM To: Xerte discussion list Subject: [Xerte] Re: Xerte Online Toolkits: Installation Guide Yep, it should all work, but then if it should all work I can't think what to suggest to help. Are you ok with PHP? On Wed, Jan 4, 2012 at 3:37 PM, MTG Judge Course wrote: > I set the host, username, and password in the installation steps. The > installer was able to create the database in the proper place using > this information. So unless I'm really confused, that should mean that > the host, username, and password are all correct, and that the user > has the appropriate rights to the database?? > > The host and username are below. I'm omitting certain pieces of > information since I believe these list communications are publicly accessible. > > Host: mtg1*7.db.8777228.hostedresource.com > Username: mtg1*7 > Password: ***** [my password that works when accessing the db via > PHPMyAdmin or ODBC connection] > > > -----Original Message----- > From: xerte-bounces at lists.nottingham.ac.uk > [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley > Sent: Wednesday, January 04, 2012 10:25 AM > To: Xerte discussion list > Subject: [Xerte] Re: Xerte Online Toolkits: Installation Guide > > Ok, > > It might be the host details - what is the host set as? > > Pat > > On Wed, Jan 4, 2012 at 3:19 PM, MTG Judge Course wrote: >> Thanks so much for your response. I've checked the database.php file, >> and all appears to be correct. I have a GoDaddy basic account, so I >> cannot create more than one user for each database. I only have one >> username and password, and that username of course has full access of >> every type to the database. >> >> Note that during setup, this same username/password was used to >> *create* the database tables. Everything appeared to be working >> perfectly until I tried to use Xerte and it gave me that error message. >> >> Blargh! :) >> >> -----Original Message----- >> From: xerte-bounces at lists.nottingham.ac.uk >> [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat >> Lockley >> Sent: Tuesday, January 03, 2012 2:30 PM >> To: Xerte discussion list >> Subject: [Xerte] Re: Xerte Online Toolkits: Installation Guide >> >> The username in database.php isn't allowed to access the database the >> installer created >> >> If you have cPanel check to see if the account you're using in >> database.php has select,delete,insert and update privileges for that > database. >> >> On Tue, Jan 3, 2012 at 7:23 PM, MTG Judge Course wrote: >>> I tried to install Xerte online and ran into a roadblock. I followed >>> all the installation directions to the letter, and the installation >>> script successfully created all the Xerte tables in the database I?d >>> set >> up for it. >>> However, when I try to access the Xerte installation, it says: >>> >>> >>> >>> ?Sorry, the system cannot connect to the database at present. The >>> mysql error is Access denied for user 'mtg5[..]8'@'184.[..].193' >>> (using >> password: >>> YES)? >>> >>> >>> >>> My website is hosted through GoDaddy. >>> >>> >>> >>> Thanks!!! >>> >>> >>> >>> >>> >>> >>> This message and any attachment are intended solely for the >>> addressee and may contain confidential information. If you have >>> received this message in error, please send it back to me, and >>> immediately delete it. Please do not use, copy or disclose the >>> information contained in this message or in any attachment. Any >>> views or opinions expressed by the author of this email do not >>> necessarily reflect the views of the >> University of Nottingham. >>> >>> This message has been checked for viruses but the contents of an >>> attachment may still contain software viruses which could damage >>> your >> computer system: >>> you are advised to perform your own checks. Email communications >>> with the University of Nottingham may be monitored as permitted by >>> UK >> legislation. >>> >>> >>> _______________________________________________ >>> Xerte mailing list >>> Xerte at lists.nottingham.ac.uk >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>> >>> This message and any attachment are intended solely for the >>> addressee and may contain confidential information. If you have >>> received this message in error, please send it back to me, and >>> immediately delete it. ? Please do not use, copy or disclose the >>> information contained in this message or in any attachment. ?Any >>> views or opinions expressed by the author of this email do not >>> necessarily reflect the views of the >> University of Nottingham. >>> >>> This message has been checked for viruses but the contents of an >>> attachment may still contain software viruses which could damage >>> your >> computer system: >>> you are advised to perform your own checks. Email communications >>> with the University of Nottingham may be monitored as permitted by >>> UK >> legislation. >>> >>> >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte From patrick.lockley at googlemail.com Wed Jan 4 19:11:34 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Wed, 4 Jan 2012 19:11:34 +0000 Subject: [Xerte] Re: Xerte Online Toolkits: Installation Guide In-Reply-To: <01fc01cccb13$055b7a00$10126e00$@mtgjc.com> References: <002d01ccca4d$235223e0$69f66ba0$@mtgjc.com> <013d01cccaf4$328c2ca0$97a485e0$@mtgjc.com> <014701cccaf6$d76ef340$864cd9c0$@mtgjc.com> <01fc01cccb13$055b7a00$10126e00$@mtgjc.com> Message-ID: i would suggest something like this Save that in a php file in the root directory On Wed, Jan 4, 2012 at 6:59 PM, MTG Judge Course wrote: > LOL. Too true!! =) > > Yes, I'm decent with PHP, but not expert, and I fear I've surpassed the > limits of my ability to scour the PHP for where the problem might lie. > > > -----Original Message----- > From: xerte-bounces at lists.nottingham.ac.uk > [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley > Sent: Wednesday, January 04, 2012 11:28 AM > To: Xerte discussion list > Subject: [Xerte] Re: Xerte Online Toolkits: Installation Guide > > Yep, it should all work, but then if it should all work I can't think what > to suggest to help. > > Are you ok with PHP? > > On Wed, Jan 4, 2012 at 3:37 PM, MTG Judge Course wrote: >> I set the host, username, and password in the installation steps. The >> installer was able to create the database in the proper place using >> this information. So unless I'm really confused, that should mean that >> the host, username, and password are all correct, and that the user >> has the appropriate rights to the database?? >> >> The host and username are below. I'm omitting certain pieces of >> information since I believe these list communications are publicly > accessible. >> >> Host: mtg1*7.db.8777228.hostedresource.com >> Username: mtg1*7 >> Password: ***** [my password that works when accessing the db via >> PHPMyAdmin or ODBC connection] >> >> >> -----Original Message----- >> From: xerte-bounces at lists.nottingham.ac.uk >> [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley >> Sent: Wednesday, January 04, 2012 10:25 AM >> To: Xerte discussion list >> Subject: [Xerte] Re: Xerte Online Toolkits: Installation Guide >> >> Ok, >> >> It might be the host details - what is the host set as? >> >> Pat >> >> On Wed, Jan 4, 2012 at 3:19 PM, MTG Judge Course wrote: >>> Thanks so much for your response. I've checked the database.php file, >>> and all appears to be correct. I have a GoDaddy basic account, so I >>> cannot create more than one user for each database. I only have one >>> username and password, and that username of course has full access of >>> every type to the database. >>> >>> Note that during setup, this same username/password was used to >>> *create* the database tables. Everything appeared to be working >>> perfectly until I tried to use Xerte and it gave me that error message. >>> >>> Blargh! :) >>> >>> -----Original Message----- >>> From: xerte-bounces at lists.nottingham.ac.uk >>> [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat >>> Lockley >>> Sent: Tuesday, January 03, 2012 2:30 PM >>> To: Xerte discussion list >>> Subject: [Xerte] Re: Xerte Online Toolkits: Installation Guide >>> >>> The username in database.php isn't allowed to access the database the >>> installer created >>> >>> If you have cPanel check to see if the account you're using in >>> database.php has select,delete,insert and update privileges for that >> database. >>> >>> On Tue, Jan 3, 2012 at 7:23 PM, MTG Judge Course wrote: >>>> I tried to install Xerte online and ran into a roadblock. I followed >>>> all the installation directions to the letter, and the installation >>>> script successfully created all the Xerte tables in the database I?d >>>> set >>> up for it. >>>> However, when I try to access the Xerte installation, it says: >>>> >>>> >>>> >>>> ?Sorry, the system cannot connect to the database at present. The >>>> mysql error is Access denied for user 'mtg5[..]8'@'184.[..].193' >>>> (using >>> password: >>>> YES)? >>>> >>>> >>>> >>>> My website is hosted through GoDaddy. >>>> >>>> >>>> >>>> Thanks!!! >>>> >>>> >>>> >>>> >>>> >>>> >>>> This message and any attachment are intended solely for the >>>> addressee and may contain confidential information. If you have >>>> received this message in error, please send it back to me, and >>>> immediately delete it. Please do not use, copy or disclose the >>>> information contained in this message or in any attachment. Any >>>> views or opinions expressed by the author of this email do not >>>> necessarily reflect the views of the >>> University of Nottingham. >>>> >>>> This message has been checked for viruses but the contents of an >>>> attachment may still contain software viruses which could damage >>>> your >>> computer system: >>>> you are advised to perform your own checks. Email communications >>>> with the University of Nottingham may be monitored as permitted by >>>> UK >>> legislation. >>>> >>>> >>>> _______________________________________________ >>>> Xerte mailing list >>>> Xerte at lists.nottingham.ac.uk >>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>>> >>>> This message and any attachment are intended solely for the >>>> addressee and may contain confidential information. If you have >>>> received this message in error, please send it back to me, and >>>> immediately delete it. ? Please do not use, copy or disclose the >>>> information contained in this message or in any attachment. ?Any >>>> views or opinions expressed by the author of this email do not >>>> necessarily reflect the views of the >>> University of Nottingham. >>>> >>>> This message has been checked for viruses but the contents of an >>>> attachment may still contain software viruses which could damage >>>> your >>> computer system: >>>> you are advised to perform your own checks. Email communications >>>> with the University of Nottingham may be monitored as permitted by >>>> UK >>> legislation. >>>> >>>> >>> >>> _______________________________________________ >>> Xerte mailing list >>> Xerte at lists.nottingham.ac.uk >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>> >>> >>> _______________________________________________ >>> Xerte mailing list >>> Xerte at lists.nottingham.ac.uk >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte From thomas.rochford at cambridge-serendipity.com Wed Jan 4 19:16:47 2012 From: thomas.rochford at cambridge-serendipity.com (Thomas Rochford) Date: Wed, 4 Jan 2012 19:16:47 -0000 Subject: [Xerte] Re: Xerte Online Toolkits: Installation Guide In-Reply-To: <014701cccaf6$d76ef340$864cd9c0$@mtgjc.com> References: <002d01ccca4d$235223e0$69f66ba0$@mtgjc.com> <013d01cccaf4$328c2ca0$97a485e0$@mtgjc.com> <014701cccaf6$d76ef340$864cd9c0$@mtgjc.com> Message-ID: <015c01cccb15$679791c0$36c6b540$@cambridge-serendipity.com> Hi, The problem just may be that the mtg*7 username is only configured to work from the local host rather than the "%" wildcard within mysql. This would mean that it works fine when installing the software on the actual server, but it will not work when the same user name is used from anywhere else. You can check this and reset it in phpmyadmin, as far as I recall. If this doesn't resolve the problem then it may be a firewall issue. I can't think of anything else at present. Kindest Regards, Thomas ========================================================== Thomas Rochford, e-Learning Advisor, JISC Regional Support Centre - Eastern Tel: 07500 669002, 01223 564749 Eml: thomas.rochford at jiscadvance.ac.uk, Skype: cambridge.serendipity RSCs - Stimulating and Supporting Innovation in Learning RSC Eastern welcomes feedback on our services via support at rsc-eastern.ac.uk ?Please consider your environmental responsibility before printing this e-mail -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of MTG Judge Course Sent: 04 January 2012 15:38 To: 'Xerte discussion list' Subject: [Xerte] Re: Xerte Online Toolkits: Installation Guide I set the host, username, and password in the installation steps. The installer was able to create the database in the proper place using this information. So unless I'm really confused, that should mean that the host, username, and password are all correct, and that the user has the appropriate rights to the database?? The host and username are below. I'm omitting certain pieces of information since I believe these list communications are publicly accessible. Host: mtg1*7.db.8777228.hostedresource.com Username: mtg1*7 Password: ***** [my password that works when accessing the db via PHPMyAdmin or ODBC connection] -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: Wednesday, January 04, 2012 10:25 AM To: Xerte discussion list Subject: [Xerte] Re: Xerte Online Toolkits: Installation Guide Ok, It might be the host details - what is the host set as? Pat On Wed, Jan 4, 2012 at 3:19 PM, MTG Judge Course wrote: > Thanks so much for your response. I've checked the database.php file, > and all appears to be correct. I have a GoDaddy basic account, so I > cannot create more than one user for each database. I only have one > username and password, and that username of course has full access of > every type to the database. > > Note that during setup, this same username/password was used to > *create* the database tables. Everything appeared to be working > perfectly until I tried to use Xerte and it gave me that error message. > > Blargh! :) > > -----Original Message----- > From: xerte-bounces at lists.nottingham.ac.uk > [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley > Sent: Tuesday, January 03, 2012 2:30 PM > To: Xerte discussion list > Subject: [Xerte] Re: Xerte Online Toolkits: Installation Guide > > The username in database.php isn't allowed to access the database the > installer created > > If you have cPanel check to see if the account you're using in > database.php has select,delete,insert and update privileges for that database. > > On Tue, Jan 3, 2012 at 7:23 PM, MTG Judge Course wrote: >> I tried to install Xerte online and ran into a roadblock. I followed >> all the installation directions to the letter, and the installation >> script successfully created all the Xerte tables in the database I?d >> set > up for it. >> However, when I try to access the Xerte installation, it says: >> >> >> >> ?Sorry, the system cannot connect to the database at present. The >> mysql error is Access denied for user 'mtg5[..]8'@'184.[..].193' >> (using > password: >> YES)? >> >> >> >> My website is hosted through GoDaddy. >> >> >> >> Thanks!!! >> >> >> >> >> >> >> This message and any attachment are intended solely for the addressee >> and may contain confidential information. If you have received this >> message in error, please send it back to me, and immediately delete >> it. Please do not use, copy or disclose the information contained in >> this message or in any attachment. Any views or opinions expressed by >> the author of this email do not necessarily reflect the views of the > University of Nottingham. >> >> This message has been checked for viruses but the contents of an >> attachment may still contain software viruses which could damage your > computer system: >> you are advised to perform your own checks. Email communications with >> the University of Nottingham may be monitored as permitted by UK > legislation. >> >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> This message and any attachment are intended solely for the addressee >> and may contain confidential information. If you have received this >> message in error, please send it back to me, and immediately delete >> it. ? Please do not use, copy or disclose the information contained >> in this message or in any attachment. ?Any views or opinions >> expressed by the author of this email do not necessarily reflect the >> views of the > University of Nottingham. >> >> This message has been checked for viruses but the contents of an >> attachment may still contain software viruses which could damage your > computer system: >> you are advised to perform your own checks. Email communications with >> the University of Nottingham may be monitored as permitted by UK > legislation. >> >> > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte From worldradiolabs at gmail.com Wed Jan 4 19:12:06 2012 From: worldradiolabs at gmail.com (William Laakkonen) Date: Wed, 4 Jan 2012 14:12:06 -0500 Subject: [Xerte] Re: Xerte Online Toolkits: Installation Guide In-Reply-To: <01fc01cccb13$055b7a00$10126e00$@mtgjc.com> References: <002d01ccca4d$235223e0$69f66ba0$@mtgjc.com> <013d01cccaf4$328c2ca0$97a485e0$@mtgjc.com> <014701cccaf6$d76ef340$864cd9c0$@mtgjc.com> <01fc01cccb13$055b7a00$10126e00$@mtgjc.com> Message-ID: > > > > The host and username are below. I'm omitting certain pieces of > > information since I believe these list communications are publicly > accessible. > In your first message you have user@#.#.#.# as denied In your second message it appears you have a URL, user, and password. Sounds like the user grant might be to a host name, but your config file is using the IP address. Good Luck with it. Best regards, Bill Laakkonen > > > > Host: mtg1*7.db.8777228.hostedresource.com > > Username: mtg1*7 > > Password: ***** [my password that works when accessing the db via > > PHPMyAdmin or ODBC connection] > > >>> ?Sorry, the system cannot connect to the database at present. The > >>> mysql error is Access denied for user 'mtg5[..]8'@'184.[..].193' > >>> (using > >> password: > >>> YES)? > >>> > >>> > >>> > >>> My website is hosted through GoDaddy. > -------------- next part -------------- An HTML attachment was scrubbed... URL: From briananthonyfinch at yahoo.com Thu Jan 5 12:37:44 2012 From: briananthonyfinch at yahoo.com (Brian Finch) Date: Thu, 5 Jan 2012 04:37:44 -0800 (PST) Subject: [Xerte] Hosting Message-ID: <1325767064.1608.YahooMailNeo@web125702.mail.ne1.yahoo.com> I came across a web page recently that listed a few organisations that offer hosting and consultancy for Xerte...but now I can't remember where I saw it and I need someone to host an e-learning package. (Fortunately I can still remember what I had for breakfast, so things aren't too bad) Can anyone help? -------------- next part -------------- An HTML attachment was scrubbed... URL: From G.Outterside at wlv.ac.uk Thu Jan 5 16:19:14 2012 From: G.Outterside at wlv.ac.uk (Outterside, Gillian) Date: Thu, 5 Jan 2012 16:19:14 +0000 Subject: [Xerte] Xerte Xampp Message-ID: Hi I'm totally new to Xerte and have been experimenting in Sandpit and now want to download it. I have successfully followed the given steps up to the point below: http://localhost/xertetoolkits/setup/ as indicated on the page http://www.nottingham.ac.uk/xerte/toolkits.htm but I get the following error message so can proceed no further. Object not found! The requested URL was not found on this server. The link on the referring page seems to be wrong or outdated. Please inform the author of that page about the error. If you think this is a server error, please contact the webmaster. Error 404 localhost 04/01/2012 14:59:33 Apache/2.2.12 (Win32) DAV/2 mod_ssl/2.2.12 OpenSSL/0.9.8k mod_autoindex_color PHP/5.3.0 mod_perl/2.0.4 Perl/v5.10.0 Any advice please? Gill Outterside University of Wolverhampton -- Scanned by iCritical. -------------- next part -------------- An HTML attachment was scrubbed... URL: From asalem at wortech.ac.uk Thu Jan 5 16:23:36 2012 From: asalem at wortech.ac.uk (Adam Salem) Date: Thu, 5 Jan 2012 16:23:36 +0000 Subject: [Xerte] MIME Types Message-ID: Hey folks, I know this has been mentioned a number of times before but I can't find a comprehensive list of the MIME types that need to be set in an IIS environment along with their type. If someone could tell me these that'd be great. Thanks Adam Salem ----------------------------------------------------------------------- This message is sent in confidence for the addressee only. It may contain confidential or sensitive information. The contents are not to be disclosed to anyone other than the addressee unless specific authorisation has been given by the sender. Unauthorised recipients are requested to preserve this confidentiality and to advise us of any errors in transmission. Thank you. Save paper, only print this email if really necessary and think green. Please turn off PC's and lights when not in use. Don't just standby, Switch Off! Worcester College of Technology EcoCampus Group. ----------------------------------------------------------------------- From d_b_burnett at hotmail.com Thu Jan 5 16:42:00 2012 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Thu, 5 Jan 2012 11:42:00 -0500 Subject: [Xerte] Re: MIME Types In-Reply-To: References: Message-ID: http://lists.nottingham.ac.uk/pipermail/xerte/2011-May/009399.html > From: asalem at wortech.ac.uk > To: xerte at lists.nottingham.ac.uk > Date: Thu, 5 Jan 2012 16:23:36 +0000 > Subject: [Xerte] MIME Types > > Hey folks, > > I know this has been mentioned a number of times before but I can't find a comprehensive list of the MIME types that need to be set in an IIS environment along with their type. > > If someone could tell me these that'd be great. > > Thanks > Adam Salem > ----------------------------------------------------------------------- > This message is sent in confidence for the addressee only. It may contain confidential or sensitive information. The contents are not to be disclosed to anyone other than the addressee unless specific authorisation has been given by the sender. Unauthorised recipients are requested to preserve this confidentiality and to advise us of any errors in transmission. Thank you. > > Save paper, only print this email if really necessary and think green. Please turn off PC's and lights when not in use. > > Don't just standby, Switch Off! > > Worcester College of Technology EcoCampus Group. > ----------------------------------------------------------------------- > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > -------------- next part -------------- An HTML attachment was scrubbed... URL: From reijnders at tor.nl Thu Jan 5 16:43:23 2012 From: reijnders at tor.nl (Tom Reijnders) Date: Thu, 05 Jan 2012 17:43:23 +0100 Subject: [Xerte] Re: MIME Types In-Reply-To: References: Message-ID: <4F05D32B.2060805@tor.nl> xwd, rlt & rlm as *mime*-type 'text/xml' as far as I know. Op 5-1-2012 17:23, Adam Salem schreef: > Hey folks, > > I know this has been mentioned a number of times before but I can't find a comprehensive list of the MIME types that need to be set in an IIS environment along with their type. > > If someone could tell me these that'd be great. > > Thanks > Adam Salem > ----------------------------------------------------------------------- > This message is sent in confidence for the addressee only. It may contain confidential or sensitive information. The contents are not to be disclosed to anyone other than the addressee unless specific authorisation has been given by the sender. Unauthorised recipients are requested to preserve this confidentiality and to advise us of any errors in transmission. Thank you. > > Save paper, only print this email if really necessary and think green. Please turn off PC's and lights when not in use. > > Don't just standby, Switch Off! > > Worcester College of Technology EcoCampus Group. > ----------------------------------------------------------------------- > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > -- -- Tom Reijnders TOR Informatica Chopinlaan 27 5242HM Rosmalen Tel: 073 5226191 Fax: 073 5226196 -------------- next part -------------- An HTML attachment was scrubbed... URL: From patrick.lockley at googlemail.com Thu Jan 5 17:30:35 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Thu, 5 Jan 2012 17:30:35 +0000 Subject: [Xerte] Re: MIME Types In-Reply-To: <4F05D32B.2060805@tor.nl> References: <4F05D32B.2060805@tor.nl> Message-ID: i think the new installer has this set in it, somewhere. Is there a page in the install guide with it in? On Thu, Jan 5, 2012 at 4:43 PM, Tom Reijnders wrote: > xwd, rlt & rlm as mime-type 'text/xml' as far as I know. > > Op 5-1-2012 17:23, Adam Salem schreef: > > Hey folks, > > I know this has been mentioned a number of times before but I can't find a > comprehensive list of the MIME types that need to be set in an IIS > environment along with their type. > > If someone could tell me these that'd be great. > > Thanks > Adam Salem > ----------------------------------------------------------------------- > This message is sent in confidence for the addressee only. It may contain > confidential or sensitive information. The contents are not to be disclosed > to anyone other than the addressee unless specific authorisation has been > given by the sender. Unauthorised recipients are requested to preserve this > confidentiality and to advise us of any errors in transmission. Thank you. > > Save paper, only print this email if really necessary and think green. > Please turn off PC's and lights when not in use. > > Don't just standby, Switch Off! > > Worcester College of Technology EcoCampus Group. > ----------------------------------------------------------------------- > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > -- > -- > > Tom Reijnders > TOR Informatica > Chopinlaan 27 > 5242HM Rosmalen > Tel: 073 5226191 > Fax: 073 5226196 > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. ? Please do not > use, copy or disclose the information contained in this message or in any > attachment. ?Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > From patrick.lockley at googlemail.com Thu Jan 5 17:29:35 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Thu, 5 Jan 2012 17:29:35 +0000 Subject: [Xerte] Re: Xerte Xampp In-Reply-To: References: Message-ID: Hello, You'll need to make sure PHP and MySQL are running. If you run XAMPP Control Panel (found under "apache friends" ont he start menu), does it show both running? Pat On Thu, Jan 5, 2012 at 4:19 PM, Outterside, Gillian wrote: > Hi > I'm totally new to Xerte and have been experimenting in Sandpit and now want > to download it. > I have successfully followed the given steps up to the point below: > http://localhost/xertetoolkits/setup/? as indicated on the page > http://www.nottingham.ac.uk/xerte/toolkits.htm > but I get the following error message so can proceed no further. > > Object not found! > The requested URL was not found on this server. The link on the referring > page seems to be wrong or outdated. Please inform the author of that page > about the error. > If you think this is a server error, please contact the webmaster. > Error 404 > localhost > 04/01/2012 14:59:33 > Apache/2.2.12 (Win32) DAV/2 mod_ssl/2.2.12 OpenSSL/0.9.8k > mod_autoindex_color PHP/5.3.0 mod_perl/2.0.4 Perl/v5.10.0 > > Any advice please? > > Gill Outterside > University of Wolverhampton > > -- > Scanned by iCritical. > > > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. ? Please do not > use, copy or disclose the information contained in this message or in any > attachment. ?Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > From info at mtgjc.com Fri Jan 6 14:49:16 2012 From: info at mtgjc.com (MTG Judge Course) Date: Fri, 6 Jan 2012 09:49:16 -0500 Subject: [Xerte] Re: Xerte Online Toolkits: Installation Guide In-Reply-To: References: <002d01ccca4d$235223e0$69f66ba0$@mtgjc.com> <013d01cccaf4$328c2ca0$97a485e0$@mtgjc.com> <014701cccaf6$d76ef340$864cd9c0$@mtgjc.com> <01fc01cccb13$055b7a00$10126e00$@mtgjc.com> Message-ID: <000d01cccc82$5dffed10$19ffc730$@mtgjc.com> Thanks everyone for your help with this! It actually turned out that the problem was a permissions setting with the database that GoDaddy had to fix... I guess that's why all the searching for an issue on my end turned up nothing! This is a recurring problem, I understand, with having a shared hosting account. I was able after that to complete the install of Xerte, but I do not have LDAP, and I was wondering if there were instructions somewhere about how to install without LDAP. This installation of Xerte will only be used by one or two people, and using the same authentication, so I'm hoping to be able to bypass LDAP. Any help would be gratefully received! :) -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: Wednesday, January 04, 2012 2:12 PM To: Xerte discussion list Subject: [Xerte] Re: Xerte Online Toolkits: Installation Guide i would suggest something like this Save that in a php file in the root directory On Wed, Jan 4, 2012 at 6:59 PM, MTG Judge Course wrote: > LOL. Too true!! =) > > Yes, I'm decent with PHP, but not expert, and I fear I've surpassed > the limits of my ability to scour the PHP for where the problem might lie. > > > -----Original Message----- > From: xerte-bounces at lists.nottingham.ac.uk > [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley > Sent: Wednesday, January 04, 2012 11:28 AM > To: Xerte discussion list > Subject: [Xerte] Re: Xerte Online Toolkits: Installation Guide > > Yep, it should all work, but then if it should all work I can't think > what to suggest to help. > > Are you ok with PHP? > > On Wed, Jan 4, 2012 at 3:37 PM, MTG Judge Course wrote: >> I set the host, username, and password in the installation steps. The >> installer was able to create the database in the proper place using >> this information. So unless I'm really confused, that should mean >> that the host, username, and password are all correct, and that the >> user has the appropriate rights to the database?? >> >> The host and username are below. I'm omitting certain pieces of >> information since I believe these list communications are publicly > accessible. >> >> Host: mtg1*7.db.8777228.hostedresource.com >> Username: mtg1*7 >> Password: ***** [my password that works when accessing the db via >> PHPMyAdmin or ODBC connection] >> >> >> -----Original Message----- >> From: xerte-bounces at lists.nottingham.ac.uk >> [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat >> Lockley >> Sent: Wednesday, January 04, 2012 10:25 AM >> To: Xerte discussion list >> Subject: [Xerte] Re: Xerte Online Toolkits: Installation Guide >> >> Ok, >> >> It might be the host details - what is the host set as? >> >> Pat >> >> On Wed, Jan 4, 2012 at 3:19 PM, MTG Judge Course wrote: >>> Thanks so much for your response. I've checked the database.php >>> file, and all appears to be correct. I have a GoDaddy basic account, >>> so I cannot create more than one user for each database. I only have >>> one username and password, and that username of course has full >>> access of every type to the database. >>> >>> Note that during setup, this same username/password was used to >>> *create* the database tables. Everything appeared to be working >>> perfectly until I tried to use Xerte and it gave me that error message. >>> >>> Blargh! :) >>> >>> -----Original Message----- >>> From: xerte-bounces at lists.nottingham.ac.uk >>> [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat >>> Lockley >>> Sent: Tuesday, January 03, 2012 2:30 PM >>> To: Xerte discussion list >>> Subject: [Xerte] Re: Xerte Online Toolkits: Installation Guide >>> >>> The username in database.php isn't allowed to access the database >>> the installer created >>> >>> If you have cPanel check to see if the account you're using in >>> database.php has select,delete,insert and update privileges for that >> database. >>> >>> On Tue, Jan 3, 2012 at 7:23 PM, MTG Judge Course wrote: >>>> I tried to install Xerte online and ran into a roadblock. I >>>> followed all the installation directions to the letter, and the >>>> installation script successfully created all the Xerte tables in >>>> the database I?d set >>> up for it. >>>> However, when I try to access the Xerte installation, it says: >>>> >>>> >>>> >>>> ?Sorry, the system cannot connect to the database at present. The >>>> mysql error is Access denied for user 'mtg5[..]8'@'184.[..].193' >>>> (using >>> password: >>>> YES)? >>>> >>>> >>>> >>>> My website is hosted through GoDaddy. >>>> >>>> >>>> >>>> Thanks!!! >>>> >>>> >>>> >>>> >>>> >>>> >>>> This message and any attachment are intended solely for the >>>> addressee and may contain confidential information. If you have >>>> received this message in error, please send it back to me, and >>>> immediately delete it. Please do not use, copy or disclose the >>>> information contained in this message or in any attachment. Any >>>> views or opinions expressed by the author of this email do not >>>> necessarily reflect the views of the >>> University of Nottingham. >>>> >>>> This message has been checked for viruses but the contents of an >>>> attachment may still contain software viruses which could damage >>>> your >>> computer system: >>>> you are advised to perform your own checks. Email communications >>>> with the University of Nottingham may be monitored as permitted by >>>> UK >>> legislation. >>>> >>>> >>>> _______________________________________________ >>>> Xerte mailing list >>>> Xerte at lists.nottingham.ac.uk >>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>>> >>>> This message and any attachment are intended solely for the >>>> addressee and may contain confidential information. If you have >>>> received this message in error, please send it back to me, and >>>> immediately delete it. ? Please do not use, copy or disclose the >>>> information contained in this message or in any attachment. ?Any >>>> views or opinions expressed by the author of this email do not >>>> necessarily reflect the views of the >>> University of Nottingham. >>>> >>>> This message has been checked for viruses but the contents of an >>>> attachment may still contain software viruses which could damage >>>> your >>> computer system: >>>> you are advised to perform your own checks. Email communications >>>> with the University of Nottingham may be monitored as permitted by >>>> UK >>> legislation. >>>> >>>> >>> >>> _______________________________________________ >>> Xerte mailing list >>> Xerte at lists.nottingham.ac.uk >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>> >>> >>> _______________________________________________ >>> Xerte mailing list >>> Xerte at lists.nottingham.ac.uk >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte From patrick.lockley at googlemail.com Fri Jan 6 14:55:57 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Fri, 6 Jan 2012 14:55:57 +0000 Subject: [Xerte] Re: Xerte Online Toolkits: Installation Guide In-Reply-To: <000d01cccc82$5dffed10$19ffc730$@mtgjc.com> References: <002d01ccca4d$235223e0$69f66ba0$@mtgjc.com> <013d01cccaf4$328c2ca0$97a485e0$@mtgjc.com> <014701cccaf6$d76ef340$864cd9c0$@mtgjc.com> <01fc01cccb13$055b7a00$10126e00$@mtgjc.com> <000d01cccc82$5dffed10$19ffc730$@mtgjc.com> Message-ID: In the zip root folder is a file called switch.txt which you can replace index.php with if you've not got LDAP. Edit switch.txt and you'll see the passwords and such like. I'm not sure it works at present, so try renaming switch.txt to index.php. On Fri, Jan 6, 2012 at 2:49 PM, MTG Judge Course wrote: > Thanks everyone for your help with this! It actually turned out that the > problem was a permissions setting with the database that GoDaddy had to > fix... I guess that's why all the searching for an issue on my end turned up > nothing! This is a recurring problem, I understand, with having a shared > hosting account. > > I was able after that to complete the install of Xerte, but I do not have > LDAP, and I was wondering if there were instructions somewhere about how to > install without LDAP. This installation of Xerte will only be used by one or > two people, and using the same authentication, so I'm hoping to be able to > bypass LDAP. > > Any help would be gratefully received! :) > > -----Original Message----- > From: xerte-bounces at lists.nottingham.ac.uk > [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley > Sent: Wednesday, January 04, 2012 2:12 PM > To: Xerte discussion list > Subject: [Xerte] Re: Xerte Online Toolkits: Installation Guide > > i would suggest something like this > > > include "database.php"; > > $response = mysql_connect(settings from database.php); > > print_r($response); > > ?> > > Save that in a php file in the root directory > > On Wed, Jan 4, 2012 at 6:59 PM, MTG Judge Course wrote: >> LOL. Too true!! =) >> >> Yes, I'm decent with PHP, but not expert, and I fear I've surpassed >> the limits of my ability to scour the PHP for where the problem might lie. >> >> >> -----Original Message----- >> From: xerte-bounces at lists.nottingham.ac.uk >> [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley >> Sent: Wednesday, January 04, 2012 11:28 AM >> To: Xerte discussion list >> Subject: [Xerte] Re: Xerte Online Toolkits: Installation Guide >> >> Yep, it should all work, but then if it should all work I can't think >> what to suggest to help. >> >> Are you ok with PHP? >> >> On Wed, Jan 4, 2012 at 3:37 PM, MTG Judge Course wrote: >>> I set the host, username, and password in the installation steps. The >>> installer was able to create the database in the proper place using >>> this information. So unless I'm really confused, that should mean >>> that the host, username, and password are all correct, and that the >>> user has the appropriate rights to the database?? >>> >>> The host and username are below. I'm omitting certain pieces of >>> information since I believe these list communications are publicly >> accessible. >>> >>> Host: mtg1*7.db.8777228.hostedresource.com >>> Username: mtg1*7 >>> Password: ***** [my password that works when accessing the db via >>> PHPMyAdmin or ODBC connection] >>> >>> >>> -----Original Message----- >>> From: xerte-bounces at lists.nottingham.ac.uk >>> [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat >>> Lockley >>> Sent: Wednesday, January 04, 2012 10:25 AM >>> To: Xerte discussion list >>> Subject: [Xerte] Re: Xerte Online Toolkits: Installation Guide >>> >>> Ok, >>> >>> It might be the host details - what is the host set as? >>> >>> Pat >>> >>> On Wed, Jan 4, 2012 at 3:19 PM, MTG Judge Course wrote: >>>> Thanks so much for your response. I've checked the database.php >>>> file, and all appears to be correct. I have a GoDaddy basic account, >>>> so I cannot create more than one user for each database. I only have >>>> one username and password, and that username of course has full >>>> access of every type to the database. >>>> >>>> Note that during setup, this same username/password was used to >>>> *create* the database tables. Everything appeared to be working >>>> perfectly until I tried to use Xerte and it gave me that error message. >>>> >>>> Blargh! :) >>>> >>>> -----Original Message----- >>>> From: xerte-bounces at lists.nottingham.ac.uk >>>> [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat >>>> Lockley >>>> Sent: Tuesday, January 03, 2012 2:30 PM >>>> To: Xerte discussion list >>>> Subject: [Xerte] Re: Xerte Online Toolkits: Installation Guide >>>> >>>> The username in database.php isn't allowed to access the database >>>> the installer created >>>> >>>> If you have cPanel check to see if the account you're using in >>>> database.php has select,delete,insert and update privileges for that >>> database. >>>> >>>> On Tue, Jan 3, 2012 at 7:23 PM, MTG Judge Course wrote: >>>>> I tried to install Xerte online and ran into a roadblock. I >>>>> followed all the installation directions to the letter, and the >>>>> installation script successfully created all the Xerte tables in >>>>> the database I?d set >>>> up for it. >>>>> However, when I try to access the Xerte installation, it says: >>>>> >>>>> >>>>> >>>>> ?Sorry, the system cannot connect to the database at present. The >>>>> mysql error is Access denied for user 'mtg5[..]8'@'184.[..].193' >>>>> (using >>>> password: >>>>> YES)? >>>>> >>>>> >>>>> >>>>> My website is hosted through GoDaddy. >>>>> >>>>> >>>>> >>>>> Thanks!!! >>>>> >>>>> >>>>> >>>>> >>>>> >>>>> >>>>> This message and any attachment are intended solely for the >>>>> addressee and may contain confidential information. If you have >>>>> received this message in error, please send it back to me, and >>>>> immediately delete it. Please do not use, copy or disclose the >>>>> information contained in this message or in any attachment. Any >>>>> views or opinions expressed by the author of this email do not >>>>> necessarily reflect the views of the >>>> University of Nottingham. >>>>> >>>>> This message has been checked for viruses but the contents of an >>>>> attachment may still contain software viruses which could damage >>>>> your >>>> computer system: >>>>> you are advised to perform your own checks. Email communications >>>>> with the University of Nottingham may be monitored as permitted by >>>>> UK >>>> legislation. >>>>> >>>>> >>>>> _______________________________________________ >>>>> Xerte mailing list >>>>> Xerte at lists.nottingham.ac.uk >>>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>>>> >>>>> This message and any attachment are intended solely for the >>>>> addressee and may contain confidential information. If you have >>>>> received this message in error, please send it back to me, and >>>>> immediately delete it. ? Please do not use, copy or disclose the >>>>> information contained in this message or in any attachment. ?Any >>>>> views or opinions expressed by the author of this email do not >>>>> necessarily reflect the views of the >>>> University of Nottingham. >>>>> >>>>> This message has been checked for viruses but the contents of an >>>>> attachment may still contain software viruses which could damage >>>>> your >>>> computer system: >>>>> you are advised to perform your own checks. Email communications >>>>> with the University of Nottingham may be monitored as permitted by >>>>> UK >>>> legislation. >>>>> >>>>> >>>> >>>> _______________________________________________ >>>> Xerte mailing list >>>> Xerte at lists.nottingham.ac.uk >>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>>> >>>> >>>> _______________________________________________ >>>> Xerte mailing list >>>> Xerte at lists.nottingham.ac.uk >>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>> >>> _______________________________________________ >>> Xerte mailing list >>> Xerte at lists.nottingham.ac.uk >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>> >>> >>> _______________________________________________ >>> Xerte mailing list >>> Xerte at lists.nottingham.ac.uk >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte From info at mtgjc.com Fri Jan 6 15:17:07 2012 From: info at mtgjc.com (MTG Judge Course) Date: Fri, 6 Jan 2012 10:17:07 -0500 Subject: [Xerte] Re: Xerte Online Toolkits: Installation Guide In-Reply-To: References: <002d01ccca4d$235223e0$69f66ba0$@mtgjc.com> <013d01cccaf4$328c2ca0$97a485e0$@mtgjc.com> <014701cccaf6$d76ef340$864cd9c0$@mtgjc.com> <01fc01cccb13$055b7a00$10126e00$@mtgjc.com> <000d01cccc82$5dffed10$19ffc730$@mtgjc.com> Message-ID: <001c01cccc86$41fb3d50$c5f1b7f0$@mtgjc.com> Yeah, I tried that, and was able to get past the login screen, but everything comes up blank. (Once I log in, /xerte/index.php is blank.) Sigh... I'm beginning to think the universe is working against me on this one. -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: Friday, January 06, 2012 9:56 AM To: Xerte discussion list Subject: [Xerte] Re: Xerte Online Toolkits: Installation Guide In the zip root folder is a file called switch.txt which you can replace index.php with if you've not got LDAP. Edit switch.txt and you'll see the passwords and such like. I'm not sure it works at present, so try renaming switch.txt to index.php. On Fri, Jan 6, 2012 at 2:49 PM, MTG Judge Course wrote: > Thanks everyone for your help with this! It actually turned out that > the problem was a permissions setting with the database that GoDaddy > had to fix... I guess that's why all the searching for an issue on my > end turned up nothing! This is a recurring problem, I understand, with > having a shared hosting account. > > I was able after that to complete the install of Xerte, but I do not > have LDAP, and I was wondering if there were instructions somewhere > about how to install without LDAP. This installation of Xerte will > only be used by one or two people, and using the same authentication, > so I'm hoping to be able to bypass LDAP. > > Any help would be gratefully received! :) > > -----Original Message----- > From: xerte-bounces at lists.nottingham.ac.uk > [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley > Sent: Wednesday, January 04, 2012 2:12 PM > To: Xerte discussion list > Subject: [Xerte] Re: Xerte Online Toolkits: Installation Guide > > i would suggest something like this > > > include "database.php"; > > $response = mysql_connect(settings from database.php); > > print_r($response); > > ?> > > Save that in a php file in the root directory > > On Wed, Jan 4, 2012 at 6:59 PM, MTG Judge Course wrote: >> LOL. Too true!! =) >> >> Yes, I'm decent with PHP, but not expert, and I fear I've surpassed >> the limits of my ability to scour the PHP for where the problem might lie. >> >> >> -----Original Message----- >> From: xerte-bounces at lists.nottingham.ac.uk >> [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat >> Lockley >> Sent: Wednesday, January 04, 2012 11:28 AM >> To: Xerte discussion list >> Subject: [Xerte] Re: Xerte Online Toolkits: Installation Guide >> >> Yep, it should all work, but then if it should all work I can't think >> what to suggest to help. >> >> Are you ok with PHP? >> >> On Wed, Jan 4, 2012 at 3:37 PM, MTG Judge Course wrote: >>> I set the host, username, and password in the installation steps. >>> The installer was able to create the database in the proper place >>> using this information. So unless I'm really confused, that should >>> mean that the host, username, and password are all correct, and that >>> the user has the appropriate rights to the database?? >>> >>> The host and username are below. I'm omitting certain pieces of >>> information since I believe these list communications are publicly >> accessible. >>> >>> Host: mtg1*7.db.8777228.hostedresource.com >>> Username: mtg1*7 >>> Password: ***** [my password that works when accessing the db via >>> PHPMyAdmin or ODBC connection] >>> >>> >>> -----Original Message----- >>> From: xerte-bounces at lists.nottingham.ac.uk >>> [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat >>> Lockley >>> Sent: Wednesday, January 04, 2012 10:25 AM >>> To: Xerte discussion list >>> Subject: [Xerte] Re: Xerte Online Toolkits: Installation Guide >>> >>> Ok, >>> >>> It might be the host details - what is the host set as? >>> >>> Pat >>> >>> On Wed, Jan 4, 2012 at 3:19 PM, MTG Judge Course wrote: >>>> Thanks so much for your response. I've checked the database.php >>>> file, and all appears to be correct. I have a GoDaddy basic >>>> account, so I cannot create more than one user for each database. I >>>> only have one username and password, and that username of course >>>> has full access of every type to the database. >>>> >>>> Note that during setup, this same username/password was used to >>>> *create* the database tables. Everything appeared to be working >>>> perfectly until I tried to use Xerte and it gave me that error message. >>>> >>>> Blargh! :) >>>> >>>> -----Original Message----- >>>> From: xerte-bounces at lists.nottingham.ac.uk >>>> [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat >>>> Lockley >>>> Sent: Tuesday, January 03, 2012 2:30 PM >>>> To: Xerte discussion list >>>> Subject: [Xerte] Re: Xerte Online Toolkits: Installation Guide >>>> >>>> The username in database.php isn't allowed to access the database >>>> the installer created >>>> >>>> If you have cPanel check to see if the account you're using in >>>> database.php has select,delete,insert and update privileges for >>>> that >>> database. >>>> >>>> On Tue, Jan 3, 2012 at 7:23 PM, MTG Judge Course wrote: >>>>> I tried to install Xerte online and ran into a roadblock. I >>>>> followed all the installation directions to the letter, and the >>>>> installation script successfully created all the Xerte tables in >>>>> the database I?d set >>>> up for it. >>>>> However, when I try to access the Xerte installation, it says: >>>>> >>>>> >>>>> >>>>> ?Sorry, the system cannot connect to the database at present. The >>>>> mysql error is Access denied for user 'mtg5[..]8'@'184.[..].193' >>>>> (using >>>> password: >>>>> YES)? >>>>> >>>>> >>>>> >>>>> My website is hosted through GoDaddy. >>>>> >>>>> >>>>> >>>>> Thanks!!! >>>>> >>>>> >>>>> >>>>> >>>>> >>>>> >>>>> This message and any attachment are intended solely for the >>>>> addressee and may contain confidential information. If you have >>>>> received this message in error, please send it back to me, and >>>>> immediately delete it. Please do not use, copy or disclose the >>>>> information contained in this message or in any attachment. Any >>>>> views or opinions expressed by the author of this email do not >>>>> necessarily reflect the views of the >>>> University of Nottingham. >>>>> >>>>> This message has been checked for viruses but the contents of an >>>>> attachment may still contain software viruses which could damage >>>>> your >>>> computer system: >>>>> you are advised to perform your own checks. Email communications >>>>> with the University of Nottingham may be monitored as permitted by >>>>> UK >>>> legislation. >>>>> >>>>> >>>>> _______________________________________________ >>>>> Xerte mailing list >>>>> Xerte at lists.nottingham.ac.uk >>>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>>>> >>>>> This message and any attachment are intended solely for the >>>>> addressee and may contain confidential information. If you have >>>>> received this message in error, please send it back to me, and >>>>> immediately delete it. ? Please do not use, copy or disclose the >>>>> information contained in this message or in any attachment. ?Any >>>>> views or opinions expressed by the author of this email do not >>>>> necessarily reflect the views of the >>>> University of Nottingham. >>>>> >>>>> This message has been checked for viruses but the contents of an >>>>> attachment may still contain software viruses which could damage >>>>> your >>>> computer system: >>>>> you are advised to perform your own checks. Email communications >>>>> with the University of Nottingham may be monitored as permitted by >>>>> UK >>>> legislation. >>>>> >>>>> >>>> >>>> _______________________________________________ >>>> Xerte mailing list >>>> Xerte at lists.nottingham.ac.uk >>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>>> >>>> >>>> _______________________________________________ >>>> Xerte mailing list >>>> Xerte at lists.nottingham.ac.uk >>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>> >>> _______________________________________________ >>> Xerte mailing list >>> Xerte at lists.nottingham.ac.uk >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>> >>> >>> _______________________________________________ >>> Xerte mailing list >>> Xerte at lists.nottingham.ac.uk >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte From patrick.lockley at googlemail.com Fri Jan 6 15:35:35 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Fri, 6 Jan 2012 15:35:35 +0000 Subject: [Xerte] Re: Xerte Online Toolkits: Installation Guide In-Reply-To: <001c01cccc86$41fb3d50$c5f1b7f0$@mtgjc.com> References: <002d01ccca4d$235223e0$69f66ba0$@mtgjc.com> <013d01cccaf4$328c2ca0$97a485e0$@mtgjc.com> <014701cccaf6$d76ef340$864cd9c0$@mtgjc.com> <01fc01cccb13$055b7a00$10126e00$@mtgjc.com> <000d01cccc82$5dffed10$19ffc730$@mtgjc.com> <001c01cccc86$41fb3d50$c5f1b7f0$@mtgjc.com> Message-ID: i knew / suspected the page wouldn't work. Will have a look later as to why (php errors) On Fri, Jan 6, 2012 at 3:17 PM, MTG Judge Course wrote: > Yeah, I tried that, and was able to get past the login screen, but > everything comes up blank. (Once I log in, /xerte/index.php is blank.) > > Sigh... I'm beginning to think the universe is working against me on this > one. > > -----Original Message----- > From: xerte-bounces at lists.nottingham.ac.uk > [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley > Sent: Friday, January 06, 2012 9:56 AM > To: Xerte discussion list > Subject: [Xerte] Re: Xerte Online Toolkits: Installation Guide > > In the zip root folder is a file called switch.txt which you can replace > index.php with if you've not got LDAP. > > Edit switch.txt and you'll see the passwords and such like. > > I'm not sure it works at present, so try renaming switch.txt to index.php. > > On Fri, Jan 6, 2012 at 2:49 PM, MTG Judge Course wrote: >> Thanks everyone for your help with this! It actually turned out that >> the problem was a permissions setting with the database that GoDaddy >> had to fix... I guess that's why all the searching for an issue on my >> end turned up nothing! This is a recurring problem, I understand, with >> having a shared hosting account. >> >> I was able after that to complete the install of Xerte, but I do not >> have LDAP, and I was wondering if there were instructions somewhere >> about how to install without LDAP. This installation of Xerte will >> only be used by one or two people, and using the same authentication, >> so I'm hoping to be able to bypass LDAP. >> >> Any help would be gratefully received! :) >> >> -----Original Message----- >> From: xerte-bounces at lists.nottingham.ac.uk >> [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley >> Sent: Wednesday, January 04, 2012 2:12 PM >> To: Xerte discussion list >> Subject: [Xerte] Re: Xerte Online Toolkits: Installation Guide >> >> i would suggest something like this >> >> > >> include "database.php"; >> >> $response = mysql_connect(settings from database.php); >> >> print_r($response); >> >> ?> >> >> Save that in a php file in the root directory >> >> On Wed, Jan 4, 2012 at 6:59 PM, MTG Judge Course wrote: >>> LOL. Too true!! =) >>> >>> Yes, I'm decent with PHP, but not expert, and I fear I've surpassed >>> the limits of my ability to scour the PHP for where the problem might > lie. >>> >>> >>> -----Original Message----- >>> From: xerte-bounces at lists.nottingham.ac.uk >>> [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat >>> Lockley >>> Sent: Wednesday, January 04, 2012 11:28 AM >>> To: Xerte discussion list >>> Subject: [Xerte] Re: Xerte Online Toolkits: Installation Guide >>> >>> Yep, it should all work, but then if it should all work I can't think >>> what to suggest to help. >>> >>> Are you ok with PHP? >>> >>> On Wed, Jan 4, 2012 at 3:37 PM, MTG Judge Course wrote: >>>> I set the host, username, and password in the installation steps. >>>> The installer was able to create the database in the proper place >>>> using this information. So unless I'm really confused, that should >>>> mean that the host, username, and password are all correct, and that >>>> the user has the appropriate rights to the database?? >>>> >>>> The host and username are below. I'm omitting certain pieces of >>>> information since I believe these list communications are publicly >>> accessible. >>>> >>>> Host: mtg1*7.db.8777228.hostedresource.com >>>> Username: mtg1*7 >>>> Password: ***** [my password that works when accessing the db via >>>> PHPMyAdmin or ODBC connection] >>>> >>>> >>>> -----Original Message----- >>>> From: xerte-bounces at lists.nottingham.ac.uk >>>> [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat >>>> Lockley >>>> Sent: Wednesday, January 04, 2012 10:25 AM >>>> To: Xerte discussion list >>>> Subject: [Xerte] Re: Xerte Online Toolkits: Installation Guide >>>> >>>> Ok, >>>> >>>> It might be the host details - what is the host set as? >>>> >>>> Pat >>>> >>>> On Wed, Jan 4, 2012 at 3:19 PM, MTG Judge Course wrote: >>>>> Thanks so much for your response. I've checked the database.php >>>>> file, and all appears to be correct. I have a GoDaddy basic >>>>> account, so I cannot create more than one user for each database. I >>>>> only have one username and password, and that username of course >>>>> has full access of every type to the database. >>>>> >>>>> Note that during setup, this same username/password was used to >>>>> *create* the database tables. Everything appeared to be working >>>>> perfectly until I tried to use Xerte and it gave me that error message. >>>>> >>>>> Blargh! :) >>>>> >>>>> -----Original Message----- >>>>> From: xerte-bounces at lists.nottingham.ac.uk >>>>> [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat >>>>> Lockley >>>>> Sent: Tuesday, January 03, 2012 2:30 PM >>>>> To: Xerte discussion list >>>>> Subject: [Xerte] Re: Xerte Online Toolkits: Installation Guide >>>>> >>>>> The username in database.php isn't allowed to access the database >>>>> the installer created >>>>> >>>>> If you have cPanel check to see if the account you're using in >>>>> database.php has select,delete,insert and update privileges for >>>>> that >>>> database. >>>>> >>>>> On Tue, Jan 3, 2012 at 7:23 PM, MTG Judge Course > wrote: >>>>>> I tried to install Xerte online and ran into a roadblock. I >>>>>> followed all the installation directions to the letter, and the >>>>>> installation script successfully created all the Xerte tables in >>>>>> the database I?d set >>>>> up for it. >>>>>> However, when I try to access the Xerte installation, it says: >>>>>> >>>>>> >>>>>> >>>>>> ?Sorry, the system cannot connect to the database at present. The >>>>>> mysql error is Access denied for user 'mtg5[..]8'@'184.[..].193' >>>>>> (using >>>>> password: >>>>>> YES)? >>>>>> >>>>>> >>>>>> >>>>>> My website is hosted through GoDaddy. >>>>>> >>>>>> >>>>>> >>>>>> Thanks!!! >>>>>> >>>>>> >>>>>> >>>>>> >>>>>> >>>>>> >>>>>> This message and any attachment are intended solely for the >>>>>> addressee and may contain confidential information. If you have >>>>>> received this message in error, please send it back to me, and >>>>>> immediately delete it. Please do not use, copy or disclose the >>>>>> information contained in this message or in any attachment. Any >>>>>> views or opinions expressed by the author of this email do not >>>>>> necessarily reflect the views of the >>>>> University of Nottingham. >>>>>> >>>>>> This message has been checked for viruses but the contents of an >>>>>> attachment may still contain software viruses which could damage >>>>>> your >>>>> computer system: >>>>>> you are advised to perform your own checks. Email communications >>>>>> with the University of Nottingham may be monitored as permitted by >>>>>> UK >>>>> legislation. >>>>>> >>>>>> >>>>>> _______________________________________________ >>>>>> Xerte mailing list >>>>>> Xerte at lists.nottingham.ac.uk >>>>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>>>>> >>>>>> This message and any attachment are intended solely for the >>>>>> addressee and may contain confidential information. If you have >>>>>> received this message in error, please send it back to me, and >>>>>> immediately delete it. ? Please do not use, copy or disclose the >>>>>> information contained in this message or in any attachment. ?Any >>>>>> views or opinions expressed by the author of this email do not >>>>>> necessarily reflect the views of the >>>>> University of Nottingham. >>>>>> >>>>>> This message has been checked for viruses but the contents of an >>>>>> attachment may still contain software viruses which could damage >>>>>> your >>>>> computer system: >>>>>> you are advised to perform your own checks. Email communications >>>>>> with the University of Nottingham may be monitored as permitted by >>>>>> UK >>>>> legislation. >>>>>> >>>>>> >>>>> >>>>> _______________________________________________ >>>>> Xerte mailing list >>>>> Xerte at lists.nottingham.ac.uk >>>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>>>> >>>>> >>>>> _______________________________________________ >>>>> Xerte mailing list >>>>> Xerte at lists.nottingham.ac.uk >>>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>>> >>>> _______________________________________________ >>>> Xerte mailing list >>>> Xerte at lists.nottingham.ac.uk >>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>>> >>>> >>>> _______________________________________________ >>>> Xerte mailing list >>>> Xerte at lists.nottingham.ac.uk >>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>> >>> _______________________________________________ >>> Xerte mailing list >>> Xerte at lists.nottingham.ac.uk >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>> >>> >>> _______________________________________________ >>> Xerte mailing list >>> Xerte at lists.nottingham.ac.uk >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte From patrick.lockley at googlemail.com Fri Jan 6 20:31:53 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Fri, 6 Jan 2012 20:31:53 +0000 Subject: [Xerte] Re: Xerte Online Toolkits: Installation Guide In-Reply-To: References: <002d01ccca4d$235223e0$69f66ba0$@mtgjc.com> <013d01cccaf4$328c2ca0$97a485e0$@mtgjc.com> <014701cccaf6$d76ef340$864cd9c0$@mtgjc.com> <01fc01cccb13$055b7a00$10126e00$@mtgjc.com> <000d01cccc82$5dffed10$19ffc730$@mtgjc.com> <001c01cccc86$41fb3d50$c5f1b7f0$@mtgjc.com> Message-ID: use this switch.txt instead On Fri, Jan 6, 2012 at 3:35 PM, Pat Lockley wrote: > i knew / suspected the page wouldn't work. > > Will have a look later as to why (php errors) > > On Fri, Jan 6, 2012 at 3:17 PM, MTG Judge Course wrote: >> Yeah, I tried that, and was able to get past the login screen, but >> everything comes up blank. (Once I log in, /xerte/index.php is blank.) >> >> Sigh... I'm beginning to think the universe is working against me on this >> one. >> >> -----Original Message----- >> From: xerte-bounces at lists.nottingham.ac.uk >> [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley >> Sent: Friday, January 06, 2012 9:56 AM >> To: Xerte discussion list >> Subject: [Xerte] Re: Xerte Online Toolkits: Installation Guide >> >> In the zip root folder is a file called switch.txt which you can replace >> index.php with if you've not got LDAP. >> >> Edit switch.txt and you'll see the passwords and such like. >> >> I'm not sure it works at present, so try renaming switch.txt to index.php. >> >> On Fri, Jan 6, 2012 at 2:49 PM, MTG Judge Course wrote: >>> Thanks everyone for your help with this! It actually turned out that >>> the problem was a permissions setting with the database that GoDaddy >>> had to fix... I guess that's why all the searching for an issue on my >>> end turned up nothing! This is a recurring problem, I understand, with >>> having a shared hosting account. >>> >>> I was able after that to complete the install of Xerte, but I do not >>> have LDAP, and I was wondering if there were instructions somewhere >>> about how to install without LDAP. This installation of Xerte will >>> only be used by one or two people, and using the same authentication, >>> so I'm hoping to be able to bypass LDAP. >>> >>> Any help would be gratefully received! :) >>> >>> -----Original Message----- >>> From: xerte-bounces at lists.nottingham.ac.uk >>> [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley >>> Sent: Wednesday, January 04, 2012 2:12 PM >>> To: Xerte discussion list >>> Subject: [Xerte] Re: Xerte Online Toolkits: Installation Guide >>> >>> i would suggest something like this >>> >>> >> >>> include "database.php"; >>> >>> $response = mysql_connect(settings from database.php); >>> >>> print_r($response); >>> >>> ?> >>> >>> Save that in a php file in the root directory >>> >>> On Wed, Jan 4, 2012 at 6:59 PM, MTG Judge Course wrote: >>>> LOL. Too true!! =) >>>> >>>> Yes, I'm decent with PHP, but not expert, and I fear I've surpassed >>>> the limits of my ability to scour the PHP for where the problem might >> lie. >>>> >>>> >>>> -----Original Message----- >>>> From: xerte-bounces at lists.nottingham.ac.uk >>>> [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat >>>> Lockley >>>> Sent: Wednesday, January 04, 2012 11:28 AM >>>> To: Xerte discussion list >>>> Subject: [Xerte] Re: Xerte Online Toolkits: Installation Guide >>>> >>>> Yep, it should all work, but then if it should all work I can't think >>>> what to suggest to help. >>>> >>>> Are you ok with PHP? >>>> >>>> On Wed, Jan 4, 2012 at 3:37 PM, MTG Judge Course wrote: >>>>> I set the host, username, and password in the installation steps. >>>>> The installer was able to create the database in the proper place >>>>> using this information. So unless I'm really confused, that should >>>>> mean that the host, username, and password are all correct, and that >>>>> the user has the appropriate rights to the database?? >>>>> >>>>> The host and username are below. I'm omitting certain pieces of >>>>> information since I believe these list communications are publicly >>>> accessible. >>>>> >>>>> Host: mtg1*7.db.8777228.hostedresource.com >>>>> Username: mtg1*7 >>>>> Password: ***** [my password that works when accessing the db via >>>>> PHPMyAdmin or ODBC connection] >>>>> >>>>> >>>>> -----Original Message----- >>>>> From: xerte-bounces at lists.nottingham.ac.uk >>>>> [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat >>>>> Lockley >>>>> Sent: Wednesday, January 04, 2012 10:25 AM >>>>> To: Xerte discussion list >>>>> Subject: [Xerte] Re: Xerte Online Toolkits: Installation Guide >>>>> >>>>> Ok, >>>>> >>>>> It might be the host details - what is the host set as? >>>>> >>>>> Pat >>>>> >>>>> On Wed, Jan 4, 2012 at 3:19 PM, MTG Judge Course wrote: >>>>>> Thanks so much for your response. I've checked the database.php >>>>>> file, and all appears to be correct. I have a GoDaddy basic >>>>>> account, so I cannot create more than one user for each database. I >>>>>> only have one username and password, and that username of course >>>>>> has full access of every type to the database. >>>>>> >>>>>> Note that during setup, this same username/password was used to >>>>>> *create* the database tables. Everything appeared to be working >>>>>> perfectly until I tried to use Xerte and it gave me that error message. >>>>>> >>>>>> Blargh! :) >>>>>> >>>>>> -----Original Message----- >>>>>> From: xerte-bounces at lists.nottingham.ac.uk >>>>>> [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat >>>>>> Lockley >>>>>> Sent: Tuesday, January 03, 2012 2:30 PM >>>>>> To: Xerte discussion list >>>>>> Subject: [Xerte] Re: Xerte Online Toolkits: Installation Guide >>>>>> >>>>>> The username in database.php isn't allowed to access the database >>>>>> the installer created >>>>>> >>>>>> If you have cPanel check to see if the account you're using in >>>>>> database.php has select,delete,insert and update privileges for >>>>>> that >>>>> database. >>>>>> >>>>>> On Tue, Jan 3, 2012 at 7:23 PM, MTG Judge Course >> wrote: >>>>>>> I tried to install Xerte online and ran into a roadblock. I >>>>>>> followed all the installation directions to the letter, and the >>>>>>> installation script successfully created all the Xerte tables in >>>>>>> the database I?d set >>>>>> up for it. >>>>>>> However, when I try to access the Xerte installation, it says: >>>>>>> >>>>>>> >>>>>>> >>>>>>> ?Sorry, the system cannot connect to the database at present. The >>>>>>> mysql error is Access denied for user 'mtg5[..]8'@'184.[..].193' >>>>>>> (using >>>>>> password: >>>>>>> YES)? >>>>>>> >>>>>>> >>>>>>> >>>>>>> My website is hosted through GoDaddy. >>>>>>> >>>>>>> >>>>>>> >>>>>>> Thanks!!! >>>>>>> >>>>>>> >>>>>>> >>>>>>> >>>>>>> >>>>>>> >>>>>>> This message and any attachment are intended solely for the >>>>>>> addressee and may contain confidential information. If you have >>>>>>> received this message in error, please send it back to me, and >>>>>>> immediately delete it. Please do not use, copy or disclose the >>>>>>> information contained in this message or in any attachment. Any >>>>>>> views or opinions expressed by the author of this email do not >>>>>>> necessarily reflect the views of the >>>>>> University of Nottingham. >>>>>>> >>>>>>> This message has been checked for viruses but the contents of an >>>>>>> attachment may still contain software viruses which could damage >>>>>>> your >>>>>> computer system: >>>>>>> you are advised to perform your own checks. Email communications >>>>>>> with the University of Nottingham may be monitored as permitted by >>>>>>> UK >>>>>> legislation. >>>>>>> >>>>>>> >>>>>>> _______________________________________________ >>>>>>> Xerte mailing list >>>>>>> Xerte at lists.nottingham.ac.uk >>>>>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>>>>>> >>>>>>> This message and any attachment are intended solely for the >>>>>>> addressee and may contain confidential information. If you have >>>>>>> received this message in error, please send it back to me, and >>>>>>> immediately delete it. ? Please do not use, copy or disclose the >>>>>>> information contained in this message or in any attachment. ?Any >>>>>>> views or opinions expressed by the author of this email do not >>>>>>> necessarily reflect the views of the >>>>>> University of Nottingham. >>>>>>> >>>>>>> This message has been checked for viruses but the contents of an >>>>>>> attachment may still contain software viruses which could damage >>>>>>> your >>>>>> computer system: >>>>>>> you are advised to perform your own checks. Email communications >>>>>>> with the University of Nottingham may be monitored as permitted by >>>>>>> UK >>>>>> legislation. >>>>>>> >>>>>>> >>>>>> >>>>>> _______________________________________________ >>>>>> Xerte mailing list >>>>>> Xerte at lists.nottingham.ac.uk >>>>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>>>>> >>>>>> >>>>>> _______________________________________________ >>>>>> Xerte mailing list >>>>>> Xerte at lists.nottingham.ac.uk >>>>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>>>> >>>>> _______________________________________________ >>>>> Xerte mailing list >>>>> Xerte at lists.nottingham.ac.uk >>>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>>>> >>>>> >>>>> _______________________________________________ >>>>> Xerte mailing list >>>>> Xerte at lists.nottingham.ac.uk >>>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>>> >>>> _______________________________________________ >>>> Xerte mailing list >>>> Xerte at lists.nottingham.ac.uk >>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>>> >>>> >>>> _______________________________________________ >>>> Xerte mailing list >>>> Xerte at lists.nottingham.ac.uk >>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>> >>> _______________________________________________ >>> Xerte mailing list >>> Xerte at lists.nottingham.ac.uk >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>> >>> >>> _______________________________________________ >>> Xerte mailing list >>> Xerte at lists.nottingham.ac.uk >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte -------------- next part -------------- php_library_path . "login_library.php"; include $xerte_toolkits_site->php_library_path . "display_library.php"; /** * Check to see if anything has been posted to distinguish between log in attempts */ if((!isset($_POST["login"]))&&(!isset($_POST["password"]))){ $buffer = login_page_format_top(file_get_contents($xerte_toolkits_site->root_file_path . $xerte_toolkits_site->website_code_path . "login_top")); $buffer .= $form_string; $buffer .= login_page_format_bottom(file_get_contents($xerte_toolkits_site->root_file_path . $xerte_toolkits_site->website_code_path . "login_bottom")); echo $buffer; } /* * Some data has bee posted, interpret as attempt to login */ if ($_SERVER['REQUEST_METHOD'] == 'POST') { /** * Username and password left empty */ if(($_POST["login"]=="")&&($_POST["password"]=="")){ $buffer = login_page_format_top(file_get_contents($xerte_toolkits_site->root_file_path . $xerte_toolkits_site->website_code_path . "login_top")); $buffer .= "

Please enter your username and password

"; $buffer .= login_page_format_bottom(file_get_contents($xerte_toolkits_site->root_file_path . $xerte_toolkits_site->website_code_path . "login_bottom")); echo $buffer; /* * Username left empty */ }else if($_POST["login"]==""){ $buffer = login_page_format_top(file_get_contents($xerte_toolkits_site->root_file_path . $xerte_toolkits_site->website_code_path . "login_top")); $buffer .= "

Please enter your username

"; $buffer .= login_page_format_bottom(file_get_contents($xerte_toolkits_site->root_file_path . $xerte_toolkits_site->website_code_path . "login_bottom")); echo $buffer; /* * Password left empty */ }else if($_POST["password"]==""){ $buffer = login_page_format_top(file_get_contents($xerte_toolkits_site->root_file_path . $xerte_toolkits_site->website_code_path . "login_top")); $buffer .= "

Please enter your password

"; $buffer .= login_page_format_bottom(file_get_contents($xerte_toolkits_site->root_file_path . $xerte_toolkits_site->website_code_path . "login_bottom")); echo $buffer; /* * Password and username provided, so try to authenticate */ }else if(($_POST["login"]!="")&&($_POST["password"]!="")){ /* * See if the submitted values are valid logins */ $authenticated = false; function set_user_details($firstname, $surname){ $_SESSION['toolkits_firstname'] = $firstname; $_SESSION['toolkits_surname'] = $surname; } switch($_POST["login"]){ case "pat": if($_POST["password"]=="patpassword"){ $authenticated = true; set_user_details("Pat","Blair");}; break; case "john": if($_POST["password"]=="johnpassword"){ $authenticated = true; set_user_details("John","Obama"); }; break; case "bob": if($_POST["password"]=="bobpassword"){ $authenticated = true; set_user_details("Bob","Putin"); }; break; case "sarah": if($_POST["password"]=="sarahpassword"){ $authenticated = true; set_user_details("Sarah","Sarkozy"); }; break; default: $authenticated = false; break; } if($authenticated){ /* * Give the session its own session id */ $_SESSION['toolkits_sessionid'] = $session_id; include $xerte_toolkits_site->php_library_path . "user_library.php"; $mysql_id=database_connect("index.php database connect success","index.php database connect fail"); $_SESSION['toolkits_logon_username'] = $_POST["login"]; /* * Check to see if this is a users' first time on the site */ if(check_if_first_time($_SESSION['toolkits_logon_username'])){ /* * create the user a new id */ $_SESSION['toolkits_logon_id'] = create_user_id($_SESSION['toolkits_logon_username'], $_SESSION['toolkits_firstname'], $_SESSION['toolkits_surname']); /* * create a virtual root folder for this user */ create_a_virtual_root_folder(); }else{ /* * User exists so update the user settings */ $_SESSION['toolkits_logon_id'] = get_user_id(); update_user_logon_time(); } recycle_bin(); /* * Output the main page, including the user's and blank templates */ echo file_get_contents($xerte_toolkits_site->website_code_path . "management_headers"); echo "