From reijnders at tor.nl Wed Jan 1 20:46:17 2014 From: reijnders at tor.nl (Tom Reijnders) Date: Wed, 01 Jan 2014 21:46:17 +0100 Subject: [Xerte] Re: JS question in template_management.js In-Reply-To: <001d01cf035d$0e415c00$2ac41400$@kccsoft.com> References: <001d01cf035d$0e415c00$2ac41400$@kccsoft.com> Message-ID: <52C47E99.6030108@tor.nl> Ron, This is probably better for the developer list. Anyhow, on line 1007 (of the latest version) of template_management.js, you see the expression that is used to get the tempate_id to be deleted. delete_template(drag_manager.selected_items[x].id.substr(drag_manager.selected_items[x].id.indexOf("_"),drag_manager.selected_items[x].id.length)); So: 1. drag_manager.selected_items[x].id contains a string that determines whther this item to be deleted is a folder or an LO. In this case it is expected to be an LO and conatins something like 'file_43' for templateId 43 2. To get the 43 out of the string, the text from '_' to the end of the string is taken: drag_manager.selected_items[x].id.substr(drag_manager.selected_items[x].id.indexOf("_"),drag_manager.selected_items[x].id.length 3. Then that string is passed to the delete_tempate function (in this case 43) So perhaps, you should put your logic in the delete_template function... Or even better, in the php function : website_code/php/templates/delete_template.php because that's the function that does all the work (it's called from delete_template by using AJAX). Regards, Tom KnowledgeWare schreef op 28-12-2013 0:40: > > I'm in toolkits V1.7 (trying to move to 2 -- this is part of the > process) in websitecode/scripts/template_management.js down around > line 1030. This is the section where courses are deleted. Since my > customizations use a SQL Server dbase to also store info on the > courses, I want run a script to make sure that the course(s) to be > deleted are not assigned to students. > > First I need to get the 'templateID' of the course, but not sure how > to do that, I'm not good with js. Does anyone know if I can pull the > 'templateID' of the course(s) that have been clicked in the workspace > delete window at this point? I'm wondering if the document object > contains the templateID(s) at this point and if so what syntax I'd use > to get them. > > Next, any suggestion on what is socially acceptable to js in terms of > running a query on my SQL Server database to see if students are > currently assigned? > > Thanks for any suggestions > > RonM2 > > //RGM if workspace folder selected and delete clicked: > > if(document.getElementById("folder_workspace").mainhighlight){ > > alert("You cannot delete the Workspace folder"); > > } > > }else{ > > //RGM if more than one workspace course is selected and delete clicked: > > if(drag_manager.selected_items.length!=1){ > > var response = confirm("Are you sure you with to delete these items?"); > > }else{ > > //RGM if a single workspace course is selected and delete clicked: > > var response = confirm("Are you sure you with to delete this item?"); > > } > > > 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 -------------- next part -------------- An HTML attachment was scrubbed... URL: From xerte at pgogywebstuff.com Wed Jan 1 21:38:57 2014 From: xerte at pgogywebstuff.com (Pat L (pgogy)) Date: Wed, 1 Jan 2014 21:38:57 +0000 Subject: [Xerte] Re: JS question in template_management.js In-Reply-To: <001d01cf035d$0e415c00$2ac41400$@kccsoft.com> References: <001d01cf035d$0e415c00$2ac41400$@kccsoft.com> Message-ID: try looping through drag_manager.selected_items (all selected items) On Fri, Dec 27, 2013 at 11:40 PM, KnowledgeWare wrote: > I?m in toolkits V1.7 (trying to move to 2 ? this is part of the process) > in websitecode/scripts/template_management.js down around line 1030. This > is the section where courses are deleted. Since my customizations use a SQL > Server dbase to also store info on the courses, I want run a script to make > sure that the course(s) to be deleted are not assigned to students. > > > > First I need to get the ?templateID? of the course, but not sure how to do > that, I?m not good with js. Does anyone know if I can pull the ?templateID? > of the course(s) that have been clicked in the workspace delete window at > this point? I?m wondering if the document object contains the templateID(s) > at this point and if so what syntax I?d use to get them. > > > > Next, any suggestion on what is socially acceptable to js in terms of > running a query on my SQL Server database to see if students are currently > assigned? > > > > Thanks for any suggestions > > RonM2 > > > > //RGM if workspace folder selected and delete clicked: > > > if(document.getElementById("folder_workspace").mainhighlight){ > > alert("You cannot delete the Workspace > folder"); > > } > > > > }else{ > > //RGM if more than one workspace course is selected and delete clicked: > > if(drag_manager.selected_items.length!=1){ > > > > var response = confirm("Are you sure > you with to delete these items?"); > > > > }else{ > > > > //RGM if a single workspace course is selected and delete clicked: > > > > var response = confirm("Are you sure > you with to delete this item?"); > > > > } > > 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 knowledgeware at kccsoft.com Thu Jan 2 20:59:17 2014 From: knowledgeware at kccsoft.com (KnowledgeWare) Date: Thu, 2 Jan 2014 12:59:17 -0800 Subject: [Xerte] Re: JS question in template_management.js In-Reply-To: <52C47E99.6030108@tor.nl> References: <001d01cf035d$0e415c00$2ac41400$@kccsoft.com> <52C47E99.6030108@tor.nl> Message-ID: <002701cf07fd$80642200$812c6600$@kccsoft.com> Thanks Tom and Pat, will look at this. RonM2 From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Tom Reijnders Sent: Wednesday, January 01, 2014 12:46 PM To: Xerte discussion list Subject: [Xerte] Re: JS question in template_management.js Ron, This is probably better for the developer list. Anyhow, on line 1007 (of the latest version) of template_management.js, you see the expression that is used to get the tempate_id to be deleted. delete_template(drag_manager.selected_items[x].id.substr(drag_manager.select ed_items[x].id.indexOf("_"),drag_manager.selected_items[x].id.length)); So: 1. drag_manager.selected_items[x].id contains a string that determines whther this item to be deleted is a folder or an LO. In this case it is expected to be an LO and conatins something like 'file_43' for templateId 43 2. To get the 43 out of the string, the text from '_' to the end of the string is taken: drag_manager.selected_items[x].id.substr(drag_manager.selected_items[x].id.i ndexOf("_"),drag_manager.selected_items[x].id.length 3. Then that string is passed to the delete_tempate function (in this case 43) So perhaps, you should put your logic in the delete_template function... Or even better, in the php function : website_code/php/templates/delete_template.php because that's the function that does all the work (it's called from delete_template by using AJAX). Regards, Tom KnowledgeWare schreef op 28-12-2013 0:40: I'm in toolkits V1.7 (trying to move to 2 - this is part of the process) in websitecode/scripts/template_management.js down around line 1030. This is the section where courses are deleted. Since my customizations use a SQL Server dbase to also store info on the courses, I want run a script to make sure that the course(s) to be deleted are not assigned to students. First I need to get the 'templateID' of the course, but not sure how to do that, I'm not good with js. Does anyone know if I can pull the 'templateID' of the course(s) that have been clicked in the workspace delete window at this point? I'm wondering if the document object contains the templateID(s) at this point and if so what syntax I'd use to get them. Next, any suggestion on what is socially acceptable to js in terms of running a query on my SQL Server database to see if students are currently assigned? Thanks for any suggestions RonM2 //RGM if workspace folder selected and delete clicked: if(document.getElementById("folder_workspace").mainhighlight){ alert("You cannot delete the Workspace folder"); } }else{ //RGM if more than one workspace course is selected and delete clicked: if(drag_manager.selected_items.length!=1){ var response = confirm("Are you sure you with to delete these items?"); }else{ //RGM if a single workspace course is selected and delete clicked: var response = confirm("Are you sure you with to delete this item?"); } 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 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 ashbrix at gmail.com Sun Jan 5 22:59:06 2014 From: ashbrix at gmail.com (Rick Ashby) Date: Sun, 5 Jan 2014 17:59:06 -0500 Subject: [Xerte] Re: JS question in template_management.js In-Reply-To: <001d01cf035d$0e415c00$2ac41400$@kccsoft.com> References: <001d01cf035d$0e415c00$2ac41400$@kccsoft.com> Message-ID: I know this has come up before, but I haven't been able to find a solution. With XOT 2.1, I'm unable to open exported projects in chrome. They are fantastic in Firefox. On Fri, Dec 27, 2013 at 6:40 PM, KnowledgeWare wrote: > I?m in toolkits V1.7 (trying to move to 2 ? this is part of the process) > in websitecode/scripts/template_management.js down around line 1030. This > is the section where courses are deleted. Since my customizations use a SQL > Server dbase to also store info on the courses, I want run a script to make > sure that the course(s) to be deleted are not assigned to students. > > > > First I need to get the ?templateID? of the course, but not sure how to do > that, I?m not good with js. Does anyone know if I can pull the ?templateID? > of the course(s) that have been clicked in the workspace delete window at > this point? I?m wondering if the document object contains the templateID(s) > at this point and if so what syntax I?d use to get them. > > > > Next, any suggestion on what is socially acceptable to js in terms of > running a query on my SQL Server database to see if students are currently > assigned? > > > > Thanks for any suggestions > > RonM2 > > > > //RGM if workspace folder selected and delete clicked: > > > if(document.getElementById("folder_workspace").mainhighlight){ > > alert("You cannot delete the Workspace > folder"); > > } > > > > }else{ > > //RGM if more than one workspace course is selected and delete clicked: > > if(drag_manager.selected_items.length!=1){ > > > > var response = confirm("Are you sure > you with to delete these items?"); > > > > }else{ > > > > //RGM if a single workspace course is selected and delete clicked: > > > > var response = confirm("Are you sure > you with to delete this item?"); > > > > } > > 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 > > -- Visit my "Linked In," profile: http://www.linkedin.com/in/rickashby -------------- next part -------------- An HTML attachment was scrubbed... URL: From xerte at pgogywebstuff.com Sun Jan 5 23:13:31 2014 From: xerte at pgogywebstuff.com (Pat L (pgogy)) Date: Sun, 5 Jan 2014 23:13:31 +0000 Subject: [Xerte] Re: JS question in template_management.js In-Reply-To: References: <001d01cf035d$0e415c00$2ac41400$@kccsoft.com> Message-ID: any errors in the console? On Sun, Jan 5, 2014 at 10:59 PM, Rick Ashby wrote: > I know this has come up before, but I haven't been able to find a > solution. With XOT 2.1, I'm unable to open exported projects in chrome. > They are fantastic in Firefox. > > > On Fri, Dec 27, 2013 at 6:40 PM, KnowledgeWare wrote: > >> I?m in toolkits V1.7 (trying to move to 2 ? this is part of the process) >> in websitecode/scripts/template_management.js down around line 1030. This >> is the section where courses are deleted. Since my customizations use a SQL >> Server dbase to also store info on the courses, I want run a script to make >> sure that the course(s) to be deleted are not assigned to students. >> >> >> >> First I need to get the ?templateID? of the course, but not sure how to >> do that, I?m not good with js. Does anyone know if I can pull the >> ?templateID? of the course(s) that have been clicked in the workspace >> delete window at this point? I?m wondering if the document object contains >> the templateID(s) at this point and if so what syntax I?d use to get them. >> >> >> >> Next, any suggestion on what is socially acceptable to js in terms of >> running a query on my SQL Server database to see if students are currently >> assigned? >> >> >> >> Thanks for any suggestions >> >> RonM2 >> >> >> >> //RGM if workspace folder selected and delete clicked: >> >> >> if(document.getElementById("folder_workspace").mainhighlight){ >> >> alert("You cannot delete the >> Workspace folder"); >> >> } >> >> >> >> }else{ >> >> //RGM if more than one workspace course is selected and delete clicked: >> >> if(drag_manager.selected_items.length!=1){ >> >> >> >> var response = confirm("Are you sure >> you with to delete these items?"); >> >> >> >> }else{ >> >> >> >> //RGM if a single workspace course is selected and delete clicked: >> >> >> >> var response = confirm("Are you sure >> you with to delete this item?"); >> >> >> >> } >> >> 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 >> >> > > > -- > Visit my "Linked In," profile: > http://www.linkedin.com/in/rickashby > > _______________________________________________ > 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 ashbrix at gmail.com Sun Jan 5 23:31:29 2014 From: ashbrix at gmail.com (Rick Ashby) Date: Sun, 5 Jan 2014 18:31:29 -0500 Subject: [Xerte] Re: JS question in template_management.js In-Reply-To: References: <001d01cf035d$0e415c00$2ac41400$@kccsoft.com> Message-ID: Does this help? [image: Inline image 1] On Sun, Jan 5, 2014 at 6:13 PM, Pat L (pgogy) wrote: > any errors in the console? > > > On Sun, Jan 5, 2014 at 10:59 PM, Rick Ashby wrote: > >> I know this has come up before, but I haven't been able to find a >> solution. With XOT 2.1, I'm unable to open exported projects in chrome. >> They are fantastic in Firefox. >> >> >> On Fri, Dec 27, 2013 at 6:40 PM, KnowledgeWare > > wrote: >> >>> I?m in toolkits V1.7 (trying to move to 2 ? this is part of the process) >>> in websitecode/scripts/template_management.js down around line 1030. This >>> is the section where courses are deleted. Since my customizations use a SQL >>> Server dbase to also store info on the courses, I want run a script to make >>> sure that the course(s) to be deleted are not assigned to students. >>> >>> >>> >>> First I need to get the ?templateID? of the course, but not sure how to >>> do that, I?m not good with js. Does anyone know if I can pull the >>> ?templateID? of the course(s) that have been clicked in the workspace >>> delete window at this point? I?m wondering if the document object contains >>> the templateID(s) at this point and if so what syntax I?d use to get them. >>> >>> >>> >>> Next, any suggestion on what is socially acceptable to js in terms of >>> running a query on my SQL Server database to see if students are currently >>> assigned? >>> >>> >>> >>> Thanks for any suggestions >>> >>> RonM2 >>> >>> >>> >>> //RGM if workspace folder selected and delete clicked: >>> >>> >>> if(document.getElementById("folder_workspace").mainhighlight){ >>> >>> alert("You cannot delete the >>> Workspace folder"); >>> >>> } >>> >>> >>> >>> }else{ >>> >>> //RGM if more than one workspace course is selected and delete clicked: >>> >>> if(drag_manager.selected_items.length!=1){ >>> >>> >>> >>> var response = confirm("Are you sure >>> you with to delete these items?"); >>> >>> >>> >>> }else{ >>> >>> >>> >>> //RGM if a single workspace course is selected and delete clicked: >>> >>> >>> >>> var response = confirm("Are you sure >>> you with to delete this item?"); >>> >>> >>> >>> } >>> >>> 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 >>> >>> >> >> >> -- >> Visit my "Linked In," profile: >> http://www.linkedin.com/in/rickashby >> >> _______________________________________________ >> 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 > > -- Visit my "Linked In," profile: http://www.linkedin.com/in/rickashby -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image.png Type: image/png Size: 26360 bytes Desc: not available URL: From knowledgeware at kccsoft.com Tue Jan 7 06:04:18 2014 From: knowledgeware at kccsoft.com (KnowledgeWare) Date: Mon, 6 Jan 2014 22:04:18 -0800 Subject: [Xerte] Re: Desktop AS2 version - shutdown cleanup Message-ID: <000001cf0b6e$4d613cc0$e823b640$@kccsoft.com> I have one app I'd like to finish in the xerte desktop version. It uses a Flash swf menu which works with cookies. Does anyone know what happens if the user clicks the X in the upper right corner and closes the window - is there a way to intercept that event and do some 'cleanup' - like writing the cookie to the hard drive for reading in on next opening? RonM2 -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Tue Jan 7 09:11:28 2014 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Tue, 7 Jan 2014 09:11:28 +0000 Subject: [Xerte] Re: Desktop AS2 version - shutdown cleanup In-Reply-To: <000001cf0b6e$4d613cc0$e823b640$@kccsoft.com> References: <000001cf0b6e$4d613cc0$e823b640$@kccsoft.com> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0CE7026A6D@EXCHANGE1.ad.nottingham.ac.uk> I don't think you can trap that event in Flash without some jiggery pokery: you'd have to intercept in in javascript in the browser and then try and do what you need to (I think) From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of KnowledgeWare Sent: 07 January 2014 06:04 To: 'Xerte discussion list' Subject: [Xerte] Re: Desktop AS2 version - shutdown cleanup I have one app I'd like to finish in the xerte desktop version. It uses a Flash swf menu which works with cookies. Does anyone know what happens if the user clicks the X in the upper right corner and closes the window - is there a way to intercept that event and do some 'cleanup' - like writing the cookie to the hard drive for reading in on next opening? RonM2 -------------- next part -------------- An HTML attachment was scrubbed... URL: From srauch at gjhosp.org Tue Jan 7 23:05:40 2014 From: srauch at gjhosp.org (Steven Rauch) Date: Tue, 7 Jan 2014 16:05:40 -0700 Subject: [Xerte] Minimum installation to export SCORM Message-ID: <2172c1f9-6608-4e59-9b08-129bcb95dda7@gjhosp.org> I am a medical librarian in the states and I have used XOT (thanks to the sandpit!) to create a course for proof of concept. I exported it to SCORM and we deliver it using a hosted learning management system called HealthStream. In order to create other RLOs to deliver I was wondering what the minimum installation is that I would need in order to export SCORM content. We do not need to be running XOT behind Moodle or anything like that. Would it be easiest to use MAXOS and not bother with installing on my desktop PC or bothering Info Technology to install on an intranet server or is there some other recommended approach. Our IT folks are more focused on patient care systems, so I want to give them the easiest possible solution. Thank you - Steve Rauch ?This e-mail is intended solely for the person or entity to which it is addressed and may contain confidential and/or privileged information. Any review, dissemination, copying, printing or other use of this e-mail by persons or entities other than the addressee is prohibited. If you have received this e-mail in error, please contact the sender immediately and delete the material from any computer. -------------- next part -------------- An HTML attachment was scrubbed... URL: From reijnders at tor.nl Tue Jan 7 23:39:56 2014 From: reijnders at tor.nl (Tom Reijnders) Date: Wed, 08 Jan 2014 00:39:56 +0100 Subject: [Xerte] Re: Minimum installation to export SCORM In-Reply-To: <2172c1f9-6608-4e59-9b08-129bcb95dda7@gjhosp.org> References: <2172c1f9-6608-4e59-9b08-129bcb95dda7@gjhosp.org> Message-ID: <52CC904C.2030206@tor.nl> MAXOS may work, but I would advice you to consider a XAMPP installation on your desktop PC, if you're the only one creating the SCORM content. If there are more people creating content, then you definitely want to consider an installation on an internet/intranet server, to be able to share/co-write/peer-review content. Tom Steven Rauch schreef op 8-1-2014 0:05: > I am a medical librarian in the states and I have used XOT (thanks to > the sandpit!) to create a course for proof of concept. I exported it > to SCORM and we deliver it using a hosted learning management system > called HealthStream. > > In order to create other RLOs to deliver I was wondering what the > minimum installation is that I would need in order to export SCORM > content. We do not need to be running XOT behind Moodle or anything > like that. Would it be easiest to use MAXOS and not bother with > installing on my desktop PC or bothering Info Technology to install on > an intranet server or is there some other recommended approach. > > Our IT folks are more focused on patient care systems, so I want to > give them the easiest possible solution. > > Thank you - > > Steve Rauch > > > > This e-mail is intended solely for the person or entity to which it is > addressed and may contain confidential and/or privileged information. > Any review, dissemination, copying, printing or other use of this > e-mail by persons or entities other than the addressee is prohibited. > If you have received this e-mail in error, please contact the sender > immediately and delete the material from any computer. > > > > _______________________________________________ > 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 -------------- next part -------------- An HTML attachment was scrubbed... URL: From Alistair.McNaught at HEAcademy.ac.uk Wed Jan 8 08:48:41 2014 From: Alistair.McNaught at HEAcademy.ac.uk (Alistair McNaught) Date: Wed, 8 Jan 2014 08:48:41 +0000 Subject: [Xerte] Re: Minimum installation to export SCORM In-Reply-To: <2172c1f9-6608-4e59-9b08-129bcb95dda7@gjhosp.org> References: <2172c1f9-6608-4e59-9b08-129bcb95dda7@gjhosp.org> Message-ID: MAXOS is great for local-only use but you do lose the bells and whistles of the server install such as the ability to collaborate as authors, the ability to set up an export feed so learners/users can subscribe to your Xerte Los and get instant updates and changes to Los. I?m not experienced in the SCORM side so will leave others to comment but my preference would be to go for a server installation wherever possible. There are also people on this list who can set up hosted versions for a fee (it?s not me so there?s no commercial interest to declare!) if you needed to avoid giving extra work to IT staff on patient care systems Alistair From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Steven Rauch Sent: 07 January 2014 23:06 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Minimum installation to export SCORM I am a medical librarian in the states and I have used XOT (thanks to the sandpit!) to create a course for proof of concept. I exported it to SCORM and we deliver it using a hosted learning management system called HealthStream. In order to create other RLOs to deliver I was wondering what the minimum installation is that I would need in order to export SCORM content. We do not need to be running XOT behind Moodle or anything like that. Would it be easiest to use MAXOS and not bother with installing on my desktop PC or bothering Info Technology to install on an intranet server or is there some other recommended approach. Our IT folks are more focused on patient care systems, so I want to give them the easiest possible solution. Thank you - Steve Rauch ?This e-mail is intended solely for the person or entity to which it is addressed and may contain confidential and/or privileged information. Any review, dissemination, copying, printing or other use of this e-mail by persons or entities other than the addressee is prohibited. If you have received this e-mail in error, please contact the sender immediately and delete the material from any computer. This e-mail along with any attachment(s) is strictly confidential and may contain privileged information. It is intended solely for the intended recipient(s). If you are not the intended recipient, please do not disclose, store, copy, take any action or omit to take any action in reliance of its contents: to do so is strictly prohibited and may be unlawful. If you have received this e-mail in error, please notify the sender and delete the e-mail immediately. Views expressed in this e-mail 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 and take any necessary measures when e-mailing us. Although we have taken steps to ensure this e-mail and attachment(s) are free from any virus, we advise that in keeping with good computing practice, the recipient should ensure that they are actually virus free as the Higher Education Academy will not be liable for any losses as a result of any viruses being passed on by this e-mail and/or any attachment(s). The Higher Education Academy. Company limited by guarantee registered in England and Wales no. 04931031. Registered as a charity in England and Wales no. 1101607. Registered as a charity in Scotland no. SC043946. -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Wed Jan 8 09:21:54 2014 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Wed, 8 Jan 2014 09:21:54 +0000 Subject: [Xerte] Re: Minimum installation to export SCORM In-Reply-To: References: <2172c1f9-6608-4e59-9b08-129bcb95dda7@gjhosp.org> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0CE7026F6D@EXCHANGE1.ad.nottingham.ac.uk> Also, if you run it from a server, you don?t need to export the SCORM packages, just link to them in situ. It?s much easier to manage them that way. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Alistair McNaught Sent: 08 January 2014 08:49 To: Xerte discussion list Subject: [Xerte] Re: Minimum installation to export SCORM MAXOS is great for local-only use but you do lose the bells and whistles of the server install such as the ability to collaborate as authors, the ability to set up an export feed so learners/users can subscribe to your Xerte Los and get instant updates and changes to Los. I?m not experienced in the SCORM side so will leave others to comment but my preference would be to go for a server installation wherever possible. There are also people on this list who can set up hosted versions for a fee (it?s not me so there?s no commercial interest to declare!) if you needed to avoid giving extra work to IT staff on patient care systems Alistair From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Steven Rauch Sent: 07 January 2014 23:06 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Minimum installation to export SCORM I am a medical librarian in the states and I have used XOT (thanks to the sandpit!) to create a course for proof of concept. I exported it to SCORM and we deliver it using a hosted learning management system called HealthStream. In order to create other RLOs to deliver I was wondering what the minimum installation is that I would need in order to export SCORM content. We do not need to be running XOT behind Moodle or anything like that. Would it be easiest to use MAXOS and not bother with installing on my desktop PC or bothering Info Technology to install on an intranet server or is there some other recommended approach. Our IT folks are more focused on patient care systems, so I want to give them the easiest possible solution. Thank you - Steve Rauch ?This e-mail is intended solely for the person or entity to which it is addressed and may contain confidential and/or privileged information. Any review, dissemination, copying, printing or other use of this e-mail by persons or entities other than the addressee is prohibited. If you have received this e-mail in error, please contact the sender immediately and delete the material from any computer. This e-mail along with any attachment(s) is strictly confidential and may contain privileged information. It is intended solely for the intended recipient(s). If you are not the intended recipient, please do not disclose, store, copy, take any action or omit to take any action in reliance of its contents: to do so is strictly prohibited and may be unlawful. If you have received this e-mail in error, please notify the sender and delete the e-mail immediately. Views expressed in this e-mail 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 and take any necessary measures when e-mailing us. Although we have taken steps to ensure this e-mail and attachment(s) are free from any virus, we advise that in keeping with good computing practice, the recipient should ensure that they are actually virus free as the Higher Education Academy will not be liable for any losses as a result of any viruses being passed on by this e-mail and/or any attachment(s). The Higher Education Academy. Company limited by guarantee registered in England and Wales no. 04931031. Registered as a charity in England and Wales no. 1101607. Registered as a charity in Scotland no. SC043946. -------------- next part -------------- An HTML attachment was scrubbed... URL: From reijnders at tor.nl Wed Jan 8 09:30:12 2014 From: reijnders at tor.nl (Tom Reijnders) Date: Wed, 08 Jan 2014 10:30:12 +0100 Subject: [Xerte] Re: Minimum installation to export SCORM In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0CE7026F6D@EXCHANGE1.ad.nottingham.ac.uk> References: <2172c1f9-6608-4e59-9b08-129bcb95dda7@gjhosp.org> <12C67A1EEC419342AF5E59DA31562C3F0CE7026F6D@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <83d947c4-2de7-4d35-ba55-cd009aefc027@email.android.com> That's certainly the best way to manage LOs if you don't need SCORM tracking. Julian Tenney schreef: >Also, if you run it from a server, you don?t need to export the SCORM >packages, just link to them in situ. It?s much easier to manage them >that way. > >From: xerte-bounces at lists.nottingham.ac.uk >[mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Alistair >McNaught >Sent: 08 January 2014 08:49 >To: Xerte discussion list >Subject: [Xerte] Re: Minimum installation to export SCORM > >MAXOS is great for local-only use but you do lose the bells and >whistles of the server install such as the ability to collaborate as >authors, the ability to set up an export feed so learners/users can >subscribe to your Xerte Los and get instant updates and changes to Los. > >I?m not experienced in the SCORM side so will leave others to comment >but my preference would be to go for a server installation wherever >possible. There are also people on this list who can set up hosted >versions for a fee (it?s not me so there?s no commercial interest to >declare!) if you needed to avoid giving extra work to IT staff on >patient care systems > > >Alistair > > > >From: >xerte-bounces at lists.nottingham.ac.uk >[mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Steven Rauch >Sent: 07 January 2014 23:06 >To: xerte at lists.nottingham.ac.uk >Subject: [Xerte] Minimum installation to export SCORM > >I am a medical librarian in the states and I have used XOT (thanks to >the sandpit!) to create a course for proof of concept. I exported it to >SCORM and we deliver it using a hosted learning management system >called HealthStream. > >In order to create other RLOs to deliver I was wondering what the >minimum installation is that I would need in order to export SCORM >content. We do not need to be running XOT behind Moodle or anything >like that. Would it be easiest to use MAXOS and not bother with >installing on my desktop PC or bothering Info Technology to install on >an intranet server or is there some other recommended approach. > >Our IT folks are more focused on patient care systems, so I want to >give them the easiest possible solution. > >Thank you - > >Steve Rauch > >?This e-mail is intended solely for the person or entity to which it is >addressed and may contain confidential and/or privileged information. >Any review, dissemination, copying, printing or other use of this >e-mail by persons or entities other than the addressee is prohibited. >If you have received this e-mail in error, please contact the sender >immediately and delete the material from any computer. > >This e-mail along with any attachment(s) is strictly confidential and >may contain privileged information. It is intended solely for the >intended recipient(s). If you are not the intended recipient, please do >not disclose, store, copy, take any action or omit to take any action >in reliance of its contents: to do so is strictly prohibited and may be >unlawful. If you have received this e-mail in error, please notify the >sender and delete the e-mail immediately. Views expressed in this >e-mail 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 and take any necessary measures when e-mailing us. >Although we have taken steps to ensure this e-mail and attachment(s) >are free from any virus, we advise that in keeping with good computing >practice, the recipient should ensure that they are actually virus free >as the Higher Education Academy will not be liable for any losses as a >result of any viruses being passed on by this e-mail and/or any >attachment(s). The Higher Education Academy. Company limited by >guarantee registered in England and Wales no. 04931031. Registered as a >charity in England and Wales no. 1101607. Registered as a charity in >Scotland no. SC043946. > > >------------------------------------------------------------------------ > >_______________________________________________ >Xerte mailing list >Xerte at lists.nottingham.ac.uk >http://lists.nottingham.ac.uk/mailman/listinfo/xerte -- Verzonden van mijn Android telefoon met K-9 Mail. -------------- next part -------------- An HTML attachment was scrubbed... URL: From dave at a6training.co.uk Wed Jan 8 11:01:19 2014 From: dave at a6training.co.uk (Dave Foord) Date: Wed, 08 Jan 2014 11:01:19 +0000 Subject: [Xerte] Problem with ispring template displaying the wrong size when viewed full screen in flash Message-ID: <61384.1389178879@a6training.co.uk> I hope someone here can help! I have created a XOT object which contains an animation created in PowerPoint. In the html5 version there is no problem as the animation was saved as an mp4 video file which worked a treat no problem, however the client needs the output to be in flash as well as html5 (as they have old IE computers). the only way I could get the animation to be sufficiently clear within the flash output was to create this using ispring and use the ispring page in XOT - which works great if viewing this in the default window size, but if it is being viewed with the fullscreen window size, when you move forward to that page, it shows only the top left corner of the page which is hugely magnified. If I access the page in default mode and then change it to fullscreen, it it fine, but if I am already in fullscreen mode it isn't. Can anyone advise of a solution to this for me please. Thanks in advance Dave Foord A6 Training & Consultancy Ltd 07922115678 WWW.A6training.co.uk From Julian.Tenney at nottingham.ac.uk Wed Jan 8 11:02:21 2014 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Wed, 8 Jan 2014 11:02:21 +0000 Subject: [Xerte] Re: Problem with ispring template displaying the wrong size when viewed full screen in flash In-Reply-To: <61384.1389178879@a6training.co.uk> References: <61384.1389178879@a6training.co.uk> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0CE7027063@EXCHANGE1.ad.nottingham.ac.uk> Convert the video to flv and use that in a flash version. -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Foord Sent: 08 January 2014 11:01 To: Xerte discussion list Subject: [Xerte] Problem with ispring template displaying the wrong size when viewed full screen in flash I hope someone here can help! I have created a XOT object which contains an animation created in PowerPoint. In the html5 version there is no problem as the animation was saved as an mp4 video file which worked a treat no problem, however the client needs the output to be in flash as well as html5 (as they have old IE computers). the only way I could get the animation to be sufficiently clear within the flash output was to create this using ispring and use the ispring page in XOT - which works great if viewing this in the default window size, but if it is being viewed with the fullscreen window size, when you move forward to that page, it shows only the top left corner of the page which is hugely magnified. If I access the page in default mode and then change it to fullscreen, it it fine, but if I am already in fullscreen mode it isn't. Can anyone advise of a solution to this for me please. Thanks in advance Dave Foord A6 Training & Consultancy Ltd 07922115678 WWW.A6training.co.uk _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte From J.J.Smith at gcu.ac.uk Wed Jan 8 11:08:56 2014 From: J.J.Smith at gcu.ac.uk (Smith, John) Date: Wed, 8 Jan 2014 11:08:56 +0000 Subject: [Xerte] Re: Problem with ispring template displaying the wrong size when viewed full screen in flash In-Reply-To: <61384.1389178879@a6training.co.uk> References: <61384.1389178879@a6training.co.uk> Message-ID: Do you have a link to a LO that exhibits this behavior so that we can try to debug? Even a dummy LO that you create and export if the site is not public facing? Also, it's not clear if it?s the Flash or HTML5 interface on fullscreen that has this problem, or both? Regards, John Smith Learning Technologist School of Health & Life Sciences Glasgow Caledonian University -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Foord Sent: Wednesday, January 08, 2014 11:01 AM To: Xerte discussion list Subject: [Xerte] Problem with ispring template displaying the wrong size when viewed full screen in flash I hope someone here can help! I have created a XOT object which contains an animation created in PowerPoint. In the html5 version there is no problem as the animation was saved as an mp4 video file which worked a treat no problem, however the client needs the output to be in flash as well as html5 (as they have old IE computers). the only way I could get the animation to be sufficiently clear within the flash output was to create this using ispring and use the ispring page in XOT - which works great if viewing this in the default window size, but if it is being viewed with the fullscreen window size, when you move forward to that page, it shows only the top left corner of the page which is hugely magnified. If I access the page in default mode and then change it to fullscreen, it it fine, but if I am already in fullscreen mode it isn't. Can anyone advise of a solution to this for me please. Thanks in advance Dave Foord A6 Training & Consultancy Ltd 07922115678 WWW.A6training.co.uk _______________________________________________ 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. Glasgow Caledonian University is a registered Scottish charity, number SC021474 Winner: Times Higher Education?s Widening Participation Initiative of the Year 2009 and Herald Society?s Education Initiative of the Year 2009. http://www.gcu.ac.uk/newsevents/news/bycategory/theuniversity/1/name,6219,en.html Winner: Times Higher Education?s Outstanding Support for Early Career Researchers of the Year 2010, GCU as a lead with Universities Scotland partners. http://www.gcu.ac.uk/newsevents/news/bycategory/theuniversity/1/name,15691,en.html From ronm at mitchellmedia.co.uk Wed Jan 8 11:31:02 2014 From: ronm at mitchellmedia.co.uk (Ron Mitchell) Date: Wed, 8 Jan 2014 11:31:02 -0000 Subject: [Xerte] Re: Problem with ispring template displaying the wrong size when viewed full screen in flash In-Reply-To: <61384.1389178879@a6training.co.uk> References: <61384.1389178879@a6training.co.uk> Message-ID: <004801cf0c65$1fc86250$5f5926f0$@co.uk> If you are using an mp4 for the html player then as Julian suggested just convert and upload an flv of the same file using the flash video page type. But the simplest and most widely compatible solution is to upload your mp4 to a streaming server such as YouTube or Vimeo which is better for video anyway. I've seen the problem you mention with iSpring previously and it's complicated to get the iSpring publishing settings correct in a way that works with the Xerte Flash engine especially as newer versions of iSpring publish to AS3 etc and the free versions had far less control over output options. The alterantive is to upload your converted iSpring files to a publoically accessible place and then use the embed content page instead but really a streaming server is the best solution for all sorts of reasons. HTH Ron -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Foord Sent: 08 January 2014 11:01 To: Xerte discussion list Subject: [Xerte] Problem with ispring template displaying the wrong size when viewed full screen in flash I hope someone here can help! I have created a XOT object which contains an animation created in PowerPoint. In the html5 version there is no problem as the animation was saved as an mp4 video file which worked a treat no problem, however the client needs the output to be in flash as well as html5 (as they have old IE computers). the only way I could get the animation to be sufficiently clear within the flash output was to create this using ispring and use the ispring page in XOT - which works great if viewing this in the default window size, but if it is being viewed with the fullscreen window size, when you move forward to that page, it shows only the top left corner of the page which is hugely magnified. If I access the page in default mode and then change it to fullscreen, it it fine, but if I am already in fullscreen mode it isn't. Can anyone advise of a solution to this for me please. Thanks in advance Dave Foord A6 Training & Consultancy Ltd 07922115678 WWW.A6training.co.uk _______________________________________________ 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 Kimberley.Godwin at stamford.ac.uk Thu Jan 9 11:39:00 2014 From: Kimberley.Godwin at stamford.ac.uk (Kimberley Godwin) Date: Thu, 9 Jan 2014 11:39:00 +0000 Subject: [Xerte] Re: Problem with LO link Message-ID: Hi all Thanks for the feedback before Christmas. I've finally got around to catching up on the replies. I believe I have the Xerte software installed on my own PC only. I'm guessing then that it needs to be on a server accessible by all at my college to be able to share tutorials. Is that correct? I too will have to badger my IT department if that's the case. Many thanks Kimberley -----Original Message----- Today's Topics: 1. Problem with LO link (Kimberley Godwin) 2. Re: Problem with LO link (Dave Burnett) ---------------------------------------------------------------------- Message: 1 Date: Tue, 17 Dec 2013 11:38:03 +0000 From: Kimberley Godwin To: "xerte at lists.nottingham.ac.uk" Subject: [Xerte] Problem with LO link Message-ID: Content-Type: text/plain; charset="us-ascii" Hello, I'm teaching myself how to use the Xerte software to create online library tutorials for my FE students. I created a learning object having worked through a Xerte how-to tutorial, but when another member of my team tried to view the link it wouldn't work. The link is: http://localhost/xertetoolkits/play.php?template_id=2. I suspect the issue is something to do with the 'localhost' bit of the URL. Can anyone offer any advice on how to rectify this please? Many thanks Kimberley Godwin Kimberley Godwin Learning Resource Centre Co-ordinator New College Stamford 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. Unauthorised recipients are requested to preserve this confidentiality and to advise us of any errors in transmission. Thank you. Please note that the College reserves the right to monitor emails for the business purposes contained in the Telecommunications (Lawful Business Practice)(Interception of Communications) Regulations 2000, that is: to establish the existence of facts relevant to the business of the College, to investigate or detect unauthorised use of the systems; to maintain the effective operation of the system; to detect any computer viruses; to check the mailbox of any absent employee; or to prevent or detect a crime. To be able to exercise these rights, the College must have made all reasonable attempts to inform every person who may use the system that monitoring and interception may t ake place. This College regards this notice to you as notification of such a possibility. -------------- next part -------------- An HTML attachment was scrubbed... URL: ------------------------------ Message: 2 Date: Tue, 17 Dec 2013 06:55:34 -0500 From: Dave Burnett To: Xerte list Subject: [Xerte] Re: Problem with LO link Message-ID: Content-Type: text/plain; charset="windows-1252" localhost means you are using your own computer as the web server.Are you running Xerte from a flash drive or memory stick? From: Kimberley.Godwin at stamford.ac.uk To: xerte at lists.nottingham.ac.uk Date: Tue, 17 Dec 2013 11:38:03 +0000 Subject: [Xerte] Problem with LO link Hello, I?m teaching myself how to use the Xerte software to create online library tutorials for my FE students. I created a learning object having worked through a Xerte how-to tutorial, but when another member of my team tried to view the link it wouldn?t work. The link is: http://localhost/xertetoolkits/play.php?template_id=2. I suspect the issue is something to do with the ?localhost? bit of the URL. Can anyone offer any advice on how to rectify this please? Many thanks Kimberley Godwin Kimberley Godwin Learning Resource Centre Co-ordinator New College Stamford 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. Unauthorised recipients are requested to preserve this confidentiality and to advise us of any errors in transmission. Thank you. Please note that the College reserves the right to monitor emails for the business purposes contained in the Telecommunications (Lawful Business Practice)(Interception of Communications) Regulations 2000, that is: to establish the existence of facts relevant to the business of the College, to investigate or detect unauthorised use of the systems; to maintain the effective operation of the system; to detect any computer viruses; to check the mailbox of any absent employee; or to prevent or detect a crime. To be able to exercise these rights, the College must have made all reasonable attempts to inform every person who may use the system that monitoring and interception may take place. This College regards this notice to you as notification of such a possibility. 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: ------------------------------ _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte End of Xerte Digest, Vol 159, Issue 10 ************************************** 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 Alistair.McNaught at HEAcademy.ac.uk Thu Jan 9 12:08:23 2014 From: Alistair.McNaught at HEAcademy.ac.uk (Alistair McNaught) Date: Thu, 9 Jan 2014 12:08:23 +0000 Subject: [Xerte] Re: Problem with LO link In-Reply-To: References: Message-ID: Yes, if it's on a server on the college then it's a simple job to give the url to students. Alistair -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Kimberley Godwin Sent: 09 January 2014 11:39 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Problem with LO link Hi all Thanks for the feedback before Christmas. I've finally got around to catching up on the replies. I believe I have the Xerte software installed on my own PC only. I'm guessing then that it needs to be on a server accessible by all at my college to be able to share tutorials. Is that correct? I too will have to badger my IT department if that's the case. Many thanks Kimberley -----Original Message----- Today's Topics: 1. Problem with LO link (Kimberley Godwin) 2. Re: Problem with LO link (Dave Burnett) ---------------------------------------------------------------------- Message: 1 Date: Tue, 17 Dec 2013 11:38:03 +0000 From: Kimberley Godwin To: "xerte at lists.nottingham.ac.uk" Subject: [Xerte] Problem with LO link Message-ID: Content-Type: text/plain; charset="us-ascii" Hello, I'm teaching myself how to use the Xerte software to create online library tutorials for my FE students. I created a learning object having worked through a Xerte how-to tutorial, but when another member of my team tried to view the link it wouldn't work. The link is: http://localhost/xertetoolkits/play.php?template_id=2. I suspect the issue is something to do with the 'localhost' bit of the URL. Can anyone offer any advice on how to rectify this please? Many thanks Kimberley Godwin Kimberley Godwin Learning Resource Centre Co-ordinator New College Stamford 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. Unauthorised recipients are requested to preserve this confidentiality and to advise us of any errors in transmission. Thank you. Please note that the College reserves the right to monitor emails for the business purposes contained in the Telecommunications (Lawful Business Practice)(Interception of Communications) Regulations 2000, that is: to establish the existence of facts relevant to the business of the College, to investigate or detect unauthorised use of the systems; to maintain the effective operation of the system; to detect any computer viruses; to check the mailbox of any absent employee; or to prevent or detect a crime. To be able to exercise these rights, the College must have made all reasonable attempts to inform every person who may use the system that monitoring and intercepti on may t ake place. This College regards this notice to you as notification of such a possibility. -------------- next part -------------- An HTML attachment was scrubbed... URL: ------------------------------ Message: 2 Date: Tue, 17 Dec 2013 06:55:34 -0500 From: Dave Burnett To: Xerte list Subject: [Xerte] Re: Problem with LO link Message-ID: Content-Type: text/plain; charset="windows-1252" localhost means you are using your own computer as the web server.Are you running Xerte from a flash drive or memory stick? From: Kimberley.Godwin at stamford.ac.uk To: xerte at lists.nottingham.ac.uk Date: Tue, 17 Dec 2013 11:38:03 +0000 Subject: [Xerte] Problem with LO link Hello, I?m teaching myself how to use the Xerte software to create online library tutorials for my FE students. I created a learning object having worked through a Xerte how-to tutorial, but when another member of my team tried to view the link it wouldn?t work. The link is: http://localhost/xertetoolkits/play.php?template_id=2. I suspect the issue is something to do with the ?localhost? bit of the URL. Can anyone offer any advice on how to rectify this please? Many thanks Kimberley Godwin Kimberley Godwin Learning Resource Centre Co-ordinator New College Stamford 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. Unauthorised recipients are requested to preserve this confidentiality and to advise us of any errors in transmission. Thank you. Please note that the College reserves the right to monitor emails for the business purposes contained in the Telecommunications (Lawful Business Practice)(Interception of Communications) Regulations 2000, that is: to establish the existence of facts relevant to the business of the College, to investigate or detect unauthorised use of the systems; to maintain the effective operation of the system; to detect any computer viruses; to check the mailbox of any absent employee; or to prevent or detect a crime. To be able to exercise these rights, the College must have made all reasonable attempts to inform every person who may use the system that monitoring and interce ption may take place. This College regards this notice to you as notification of such a possibility. 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: ------------------------------ _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte End of Xerte Digest, Vol 159, Issue 10 ************************************** 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 e-mail along with any attachment(s) is strictly confidential and may contain privileged information. It is intended solely for the intended recipient(s). If you are not the intended recipient, please do not disclose, store, copy, take any action or omit to take any action in reliance of its contents: to do so is strictly prohibited and may be unlawful. If you have received this e-mail in error, please notify the sender and delete the e-mail immediately. Views expressed in this e-mail 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 and take any necessary measures when e-mailing us. Although we have taken steps to ensure this e-mail and attachment(s) are free from any virus, we advise that in keeping with good computing practice, the recipient should ensure that they are actually virus free as the Higher Education Academy will not be liable for any losses as a result of any viruses being passed on by this e-mail and/or any attachment(s). The Higher Education Academy. Company limited by guarantee registered in England and Wales no. 04931031. Registered as a charity in England and Wales no. 1101607. Registered as a charity in Scotland no. SC043946. From sandyhuntjens at gmail.com Thu Jan 9 21:42:43 2014 From: sandyhuntjens at gmail.com (Harm en sandy) Date: Thu, 9 Jan 2014 22:42:43 +0100 Subject: [Xerte] Re: Problem with LO link In-Reply-To: References: Message-ID: <001501cf0d83$bb177fb0$31467f10$@gmail.com> Hi Alistair It's a security problem with IE11 I believe you can only view offline exported xerte courses with windows xp and window 8,9 or 10 Friendly greetings Harm Huntjens -----Oorspronkelijk bericht----- Van: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] Namens Alistair McNaught Verzonden: donderdag 9 januari 2014 13:08 Aan: Xerte discussion list Onderwerp: [Xerte] Re: Problem with LO link Yes, if it's on a server on the college then it's a simple job to give the url to students. Alistair -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Kimberley Godwin Sent: 09 January 2014 11:39 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Problem with LO link Hi all Thanks for the feedback before Christmas. I've finally got around to catching up on the replies. I believe I have the Xerte software installed on my own PC only. I'm guessing then that it needs to be on a server accessible by all at my college to be able to share tutorials. Is that correct? I too will have to badger my IT department if that's the case. Many thanks Kimberley -----Original Message----- Today's Topics: 1. Problem with LO link (Kimberley Godwin) 2. Re: Problem with LO link (Dave Burnett) ---------------------------------------------------------------------- Message: 1 Date: Tue, 17 Dec 2013 11:38:03 +0000 From: Kimberley Godwin To: "xerte at lists.nottingham.ac.uk" Subject: [Xerte] Problem with LO link Message-ID: Content-Type: text/plain; charset="us-ascii" Hello, I'm teaching myself how to use the Xerte software to create online library tutorials for my FE students. I created a learning object having worked through a Xerte how-to tutorial, but when another member of my team tried to view the link it wouldn't work. The link is: http://localhost/xertetoolkits/play.php?template_id=2. I suspect the issue is something to do with the 'localhost' bit of the URL. Can anyone offer any advice on how to rectify this please? Many thanks Kimberley Godwin Kimberley Godwin Learning Resource Centre Co-ordinator New College Stamford 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. Unauthorised recipients are requested to preserve this confidentiality and to advise us of any errors in transmission. Thank you. Please note that the College reserves the right to monitor emails for the business purposes contained in the Telecommunications (Lawful Business Practice)(Interception of Communications) Regulations 2000, that is: to establish the existence of facts relevant to the business of the College, to investigate or detect unauthorised use of the systems; to maintain the effective operation of the system; to detect any computer viruses; to check the mailbox of any absent employee; or to prevent or detect a crime. To be able to exercise these rights, the College must have made all reasonable attempts to inform every person who may use the system that monitoring and intercepti on may t ake place. This College regards this notice to you as notification of such a possibility. -------------- next part -------------- An HTML attachment was scrubbed... URL: ------------------------------ Message: 2 Date: Tue, 17 Dec 2013 06:55:34 -0500 From: Dave Burnett To: Xerte list Subject: [Xerte] Re: Problem with LO link Message-ID: Content-Type: text/plain; charset="windows-1252" localhost means you are using your own computer as the web server.Are you running Xerte from a flash drive or memory stick? From: Kimberley.Godwin at stamford.ac.uk To: xerte at lists.nottingham.ac.uk Date: Tue, 17 Dec 2013 11:38:03 +0000 Subject: [Xerte] Problem with LO link Hello, I?m teaching myself how to use the Xerte software to create online library tutorials for my FE students. I created a learning object having worked through a Xerte how-to tutorial, but when another member of my team tried to view the link it wouldn?t work. The link is: http://localhost/xertetoolkits/play.php?template_id=2. I suspect the issue is something to do with the ?localhost? bit of the URL. Can anyone offer any advice on how to rectify this please? Many thanks Kimberley Godwin Kimberley Godwin Learning Resource Centre Co-ordinator New College Stamford 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. Unauthorised recipients are requested to preserve this confidentiality and to advise us of any errors in transmission. Thank you. Please note that the College reserves the right to monitor emails for the business purposes contained in the Telecommunications (Lawful Business Practice)(Interception of Communications) Regulations 2000, that is: to establish the existence of facts relevant to the business of the College, to investigate or detect unauthorised use of the systems; to maintain the effective operation of the system; to detect any computer viruses; to check the mailbox of any absent employee; or to prevent or detect a crime. To be able to exercise these rights, the College must have made all reasonable attempts to inform every person who may use the system that monitoring and interce ption may take place. This College regards this notice to you as notification of such a possibility. 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: ------------------------------ _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte End of Xerte Digest, Vol 159, Issue 10 ************************************** 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 e-mail along with any attachment(s) is strictly confidential and may contain privileged information. It is intended solely for the intended recipient(s). If you are not the intended recipient, please do not disclose, store, copy, take any action or omit to take any action in reliance of its contents: to do so is strictly prohibited and may be unlawful. If you have received this e-mail in error, please notify the sender and delete the e-mail immediately. Views expressed in this e-mail 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 and take any necessary measures when e-mailing us. Although we have taken steps to ensure this e-mail and attachment(s) are free from any virus, we advise that in keeping with good computing practice, the recipient should ensure that they are actually virus free as the Higher Education Academy will not be liable for any losses as a result of any viruses being passed on by this e-mail and/or any attachment(s). The Higher Education Academy. Company limited by guarantee registered in England and Wales no. 04931031. Registered as a charity in England and Wales no. 1101607. Registered as a charity in Scotland no. SC043946. _______________________________________________ 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 Alistair.McNaught at HEAcademy.ac.uk Thu Jan 9 22:01:39 2014 From: Alistair.McNaught at HEAcademy.ac.uk (Alistair McNaught) Date: Thu, 9 Jan 2014 22:01:39 +0000 Subject: [Xerte] Re: Problem with LO link In-Reply-To: <001501cf0d83$bb177fb0$31467f10$@gmail.com> References: <001501cf0d83$bb177fb0$31467f10$@gmail.com> Message-ID: Hi Harm Thanks for the information. I don't think I've ever had a problem viewing an exported learning object once the zip file has been extracted but I've only used such a file from a memory stick or CD so I haven't tried running it from a server through a browser.. I didn't suggest to Kimberley about unzipping her learning object and uploading it to a server because I wasn't sure if she would have any way of uploading a folder full of files to a server. Alistair -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Harm en sandy Sent: 09 January 2014 21:43 To: 'Xerte discussion list' Subject: [Xerte] Re: Problem with LO link Hi Alistair It's a security problem with IE11 I believe you can only view offline exported xerte courses with windows xp and window 8,9 or 10 Friendly greetings Harm Huntjens -----Oorspronkelijk bericht----- Van: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] Namens Alistair McNaught Verzonden: donderdag 9 januari 2014 13:08 Aan: Xerte discussion list Onderwerp: [Xerte] Re: Problem with LO link Yes, if it's on a server on the college then it's a simple job to give the url to students. Alistair -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Kimberley Godwin Sent: 09 January 2014 11:39 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Problem with LO link Hi all Thanks for the feedback before Christmas. I've finally got around to catching up on the replies. I believe I have the Xerte software installed on my own PC only. I'm guessing then that it needs to be on a server accessible by all at my college to be able to share tutorials. Is that correct? I too will have to badger my IT department if that's the case. Many thanks Kimberley -----Original Message----- Today's Topics: 1. Problem with LO link (Kimberley Godwin) 2. Re: Problem with LO link (Dave Burnett) ---------------------------------------------------------------------- Message: 1 Date: Tue, 17 Dec 2013 11:38:03 +0000 From: Kimberley Godwin To: "xerte at lists.nottingham.ac.uk" Subject: [Xerte] Problem with LO link Message-ID: Content-Type: text/plain; charset="us-ascii" Hello, I'm teaching myself how to use the Xerte software to create online library tutorials for my FE students. I created a learning object having worked through a Xerte how-to tutorial, but when another member of my team tried to view the link it wouldn't work. The link is: http://localhost/xertetoolkits/play.php?template_id=2. I suspect the issue is something to do with the 'localhost' bit of the URL. Can anyone offer any advice on how to rectify this please? Many thanks Kimberley Godwin Kimberley Godwin Learning Resource Centre Co-ordinator New College Stamford 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. Unauthorised recipients are requested to preserve this confidentiality and to advise us of any errors in transmission. Thank you. Please note that the College reserves the right to monitor emails for the business purposes contained in the Telecommunications (Lawful Business Practice)(Interception of Communications) Regulations 2000, that is: to establish the existence of facts relevant to the business of the College, to investigate or detect unauthorised use of the systems; to maintain the effective operation of the system; to detect any computer viruses; to check the mailbox of any absent employee; or to prevent or detect a crime. To be able to exercise these rights, the College must have made all reasonable attempts to inform every person who may use the system that monitoring and intercepti on may t ake place. This College regards this notice to you as notification of such a possibility. -------------- next part -------------- An HTML attachment was scrubbed... URL: ------------------------------ Message: 2 Date: Tue, 17 Dec 2013 06:55:34 -0500 From: Dave Burnett To: Xerte list Subject: [Xerte] Re: Problem with LO link Message-ID: Content-Type: text/plain; charset="windows-1252" localhost means you are using your own computer as the web server.Are you running Xerte from a flash drive or memory stick? From: Kimberley.Godwin at stamford.ac.uk To: xerte at lists.nottingham.ac.uk Date: Tue, 17 Dec 2013 11:38:03 +0000 Subject: [Xerte] Problem with LO link Hello, I?m teaching myself how to use the Xerte software to create online library tutorials for my FE students. I created a learning object having worked through a Xerte how-to tutorial, but when another member of my team tried to view the link it wouldn?t work. The link is: http://localhost/xertetoolkits/play.php?template_id=2. I suspect the issue is something to do with the ?localhost? bit of the URL. Can anyone offer any advice on how to rectify this please? Many thanks Kimberley Godwin Kimberley Godwin Learning Resource Centre Co-ordinator New College Stamford 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. Unauthorised recipients are requested to preserve this confidentiality and to advise us of any errors in transmission. Thank you. Please note that the College reserves the right to monitor emails for the business purposes contained in the Telecommunications (Lawful Business Practice)(Interception of Communications) Regulations 2000, that is: to establish the existence of facts relevant to the business of the College, to investigate or detect unauthorised use of the systems; to maintain the effective operation of the system; to detect any computer viruses; to check the mailbox of any absent employee; or to prevent or detect a crime. To be able to exercise these rights, the College must have made all reasonable attempts to inform every person who may use the system that monitoring and interce ption may take place. This College regards this notice to you as notification of such a possibility. 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: ------------------------------ _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte End of Xerte Digest, Vol 159, Issue 10 ************************************** 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 e-mail along with any attachment(s) is strictly confidential and may contain privileged information. It is intended solely for the intended recipient(s). If you are not the intended recipient, please do not disclose, store, copy, take any action or omit to take any action in reliance of its contents: to do so is strictly prohibited and may be unlawful. If you have received this e-mail in error, please notify the sender and delete the e-mail immediately. Views expressed in this e-mail 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 and take any necessary measures when e-mailing us. Although we have taken steps to ensure this e-mail and attachment(s) are free from any virus, we advise that in keeping with good computing practice, the recipient should ensure that they are actually virus free as the Higher Education Academy will not be liable for any losses as a result of any viruses being passed on by this e-mail and/or any attachment(s). The Higher Education Academy. Company limited by guarantee registered in England and Wales no. 04931031. Registered as a charity in England and Wales no. 1101607. Registered as a charity in Scotland no. SC043946. _______________________________________________ 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 e-mail along with any attachment(s) is strictly confidential and may contain privileged information. It is intended solely for the intended recipient(s). If you are not the intended recipient, please do not disclose, store, copy, take any action or omit to take any action in reliance of its contents: to do so is strictly prohibited and may be unlawful. If you have received this e-mail in error, please notify the sender and delete the e-mail immediately. Views expressed in this e-mail 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 and take any necessary measures when e-mailing us. Although we have taken steps to ensure this e-mail and attachment(s) are free from any virus, we advise that in keeping with good computing practice, the recipient should ensure that they are actually virus free as the Higher Education Academy will not be liable for any losses as a result of any viruses being passed on by this e-mail and/or any attachment(s). The Higher Education Academy. Company limited by guarantee registered in England and Wales no. 04931031. Registered as a charity in England and Wales no. 1101607. Registered as a charity in Scotland no. SC043946. From knowledgeware at kccsoft.com Fri Jan 10 04:30:59 2014 From: knowledgeware at kccsoft.com (KnowledgeWare) Date: Thu, 9 Jan 2014 20:30:59 -0800 Subject: [Xerte] Re: Desktop AS2 version - shutdown cleanup In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0CE7026A6D@EXCHANGE1.ad.nottingham.ac.uk> References: <000001cf0b6e$4d613cc0$e823b640$@kccsoft.com> <12C67A1EEC419342AF5E59DA31562C3F0CE7026A6D@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <000301cf0dbc$c37bb1b0$4a731510$@kccsoft.com> Index.html loads my RLO, and my RLO loads a SWF menu file. If the user clicks the "X" to close down index.html I'd like to call a function in the SWF file (loaded by the RLO) to write a cookie. The code below (in IE at least) shows a popup alert message when the user clicks on the 'X' in the upper right corner to shut down the window. Anyone know if I can / what syntax I'd use to call a function in the SWF file? RonM2 function DetectBrowserExit() { alert('Execute task which do you want before exit'); // HOW CAN I CALL A FLASH FUNCTION FROM HERE?? } window.onbeforeunload = function(){ DetectBrowserExit(); } From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: Tuesday, January 07, 2014 1:11 AM To: Xerte discussion list Subject: [Xerte] Re: Desktop AS2 version - shutdown cleanup I don't think you can trap that event in Flash without some jiggery pokery: you'd have to intercept in in javascript in the browser and then try and do what you need to (I think) From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of KnowledgeWare Sent: 07 January 2014 06:04 To: 'Xerte discussion list' Subject: [Xerte] Re: Desktop AS2 version - shutdown cleanup I have one app I'd like to finish in the xerte desktop version. It uses a Flash swf menu which works with cookies. Does anyone know what happens if the user clicks the X in the upper right corner and closes the window - is there a way to intercept that event and do some 'cleanup' - like writing the cookie to the hard drive for reading in on next opening? RonM2 -------------- next part -------------- An HTML attachment was scrubbed... URL: From seliga at ai.com.pl Fri Jan 10 08:47:12 2014 From: seliga at ai.com.pl (Tomasz Seliga) Date: Fri, 10 Jan 2014 09:47:12 +0100 Subject: [Xerte] Change resolution Message-ID: <52CFB390.8060309@ai.com.pl> Hi there. I'm a user of Xerte and it's very useful software to create courses. I'm preparing the course with flash content in 1280 x 800 px. But Xerte Online Toolkits in fact is better to manage and it has few more advantages. Therefore I would like to ask you is it possible to increase resolution from default 800x600 px to 1280x800 px? Now, when I'm trying to add my flash files to my cours by XOT, they are cut off. I had tried to change some variables in php files on my server in XOT installation, but without effects so I'm curious is it possible at all? Has you tried to change resolution of your course prepared by XOT? Best regards, Thomas Seliga From Julian.Tenney at nottingham.ac.uk Fri Jan 10 09:10:43 2014 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Fri, 10 Jan 2014 09:10:43 +0000 Subject: [Xerte] Re: Change resolution In-Reply-To: <52CFB390.8060309@ai.com.pl> References: <52CFB390.8060309@ai.com.pl> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0CE71771CD@EXCHANGE1.ad.nottingham.ac.uk> You can do it by controlling the content window through window.open in javascript. So create links to your LOs, then use window.open to open the new window at the correct size in the web page hosting the links, -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Tomasz Seliga Sent: 10 January 2014 08:47 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Change resolution Hi there. I'm a user of Xerte and it's very useful software to create courses. I'm preparing the course with flash content in 1280 x 800 px. But Xerte Online Toolkits in fact is better to manage and it has few more advantages. Therefore I would like to ask you is it possible to increase resolution from default 800x600 px to 1280x800 px? Now, when I'm trying to add my flash files to my cours by XOT, they are cut off. I had tried to change some variables in php files on my server in XOT installation, but without effects so I'm curious is it possible at all? Has you tried to change resolution of your course prepared by XOT? Best regards, Thomas Seliga _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte From d_b_burnett at hotmail.com Fri Jan 10 17:41:18 2014 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Fri, 10 Jan 2014 12:41:18 -0500 Subject: [Xerte] Re: Desktop AS2 version - shutdown cleanup In-Reply-To: <000301cf0dbc$c37bb1b0$4a731510$@kccsoft.com> References: <000001cf0b6e$4d613cc0$e823b640$@kccsoft.com>, <12C67A1EEC419342AF5E59DA31562C3F0CE7026A6D@EXCHANGE1.ad.nottingham.ac.uk>, <000301cf0dbc$c37bb1b0$4a731510$@kccsoft.com> Message-ID: //in your js, get the embed element of the Xerte swffid = document.getElementById('the swf name') // call the function in the swffid.yourFunctionName(parametersIfAny); From: knowledgeware at kccsoft.com To: xerte at lists.nottingham.ac.uk Date: Thu, 9 Jan 2014 20:30:59 -0800 Subject: [Xerte] Re: Desktop AS2 version - shutdown cleanup Index.html loads my RLO, and my RLO loads a SWF menu file. If the user clicks the ?X? to close down index.html I?d like to call a function in the SWF file (loaded by the RLO) to write a cookie. The code below (in IE at least) shows a popup alert message when the user clicks on the ?X? in the upper right corner to shut down the window. Anyone know if I can / what syntax I?d use to call a function in the SWF file? RonM2 function DetectBrowserExit(){alert('Execute task which do you want before exit'); // HOW CAN I CALL A FLASH FUNCTION FROM HERE??} window.onbeforeunload = function(){ DetectBrowserExit(); } From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: Tuesday, January 07, 2014 1:11 AM To: Xerte discussion list Subject: [Xerte] Re: Desktop AS2 version - shutdown cleanup I don?t think you can trap that event in Flash without some jiggery pokery: you?d have to intercept in in javascript in the browser and then try and do what you need to (I think) From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of KnowledgeWare Sent: 07 January 2014 06:04 To: 'Xerte discussion list' Subject: [Xerte] Re: Desktop AS2 version - shutdown cleanup I have one app I?d like to finish in the xerte desktop version. It uses a Flash swf menu which works with cookies. Does anyone know what happens if the user clicks the X in the upper right corner and closes the window ? is there a way to intercept that event and do some ?cleanup? ? like writing the cookie to the hard drive for reading in on next opening? 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 -------------- next part -------------- An HTML attachment was scrubbed... URL: From knowledgeware at kccsoft.com Mon Jan 13 19:55:28 2014 From: knowledgeware at kccsoft.com (KnowledgeWare) Date: Mon, 13 Jan 2014 11:55:28 -0800 Subject: [Xerte] XOT question re templates / CSS used on the xerte resources page Message-ID: <005401cf1099$69199a40$3b4ccec0$@kccsoft.com> http://www.nottingham.ac.uk/toolkits/play_6391 On the page above the 'Down Cow' LO has a different look than the other LO's (black background with nav buttons in the lower right corner, as opposed to the older default blue background with upper right nav buttons). What's the difference here? How can I enable the newer looking template in XOT 2.1? Thanks RonM2 -------------- next part -------------- An HTML attachment was scrubbed... URL: From ronm at mitchellmedia.co.uk Mon Jan 13 19:58:18 2014 From: ronm at mitchellmedia.co.uk (Ron Mitchell) Date: Mon, 13 Jan 2014 19:58:18 +0000 Subject: [Xerte] Re: XOT question re templates / CSS used on the xerte resources page In-Reply-To: <005401cf1099$69199a40$3b4ccec0$@kccsoft.com> References: <005401cf1099$69199a40$3b4ccec0$@kccsoft.com> Message-ID: <216A95A8-F253-420E-B223-AFEFEDED6CCA@mitchellmedia.co.uk> That's the default HTML 5 engine interface and should be the default for any new projects. If you have existing projects which are still playing via flash even if the HTML 5 JavaScript player is ticked in properties just toggle between the player options and the HTML 5 option should then work. This only works via XOT not desktop xerte. Sent from my iPhone > On 13 Jan 2014, at 19:55, "KnowledgeWare" wrote: > > http://www.nottingham.ac.uk/toolkits/play_6391 > > On the page above the ?Down Cow? LO has a different look than the other LO?s (black background with nav buttons in the lower right corner, as opposed to the older default blue background with upper right nav buttons). > > What?s the difference here? How can I enable the newer looking template in XOT 2.1? > > Thanks > 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 -------------- next part -------------- An HTML attachment was scrubbed... URL: From knowledgeware at kccsoft.com Tue Jan 14 03:51:38 2014 From: knowledgeware at kccsoft.com (KnowledgeWare) Date: Mon, 13 Jan 2014 19:51:38 -0800 Subject: [Xerte] xerte desktop AS2 externalInterface Message-ID: <000a01cf10db$edf93c10$c9ebb430$@kccsoft.com> Has anyone successfully used Actionscript 2 externalInterface with desktop xerte? I'm wondering specifically how I would address and call a function in a swf running inside an RLO. The ID of the swf is 'newmenu' but I don't understand what path the function should be called at. I'm trying to call a swf function from javascript in the window that has loaded the RLO.. I think all I need to understand is what path is needed to call the function inside the swf which is running inside the RLO. RonM2 -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Tue Jan 14 09:13:48 2014 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Tue, 14 Jan 2014 09:13:48 +0000 Subject: [Xerte] Re: xerte desktop AS2 externalInterface In-Reply-To: <000a01cf10db$edf93c10$c9ebb430$@kccsoft.com> References: <000a01cf10db$edf93c10$c9ebb430$@kccsoft.com> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0CE816DA06@EXCHANGE1.ad.nottingham.ac.uk> I think the function needs to be defined at _level0.functionName From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of KnowledgeWare Sent: 14 January 2014 03:52 To: Xerte discussion list Subject: [Xerte] xerte desktop AS2 externalInterface Has anyone successfully used Actionscript 2 externalInterface with desktop xerte? I'm wondering specifically how I would address and call a function in a swf running inside an RLO. The ID of the swf is 'newmenu' but I don't understand what path the function should be called at. I'm trying to call a swf function from javascript in the window that has loaded the RLO.... I think all I need to understand is what path is needed to call the function inside the swf which is running inside the RLO. RonM2 -------------- next part -------------- An HTML attachment was scrubbed... URL: From seliga at ai.com.pl Tue Jan 14 09:46:08 2014 From: seliga at ai.com.pl (Tomasz Seliga) Date: Tue, 14 Jan 2014 10:46:08 +0100 Subject: [Xerte] Re: Change resolution Message-ID: <52D50760.70908@ai.com.pl> Thank you for your answer. However it doesn't work as it should. The screen of the browser is bigger indeed, but flash content is still cut off. [Xerte] Re: Change resolution Julian Tenney Julian.Tenney at nottingham.ac.uk Fri Jan 10 09:10:43 GMT 2014 Previous message: [Xerte] Change resolution Next message: [Xerte] XOT question re templates / CSS used on the xerte resources page Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] You can do it by controlling the content window through window.open in javascript. So create links to your LOs, then use window.open to open the new window at the correct size in the web page hosting the links, -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Tomasz Seliga Sent: 10 January 2014 08:47 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Change resolution Hi there. I'm a user of Xerte and it's very useful software to create courses. I'm preparing the course with flash content in 1280 x 800 px. But Xerte Online Toolkits in fact is better to manage and it has few more advantages. Therefore I would like to ask you is it possible to increase resolution from default 800x600 px to 1280x800 px? Now, when I'm trying to add my flash files to my cours by XOT, they are cut off. I had tried to change some variables in php files on my server in XOT installation, but without effects so I'm curious is it possible at all? Has you tried to change resolution of your course prepared by XOT? Best regards, Thomas Seliga _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte From Julian.Tenney at nottingham.ac.uk Tue Jan 14 10:09:01 2014 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Tue, 14 Jan 2014 10:09:01 +0000 Subject: [Xerte] Re: Change resolution In-Reply-To: <52D50760.70908@ai.com.pl> References: <52D50760.70908@ai.com.pl> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0CE816DAAE@EXCHANGE1.ad.nottingham.ac.uk> You set the LO to fill window? -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Tomasz Seliga Sent: 14 January 2014 09:46 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Change resolution Thank you for your answer. However it doesn't work as it should. The screen of the browser is bigger indeed, but flash content is still cut off. [Xerte] Re: Change resolution Julian Tenney Julian.Tenney at nottingham.ac.uk Fri Jan 10 09:10:43 GMT 2014 Previous message: [Xerte] Change resolution Next message: [Xerte] XOT question re templates / CSS used on the xerte resources page Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] You can do it by controlling the content window through window.open in javascript. So create links to your LOs, then use window.open to open the new window at the correct size in the web page hosting the links, -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Tomasz Seliga Sent: 10 January 2014 08:47 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Change resolution Hi there. I'm a user of Xerte and it's very useful software to create courses. I'm preparing the course with flash content in 1280 x 800 px. But Xerte Online Toolkits in fact is better to manage and it has few more advantages. Therefore I would like to ask you is it possible to increase resolution from default 800x600 px to 1280x800 px? Now, when I'm trying to add my flash files to my cours by XOT, they are cut off. I had tried to change some variables in php files on my server in XOT installation, but without effects so I'm curious is it possible at all? Has you tried to change resolution of your course prepared by XOT? Best regards, Thomas Seliga _______________________________________________ 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 seliga at ai.com.pl Tue Jan 14 12:21:29 2014 From: seliga at ai.com.pl (Tomasz Seliga) Date: Tue, 14 Jan 2014 13:21:29 +0100 Subject: [Xerte] Re: Change resolution Message-ID: <52D52BC9.8020906@ai.com.pl> Yes I did, but the content is only scaled - still cut off I've made change of html file in my scorm package to increase resolution. It works. But navigation bar is still narrow (800px). I've found sources of XOT at the GitHub - there are included fla files - I think, that editing those files and compiling swf files once again resolves my problem well. Did you try this ever? Julian Tenney Julian.Tenney at nottingham.ac.uk Tue Jan 14 10:09:01 GMT 2014 Previous message: [Xerte] Re: Change resolution Next message: [Xerte] XOT question re templates / CSS used on the xerte resources page Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] You set the LO to fill window? -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Tomasz Seliga Sent: 14 January 2014 09:46 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Change resolution Thank you for your answer. However it doesn't work as it should. The screen of the browser is bigger indeed, but flash content is still cut off. [Xerte] Re: Change resolution Julian Tenney Julian.Tenney at nottingham.ac.uk Fri Jan 10 09:10:43 GMT 2014 Previous message: [Xerte] Change resolution Next message: [Xerte] XOT question re templates / CSS used on the xerte resources page Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] You can do it by controlling the content window through window.open in javascript. So create links to your LOs, then use window.open to open the new window at the correct size in the web page hosting the links, -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Tomasz Seliga Sent: 10 January 2014 08:47 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Change resolution Hi there. I'm a user of Xerte and it's very useful software to create courses. I'm preparing the course with flash content in 1280 x 800 px. But Xerte Online Toolkits in fact is better to manage and it has few more advantages. Therefore I would like to ask you is it possible to increase resolution from default 800x600 px to 1280x800 px? Now, when I'm trying to add my flash files to my cours by XOT, they are cut off. I had tried to change some variables in php files on my server in XOT installation, but without effects so I'm curious is it possible at all? Has you tried to change resolution of your course prepared by XOT? Best regards, Thomas Seliga _______________________________________________ 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 Julian.Tenney at nottingham.ac.uk Tue Jan 14 13:03:25 2014 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Tue, 14 Jan 2014 13:03:25 +0000 Subject: [Xerte] Re: Change resolution In-Reply-To: <52D52BC9.8020906@ai.com.pl> References: <52D52BC9.8020906@ai.com.pl> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0CE816DC76@EXCHANGE1.ad.nottingham.ac.uk> I'm not sure I fully understand the problem. If you're using the flash output from toolkits, you need to scale the content as the dimensions are all hard coded. If you're using the html5 output, you can resize the screen much more easily. What exactly is being 'cut off': you mean it looks like this? Can you use HTML output instead? [cid:image001.png at 01CF1129.02CB4140] -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Tomasz Seliga Sent: 14 January 2014 12:21 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Change resolution Yes I did, but the content is only scaled - still cut off I've made change of html file in my scorm package to increase resolution. It works. But navigation bar is still narrow (800px). I've found sources of XOT at the GitHub - there are included fla files - I think, that editing those files and compiling swf files once again resolves my problem well. Did you try this ever? Julian Tenney Julian.Tenney at nottingham.ac.uk Tue Jan 14 10:09:01 GMT 2014 Previous message: [Xerte] Re: Change resolution Next message: [Xerte] XOT question re templates / CSS used on the xerte resources page Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] You set the LO to fill window? -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Tomasz Seliga Sent: 14 January 2014 09:46 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Change resolution Thank you for your answer. However it doesn't work as it should. The screen of the browser is bigger indeed, but flash content is still cut off. [Xerte] Re: Change resolution Julian Tenney Julian.Tenney at nottingham.ac.uk Fri Jan 10 09:10:43 GMT 2014 Previous message: [Xerte] Change resolution Next message: [Xerte] XOT question re templates / CSS used on the xerte resources page Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] You can do it by controlling the content window through window.open in javascript. So create links to your LOs, then use window.open to open the new window at the correct size in the web page hosting the links, -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Tomasz Seliga Sent: 10 January 2014 08:47 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Change resolution Hi there. I'm a user of Xerte and it's very useful software to create courses. I'm preparing the course with flash content in 1280 x 800 px. But Xerte Online Toolkits in fact is better to manage and it has few more advantages. Therefore I would like to ask you is it possible to increase resolution from default 800x600 px to 1280x800 px? Now, when I'm trying to add my flash files to my cours by XOT, they are cut off. I had tried to change some variables in php files on my server in XOT installation, but without effects so I'm curious is it possible at all? Has you tried to change resolution of your course prepared by XOT? Best regards, Thomas Seliga _______________________________________________ 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 -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.png Type: image/png Size: 330177 bytes Desc: image001.png URL: From d_b_burnett at hotmail.com Tue Jan 14 14:51:49 2014 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Tue, 14 Jan 2014 09:51:49 -0500 Subject: [Xerte] Re: xerte desktop AS2 externalInterface In-Reply-To: <000a01cf10db$edf93c10$c9ebb430$@kccsoft.com> References: <000a01cf10db$edf93c10$c9ebb430$@kccsoft.com> Message-ID: Is onPageUnload syncronous? What I'm getting at is you may be able to trap that event, but the page may continue to unload, so your Xerte piece may never get to do anything with the event anyway. From: knowledgeware at kccsoft.com To: xerte at lists.nottingham.ac.uk Date: Mon, 13 Jan 2014 19:51:38 -0800 Subject: [Xerte] xerte desktop AS2 externalInterface Has anyone successfully used Actionscript 2 externalInterface with desktop xerte? I?m wondering specifically how I would address and call a function in a swf running inside an RLO. The ID of the swf is ?newmenu? but I don?t understand what path the function should be called at. I?m trying to call a swf function from javascript in the window that has loaded the RLO?. I think all I need to understand is what path is needed to call the function inside the swf which is running inside the RLO. 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 -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Tue Jan 14 14:53:45 2014 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Tue, 14 Jan 2014 14:53:45 +0000 Subject: [Xerte] Re: xerte desktop AS2 externalInterface In-Reply-To: References: <000a01cf10db$edf93c10$c9ebb430$@kccsoft.com> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0CE816DD6D@EXCHANGE1.ad.nottingham.ac.uk> No, that code should all execute before the page unloads. The question is whether the calls through external interface are synchronous, I think they are. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 14 January 2014 14:52 To: Xerte list Subject: [Xerte] Re: xerte desktop AS2 externalInterface Is onPageUnload syncronous? What I'm getting at is you may be able to trap that event, but the page may continue to unload, so your Xerte piece may never get to do anything with the event anyway. ________________________________ From: knowledgeware at kccsoft.com To: xerte at lists.nottingham.ac.uk Date: Mon, 13 Jan 2014 19:51:38 -0800 Subject: [Xerte] xerte desktop AS2 externalInterface Has anyone successfully used Actionscript 2 externalInterface with desktop xerte? I'm wondering specifically how I would address and call a function in a swf running inside an RLO. The ID of the swf is 'newmenu' but I don't understand what path the function should be called at. I'm trying to call a swf function from javascript in the window that has loaded the RLO.... I think all I need to understand is what path is needed to call the function inside the swf which is running inside the RLO. 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 -------------- next part -------------- An HTML attachment was scrubbed... URL: From R.P.Gissing at shu.ac.uk Wed Jan 15 10:54:56 2014 From: R.P.Gissing at shu.ac.uk (Gissing, Robin P P) Date: Wed, 15 Jan 2014 10:54:56 +0000 Subject: [Xerte] Youtube Probs Message-ID: <5CB1C5CE0517E448A66B84EC1DF0F488AC73D469@kidney.hallam.shu.ac.uk> Hi all, This may have been solved in an update, but I couldn't see anything on the lists - I'm on a relatively updated xerte (html5 mode) but not the latest update. We're struggling to add youtube clips with both the new iframe and the old embed code that youtube generates; And The xerte object just says "error loading" in the top corner. Any ideas? Cheers, Robin. Robin Gissing FHEA PgCert HWB Technology Enhanced Learning Advisor Health & Wellbeing Sheffield Hallam University [SHU logo for email template.gif] -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.gif Type: image/gif Size: 3708 bytes Desc: image001.gif URL: From Julian.Tenney at nottingham.ac.uk Wed Jan 15 10:57:41 2014 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Wed, 15 Jan 2014 10:57:41 +0000 Subject: [Xerte] Re: Youtube Probs In-Reply-To: <5CB1C5CE0517E448A66B84EC1DF0F488AC73D469@kidney.hallam.shu.ac.uk> References: <5CB1C5CE0517E448A66B84EC1DF0F488AC73D469@kidney.hallam.shu.ac.uk> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0CE816DFFE@EXCHANGE1.ad.nottingham.ac.uk> Use the iframe code, and I think you need http before the // in the url From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Gissing, Robin P P Sent: 15 January 2014 10:55 To: 'xerte at lists.nottingham.ac.uk' Subject: [Xerte] Youtube Probs Hi all, This may have been solved in an update, but I couldn't see anything on the lists - I'm on a relatively updated xerte (html5 mode) but not the latest update. We're struggling to add youtube clips with both the new iframe and the old embed code that youtube generates; And The xerte object just says "error loading" in the top corner. Any ideas? Cheers, Robin. Robin Gissing FHEA PgCert HWB Technology Enhanced Learning Advisor Health & Wellbeing Sheffield Hallam University [cid:image001.gif at 01CF11E0.9CD958F0] -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.gif Type: image/gif Size: 3708 bytes Desc: image001.gif URL: From seliga at ai.com.pl Wed Jan 15 11:34:51 2014 From: seliga at ai.com.pl (Tomasz Seliga) Date: Wed, 15 Jan 2014 12:34:51 +0100 Subject: [Xerte] Re: Change resolution Message-ID: <52D6725B.7070305@ai.com.pl> Julian, I think that, you do understand perfectly what is my problem with resolution in XOT, because your solution works perfectly :) By exporting my packages as html5 I can change movie size. The problem was, that I published my courses as flash, and as you said - resolution is set in hard code, so I wanted to look for solution in fla files. Of course your solution is much easier. Thank you very very much for help. Best regards, Thomas Julian Tenney Julian.Tenney at nottingham.ac.uk Tue Jan 14 13:03:25 GMT 2014 Previous message: [Xerte] Re: Change resolution Next message: [Xerte] XOT question re templates / CSS used on the xerte resources page Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] I'm not sure I fully understand the problem. If you're using the flash output from toolkits, you need to scale the content as the dimensions are all hard coded. If you're using the html5 output, you can resize the screen much more easily. What exactly is being 'cut off': you mean it looks like this? Can you use HTML output instead? [cid:image001.png at 01CF1129.02CB4140] -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Tomasz Seliga Sent: 14 January 2014 12:21 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Change resolution Yes I did, but the content is only scaled - still cut off I've made change of html file in my scorm package to increase resolution. It works. But navigation bar is still narrow (800px). I've found sources of XOT at the GitHub - there are included fla files - I think, that editing those files and compiling swf files once again resolves my problem well. Did you try this ever? Julian Tenney Julian.Tenney at nottingham.ac.uk Tue Jan 14 10:09:01 GMT 2014 Previous message: [Xerte] Re: Change resolution Next message: [Xerte] XOT question re templates / CSS used on the xerte resources page Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] You set the LO to fill window? -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Tomasz Seliga Sent: 14 January 2014 09:46 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Change resolution Thank you for your answer. However it doesn't work as it should. The screen of the browser is bigger indeed, but flash content is still cut off. [Xerte] Re: Change resolution Julian Tenney Julian.Tenney at nottingham.ac.uk Fri Jan 10 09:10:43 GMT 2014 Previous message: [Xerte] Change resolution Next message: [Xerte] XOT question re templates / CSS used on the xerte resources page Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] You can do it by controlling the content window through window.open in javascript. So create links to your LOs, then use window.open to open the new window at the correct size in the web page hosting the links, -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Tomasz Seliga Sent: 10 January 2014 08:47 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Change resolution Hi there. I'm a user of Xerte and it's very useful software to create courses. I'm preparing the course with flash content in 1280 x 800 px. But Xerte Online Toolkits in fact is better to manage and it has few more advantages. Therefore I would like to ask you is it possible to increase resolution from default 800x600 px to 1280x800 px? Now, when I'm trying to add my flash files to my cours by XOT, they are cut off. I had tried to change some variables in php files on my server in XOT installation, but without effects so I'm curious is it possible at all? Has you tried to change resolution of your course prepared by XOT? Best regards, Thomas Seliga _______________________________________________ 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 -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.png Type: image/png Size: 330177 bytes Desc: image001.png URL: Previous message: [Xerte] Re: Change resolution Next message: [Xerte] XOT question re templates / CSS used on the xerte resources page Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] More information about the Xerte mailing list X Validation failed. Please retry or wait till W3C allows validation again From Julian.Tenney at nottingham.ac.uk Wed Jan 15 11:41:53 2014 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Wed, 15 Jan 2014 11:41:53 +0000 Subject: [Xerte] Re: Change resolution In-Reply-To: <52D6725B.7070305@ai.com.pl> References: <52D6725B.7070305@ai.com.pl> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0CE816E04C@EXCHANGE1.ad.nottingham.ac.uk> Welcome. Re-sizing layout was always a PITA with the flash output. -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Tomasz Seliga Sent: 15 January 2014 11:35 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Change resolution Julian, I think that, you do understand perfectly what is my problem with resolution in XOT, because your solution works perfectly :) By exporting my packages as html5 I can change movie size. The problem was, that I published my courses as flash, and as you said - resolution is set in hard code, so I wanted to look for solution in fla files. Of course your solution is much easier. Thank you very very much for help. Best regards, Thomas Julian Tenney Julian.Tenney at nottingham.ac.uk Tue Jan 14 13:03:25 GMT 2014 Previous message: [Xerte] Re: Change resolution Next message: [Xerte] XOT question re templates / CSS used on the xerte resources page Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] I'm not sure I fully understand the problem. If you're using the flash output from toolkits, you need to scale the content as the dimensions are all hard coded. If you're using the html5 output, you can resize the screen much more easily. What exactly is being 'cut off': you mean it looks like this? Can you use HTML output instead? [cid:image001.png at 01CF1129.02CB4140] -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Tomasz Seliga Sent: 14 January 2014 12:21 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Change resolution Yes I did, but the content is only scaled - still cut off I've made change of html file in my scorm package to increase resolution. It works. But navigation bar is still narrow (800px). I've found sources of XOT at the GitHub - there are included fla files - I think, that editing those files and compiling swf files once again resolves my problem well. Did you try this ever? Julian Tenney Julian.Tenney at nottingham.ac.uk Tue Jan 14 10:09:01 GMT 2014 Previous message: [Xerte] Re: Change resolution Next message: [Xerte] XOT question re templates / CSS used on the xerte resources page Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] You set the LO to fill window? -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Tomasz Seliga Sent: 14 January 2014 09:46 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Change resolution Thank you for your answer. However it doesn't work as it should. The screen of the browser is bigger indeed, but flash content is still cut off. [Xerte] Re: Change resolution Julian Tenney Julian.Tenney at nottingham.ac.uk Fri Jan 10 09:10:43 GMT 2014 Previous message: [Xerte] Change resolution Next message: [Xerte] XOT question re templates / CSS used on the xerte resources page Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] You can do it by controlling the content window through window.open in javascript. So create links to your LOs, then use window.open to open the new window at the correct size in the web page hosting the links, -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Tomasz Seliga Sent: 10 January 2014 08:47 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Change resolution Hi there. I'm a user of Xerte and it's very useful software to create courses. I'm preparing the course with flash content in 1280 x 800 px. But Xerte Online Toolkits in fact is better to manage and it has few more advantages. Therefore I would like to ask you is it possible to increase resolution from default 800x600 px to 1280x800 px? Now, when I'm trying to add my flash files to my cours by XOT, they are cut off. I had tried to change some variables in php files on my server in XOT installation, but without effects so I'm curious is it possible at all? Has you tried to change resolution of your course prepared by XOT? Best regards, Thomas Seliga _______________________________________________ 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 -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.png Type: image/png Size: 330177 bytes Desc: image001.png URL: Previous message: [Xerte] Re: Change resolution Next message: [Xerte] XOT question re templates / CSS used on the xerte resources page Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] More information about the Xerte mailing list X Validation failed. Please retry or wait till W3C allows validation again _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte From R.P.Gissing at shu.ac.uk Wed Jan 15 12:34:18 2014 From: R.P.Gissing at shu.ac.uk (Gissing, Robin P P) Date: Wed, 15 Jan 2014 12:34:18 +0000 Subject: [Xerte] Re: Youtube Probs In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0CE816DFFE@EXCHANGE1.ad.nottingham.ac.uk> References: <5CB1C5CE0517E448A66B84EC1DF0F488AC73D469@kidney.hallam.shu.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F0CE816DFFE@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <5CB1C5CE0517E448A66B84EC1DF0F488AC73D62D@kidney.hallam.shu.ac.uk> Hiya, Thanks for the speedy reply, have tried that and that gives me the same error the 'old' embed code does, a static white box. Ta, Robin. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 15 January 2014 10:58 To: Xerte discussion list Subject: [Xerte] Re: Youtube Probs Use the iframe code, and I think you need http before the // in the url From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Gissing, Robin P P Sent: 15 January 2014 10:55 To: 'xerte at lists.nottingham.ac.uk' Subject: [Xerte] Youtube Probs Hi all, This may have been solved in an update, but I couldn't see anything on the lists - I'm on a relatively updated xerte (html5 mode) but not the latest update. We're struggling to add youtube clips with both the new iframe and the old embed code that youtube generates; And The xerte object just says "error loading" in the top corner. Any ideas? Cheers, Robin. Robin Gissing FHEA PgCert HWB Technology Enhanced Learning Advisor Health & Wellbeing Sheffield Hallam University [SHU logo for email template.gif] -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.gif Type: image/gif Size: 3708 bytes Desc: image001.gif URL: From Julian.Tenney at nottingham.ac.uk Wed Jan 15 12:39:16 2014 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Wed, 15 Jan 2014 12:39:16 +0000 Subject: [Xerte] Re: Youtube Probs In-Reply-To: <5CB1C5CE0517E448A66B84EC1DF0F488AC73D62D@kidney.hallam.shu.ac.uk> References: <5CB1C5CE0517E448A66B84EC1DF0F488AC73D469@kidney.hallam.shu.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F0CE816DFFE@EXCHANGE1.ad.nottingham.ac.uk> <5CB1C5CE0517E448A66B84EC1DF0F488AC73D62D@kidney.hallam.shu.ac.uk> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0CE816E0B2@EXCHANGE1.ad.nottingham.ac.uk> It works for me here. [cid:image002.png at 01CF11EE.CD8AFB80] From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Gissing, Robin P P Sent: 15 January 2014 12:34 To: 'Xerte discussion list' Subject: [Xerte] Re: Youtube Probs Hiya, Thanks for the speedy reply, have tried that and that gives me the same error the 'old' embed code does, a static white box. Ta, Robin. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 15 January 2014 10:58 To: Xerte discussion list Subject: [Xerte] Re: Youtube Probs Use the iframe code, and I think you need http before the // in the url From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Gissing, Robin P P Sent: 15 January 2014 10:55 To: 'xerte at lists.nottingham.ac.uk' Subject: [Xerte] Youtube Probs Hi all, This may have been solved in an update, but I couldn't see anything on the lists - I'm on a relatively updated xerte (html5 mode) but not the latest update. We're struggling to add youtube clips with both the new iframe and the old embed code that youtube generates; And The xerte object just says "error loading" in the top corner. Any ideas? Cheers, Robin. Robin Gissing FHEA PgCert HWB Technology Enhanced Learning Advisor Health & Wellbeing Sheffield Hallam University [cid:image003.gif at 01CF11EE.CD8AFB80] -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image002.png Type: image/png Size: 250918 bytes Desc: image002.png URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image003.gif Type: image/gif Size: 3708 bytes Desc: image003.gif URL: From Julian.Tenney at nottingham.ac.uk Wed Jan 15 12:40:04 2014 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Wed, 15 Jan 2014 12:40:04 +0000 Subject: [Xerte] Re: Youtube Probs In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0CE816E0B2@EXCHANGE1.ad.nottingham.ac.uk> References: <5CB1C5CE0517E448A66B84EC1DF0F488AC73D469@kidney.hallam.shu.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F0CE816DFFE@EXCHANGE1.ad.nottingham.ac.uk> <5CB1C5CE0517E448A66B84EC1DF0F488AC73D62D@kidney.hallam.shu.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F0CE816E0B2@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0CE816E0B5@EXCHANGE1.ad.nottingham.ac.uk> Meant to say using the code you provided, unchanged. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 15 January 2014 12:39 To: Xerte discussion list Subject: [Xerte] Re: Youtube Probs It works for me here. [cid:image001.png at 01CF11EE.EA4A4BE0] From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Gissing, Robin P P Sent: 15 January 2014 12:34 To: 'Xerte discussion list' Subject: [Xerte] Re: Youtube Probs Hiya, Thanks for the speedy reply, have tried that and that gives me the same error the 'old' embed code does, a static white box. Ta, Robin. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 15 January 2014 10:58 To: Xerte discussion list Subject: [Xerte] Re: Youtube Probs Use the iframe code, and I think you need http before the // in the url From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Gissing, Robin P P Sent: 15 January 2014 10:55 To: 'xerte at lists.nottingham.ac.uk' Subject: [Xerte] Youtube Probs Hi all, This may have been solved in an update, but I couldn't see anything on the lists - I'm on a relatively updated xerte (html5 mode) but not the latest update. We're struggling to add youtube clips with both the new iframe and the old embed code that youtube generates; And The xerte object just says "error loading" in the top corner. Any ideas? Cheers, Robin. Robin Gissing FHEA PgCert HWB Technology Enhanced Learning Advisor Health & Wellbeing Sheffield Hallam University [cid:image002.gif at 01CF11EE.EA4A4BE0] -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.png Type: image/png Size: 250918 bytes Desc: image001.png URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image002.gif Type: image/gif Size: 3708 bytes Desc: image002.gif URL: From R.P.Gissing at shu.ac.uk Wed Jan 15 12:44:03 2014 From: R.P.Gissing at shu.ac.uk (Gissing, Robin P P) Date: Wed, 15 Jan 2014 12:44:03 +0000 Subject: [Xerte] Re: Youtube Probs In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0CE816E0B5@EXCHANGE1.ad.nottingham.ac.uk> References: <5CB1C5CE0517E448A66B84EC1DF0F488AC73D469@kidney.hallam.shu.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F0CE816DFFE@EXCHANGE1.ad.nottingham.ac.uk> <5CB1C5CE0517E448A66B84EC1DF0F488AC73D62D@kidney.hallam.shu.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F0CE816E0B2@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F0CE816E0B5@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <5CB1C5CE0517E448A66B84EC1DF0F488AC73D693@kidney.hallam.shu.ac.uk> Interestingly, I just tried it in IE and its worked - using all the embed variants. (I was in Chrome before) From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 15 January 2014 12:40 To: Xerte discussion list Subject: [Xerte] Re: Youtube Probs Meant to say using the code you provided, unchanged. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 15 January 2014 12:39 To: Xerte discussion list Subject: [Xerte] Re: Youtube Probs It works for me here. [cid:image001.png at 01CF11EF.75F6D3C0] From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Gissing, Robin P P Sent: 15 January 2014 12:34 To: 'Xerte discussion list' Subject: [Xerte] Re: Youtube Probs Hiya, Thanks for the speedy reply, have tried that and that gives me the same error the 'old' embed code does, a static white box. Ta, Robin. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 15 January 2014 10:58 To: Xerte discussion list Subject: [Xerte] Re: Youtube Probs Use the iframe code, and I think you need http before the // in the url From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Gissing, Robin P P Sent: 15 January 2014 10:55 To: 'xerte at lists.nottingham.ac.uk' Subject: [Xerte] Youtube Probs Hi all, This may have been solved in an update, but I couldn't see anything on the lists - I'm on a relatively updated xerte (html5 mode) but not the latest update. We're struggling to add youtube clips with both the new iframe and the old embed code that youtube generates; And The xerte object just says "error loading" in the top corner. Any ideas? Cheers, Robin. Robin Gissing FHEA PgCert HWB Technology Enhanced Learning Advisor Health & Wellbeing Sheffield Hallam University [SHU logo for email template.gif] -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.png Type: image/png Size: 250918 bytes Desc: image001.png URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image002.gif Type: image/gif Size: 3708 bytes Desc: image002.gif URL: From J.J.Smith at gcu.ac.uk Wed Jan 15 12:48:31 2014 From: J.J.Smith at gcu.ac.uk (Smith, John) Date: Wed, 15 Jan 2014 12:48:31 +0000 Subject: [Xerte] Re: Youtube Probs Message-ID: <3o7ulegkacmhao3phru02sp8.1389790105481@email.android.com> I think the code may be getting processed correctly but you are actually experiencing the cross domain http/https issue. Is this the latest v2.1 code you are using? Regards John Smith Learning Technologist School of Health and Life Sciences Sent from Samsung Galaxy SII "Gissing, Robin P P" wrote: Interestingly, I just tried it in IE and its worked ? using all the embed variants. (I was in Chrome before) From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 15 January 2014 12:40 To: Xerte discussion list Subject: [Xerte] Re: Youtube Probs Meant to say using the code you provided, unchanged. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 15 January 2014 12:39 To: Xerte discussion list Subject: [Xerte] Re: Youtube Probs It works for me here. [cid:image001.png at 01CF11EF.75F6D3C0] From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Gissing, Robin P P Sent: 15 January 2014 12:34 To: 'Xerte discussion list' Subject: [Xerte] Re: Youtube Probs Hiya, Thanks for the speedy reply, have tried that and that gives me the same error the ?old? embed code does, a static white box. Ta, Robin. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 15 January 2014 10:58 To: Xerte discussion list Subject: [Xerte] Re: Youtube Probs Use the iframe code, and I think you need http before the // in the url From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Gissing, Robin P P Sent: 15 January 2014 10:55 To: 'xerte at lists.nottingham.ac.uk' Subject: [Xerte] Youtube Probs Hi all, This may have been solved in an update, but I couldn?t see anything on the lists ? I?m on a relatively updated xerte (html5 mode) but not the latest update. We?re struggling to add youtube clips with both the new iframe and the old embed code that youtube generates; And The xerte object just says ?error loading? in the top corner. Any ideas? Cheers, Robin. Robin Gissing FHEA PgCert HWB Technology Enhanced Learning Advisor Health & Wellbeing Sheffield Hallam University [cid:image002.gif at 01CF11EF.75F6D3C0] Glasgow Caledonian University is a registered Scottish charity, number SC021474 Winner: Times Higher Education?s Widening Participation Initiative of the Year 2009 and Herald Society?s Education Initiative of the Year 2009. http://www.gcu.ac.uk/newsevents/news/bycategory/theuniversity/1/name,6219,en.html Winner: Times Higher Education?s Outstanding Support for Early Career Researchers of the Year 2010, GCU as a lead with Universities Scotland partners. http://www.gcu.ac.uk/newsevents/news/bycategory/theuniversity/1/name,15691,en.html -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.png Type: image/png Size: 250918 bytes Desc: image001.png URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image002.gif Type: image/gif Size: 3708 bytes Desc: image002.gif URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.png Type: image/png Size: 250918 bytes Desc: image001.png URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image002.gif Type: image/gif Size: 3708 bytes Desc: image002.gif URL: From R.P.Gissing at shu.ac.uk Wed Jan 15 13:02:00 2014 From: R.P.Gissing at shu.ac.uk (Gissing, Robin P P) Date: Wed, 15 Jan 2014 13:02:00 +0000 Subject: [Xerte] Re: Youtube Probs In-Reply-To: <3o7ulegkacmhao3phru02sp8.1389790105481@email.android.com> References: <3o7ulegkacmhao3phru02sp8.1389790105481@email.android.com> Message-ID: <5CB1C5CE0517E448A66B84EC1DF0F488AC73D6F4@kidney.hallam.shu.ac.uk> I think you're right John, and youtube appear to have removed the 'https mode' options for the embed code (and manually inserting it in does nothing too). Its not v2.1 I'm on, but that will be remedied next week hopefully. Cheers, Robin. -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, John Sent: 15 January 2014 12:49 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Youtube Probs I think the code may be getting processed correctly but you are actually experiencing the cross domain http/https issue. Is this the latest v2.1 code you are using? Regards John Smith Learning Technologist School of Health and Life Sciences Sent from Samsung Galaxy SII "Gissing, Robin P P" wrote: Interestingly, I just tried it in IE and its worked - using all the embed variants. (I was in Chrome before) From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 15 January 2014 12:40 To: Xerte discussion list Subject: [Xerte] Re: Youtube Probs Meant to say using the code you provided, unchanged. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 15 January 2014 12:39 To: Xerte discussion list Subject: [Xerte] Re: Youtube Probs It works for me here. [cid:image001.png at 01CF11EF.75F6D3C0] From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Gissing, Robin P P Sent: 15 January 2014 12:34 To: 'Xerte discussion list' Subject: [Xerte] Re: Youtube Probs Hiya, Thanks for the speedy reply, have tried that and that gives me the same error the 'old' embed code does, a static white box. Ta, Robin. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 15 January 2014 10:58 To: Xerte discussion list Subject: [Xerte] Re: Youtube Probs Use the iframe code, and I think you need http before the // in the url From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Gissing, Robin P P Sent: 15 January 2014 10:55 To: 'xerte at lists.nottingham.ac.uk' Subject: [Xerte] Youtube Probs Hi all, This may have been solved in an update, but I couldn't see anything on the lists - I'm on a relatively updated xerte (html5 mode) but not the latest update. We're struggling to add youtube clips with both the new iframe and the old embed code that youtube generates; And The xerte object just says "error loading" in the top corner. Any ideas? Cheers, Robin. Robin Gissing FHEA PgCert HWB Technology Enhanced Learning Advisor Health & Wellbeing Sheffield Hallam University [cid:image002.gif at 01CF11EF.75F6D3C0] Glasgow Caledonian University is a registered Scottish charity, number SC021474 Winner: Times Higher Education's Widening Participation Initiative of the Year 2009 and Herald Society's Education Initiative of the Year 2009. http://www.gcu.ac.uk/newsevents/news/bycategory/theuniversity/1/name,6219,en.html Winner: Times Higher Education's Outstanding Support for Early Career Researchers of the Year 2010, GCU as a lead with Universities Scotland partners. http://www.gcu.ac.uk/newsevents/news/bycategory/theuniversity/1/name,15691,en.html 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 Julian.Tenney at nottingham.ac.uk Wed Jan 15 13:08:06 2014 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Wed, 15 Jan 2014 13:08:06 +0000 Subject: [Xerte] Re: Youtube Probs In-Reply-To: <5CB1C5CE0517E448A66B84EC1DF0F488AC73D6F4@kidney.hallam.shu.ac.uk> References: <3o7ulegkacmhao3phru02sp8.1389790105481@email.android.com> <5CB1C5CE0517E448A66B84EC1DF0F488AC73D6F4@kidney.hallam.shu.ac.uk> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0CE816E0D3@EXCHANGE1.ad.nottingham.ac.uk> Can you upgrade just the youtube.html file in the models folder? We've just updated to 2.1 as well, so I expect that will fix it. -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Gissing, Robin P P Sent: 15 January 2014 13:02 To: 'Xerte discussion list' Subject: [Xerte] Re: Youtube Probs I think you're right John, and youtube appear to have removed the 'https mode' options for the embed code (and manually inserting it in does nothing too). Its not v2.1 I'm on, but that will be remedied next week hopefully. Cheers, Robin. -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, John Sent: 15 January 2014 12:49 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Youtube Probs I think the code may be getting processed correctly but you are actually experiencing the cross domain http/https issue. Is this the latest v2.1 code you are using? Regards John Smith Learning Technologist School of Health and Life Sciences Sent from Samsung Galaxy SII "Gissing, Robin P P" wrote: Interestingly, I just tried it in IE and its worked - using all the embed variants. (I was in Chrome before) From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 15 January 2014 12:40 To: Xerte discussion list Subject: [Xerte] Re: Youtube Probs Meant to say using the code you provided, unchanged. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 15 January 2014 12:39 To: Xerte discussion list Subject: [Xerte] Re: Youtube Probs It works for me here. [cid:image001.png at 01CF11EF.75F6D3C0] From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Gissing, Robin P P Sent: 15 January 2014 12:34 To: 'Xerte discussion list' Subject: [Xerte] Re: Youtube Probs Hiya, Thanks for the speedy reply, have tried that and that gives me the same error the 'old' embed code does, a static white box. Ta, Robin. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 15 January 2014 10:58 To: Xerte discussion list Subject: [Xerte] Re: Youtube Probs Use the iframe code, and I think you need http before the // in the url From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Gissing, Robin P P Sent: 15 January 2014 10:55 To: 'xerte at lists.nottingham.ac.uk' Subject: [Xerte] Youtube Probs Hi all, This may have been solved in an update, but I couldn't see anything on the lists - I'm on a relatively updated xerte (html5 mode) but not the latest update. We're struggling to add youtube clips with both the new iframe and the old embed code that youtube generates; And The xerte object just says "error loading" in the top corner. Any ideas? Cheers, Robin. Robin Gissing FHEA PgCert HWB Technology Enhanced Learning Advisor Health & Wellbeing Sheffield Hallam University [cid:image002.gif at 01CF11EF.75F6D3C0] Glasgow Caledonian University is a registered Scottish charity, number SC021474 Winner: Times Higher Education's Widening Participation Initiative of the Year 2009 and Herald Society's Education Initiative of the Year 2009. http://www.gcu.ac.uk/newsevents/news/bycategory/theuniversity/1/name,6219,en.html Winner: Times Higher Education's Outstanding Support for Early Career Researchers of the Year 2010, GCU as a lead with Universities Scotland partners. http://www.gcu.ac.uk/newsevents/news/bycategory/theuniversity/1/name,15691,en.html 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 J.J.Smith at gcu.ac.uk Wed Jan 15 13:24:38 2014 From: J.J.Smith at gcu.ac.uk (Smith, John) Date: Wed, 15 Jan 2014 13:24:38 +0000 Subject: [Xerte] Re: Youtube Probs In-Reply-To: <5CB1C5CE0517E448A66B84EC1DF0F488AC73D6F4@kidney.hallam.shu.ac.uk> References: <3o7ulegkacmhao3phru02sp8.1389790105481@email.android.com> <5CB1C5CE0517E448A66B84EC1DF0F488AC73D6F4@kidney.hallam.shu.ac.uk> Message-ID: You can try replacing the youtube page model with this one https://github.com/thexerteproject/xerteonlinetoolkits/commit/f4ed6bca116b90bacfbc4118258f98c85a13eb5a (click on [Raw] button to get access to the file) and save it to modules/xerte/parent_templates/Nottingham/models_html5/youtube.html I patched this a few months back to allow schemeless urls like Youtube uses to avoid the cross domain security issue... Regards, John Smith Learning Technologist School of Health & Life Sciences Glasgow Caledonian University -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Gissing, Robin P P Sent: Wednesday, January 15, 2014 1:02 PM To: 'Xerte discussion list' Subject: [Xerte] Re: Youtube Probs I think you're right John, and youtube appear to have removed the 'https mode' options for the embed code (and manually inserting it in does nothing too). Its not v2.1 I'm on, but that will be remedied next week hopefully. Cheers, Robin. -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, John Sent: 15 January 2014 12:49 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Youtube Probs I think the code may be getting processed correctly but you are actually experiencing the cross domain http/https issue. Is this the latest v2.1 code you are using? Regards John Smith Learning Technologist School of Health and Life Sciences Sent from Samsung Galaxy SII "Gissing, Robin P P" wrote: Interestingly, I just tried it in IE and its worked - using all the embed variants. (I was in Chrome before) From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 15 January 2014 12:40 To: Xerte discussion list Subject: [Xerte] Re: Youtube Probs Meant to say using the code you provided, unchanged. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 15 January 2014 12:39 To: Xerte discussion list Subject: [Xerte] Re: Youtube Probs It works for me here. [cid:image001.png at 01CF11EF.75F6D3C0] From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Gissing, Robin P P Sent: 15 January 2014 12:34 To: 'Xerte discussion list' Subject: [Xerte] Re: Youtube Probs Hiya, Thanks for the speedy reply, have tried that and that gives me the same error the 'old' embed code does, a static white box. Ta, Robin. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 15 January 2014 10:58 To: Xerte discussion list Subject: [Xerte] Re: Youtube Probs Use the iframe code, and I think you need http before the // in the url From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Gissing, Robin P P Sent: 15 January 2014 10:55 To: 'xerte at lists.nottingham.ac.uk' Subject: [Xerte] Youtube Probs Hi all, This may have been solved in an update, but I couldn't see anything on the lists - I'm on a relatively updated xerte (html5 mode) but not the latest update. We're struggling to add youtube clips with both the new iframe and the old embed code that youtube generates; And The xerte object just says "error loading" in the top corner. Any ideas? Cheers, Robin. Robin Gissing FHEA PgCert HWB Technology Enhanced Learning Advisor Health & Wellbeing Sheffield Hallam University [cid:image002.gif at 01CF11EF.75F6D3C0] Glasgow Caledonian University is a registered Scottish charity, number SC021474 Winner: Times Higher Education's Widening Participation Initiative of the Year 2009 and Herald Society's Education Initiative of the Year 2009. http://www.gcu.ac.uk/newsevents/news/bycategory/theuniversity/1/name,6219,en.html Winner: Times Higher Education's Outstanding Support for Early Career Researchers of the Year 2010, GCU as a lead with Universities Scotland partners. http://www.gcu.ac.uk/newsevents/news/bycategory/theuniversity/1/name,15691,en.html 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. Glasgow Caledonian University is a registered Scottish charity, number SC021474 Winner: Times Higher Education?s Widening Participation Initiative of the Year 2009 and Herald Society?s Education Initiative of the Year 2009. http://www.gcu.ac.uk/newsevents/news/bycategory/theuniversity/1/name,6219,en.html Winner: Times Higher Education?s Outstanding Support for Early Career Researchers of the Year 2010, GCU as a lead with Universities Scotland partners. http://www.gcu.ac.uk/newsevents/news/bycategory/theuniversity/1/name,15691,en.html From xerte at pgogywebstuff.com Wed Jan 15 13:29:12 2014 From: xerte at pgogywebstuff.com (Pat L (pgogy)) Date: Wed, 15 Jan 2014 13:29:12 +0000 Subject: [Xerte] Re: Youtube Probs In-Reply-To: <5CB1C5CE0517E448A66B84EC1DF0F488AC73D62D@kidney.hallam.shu.ac.uk> References: <5CB1C5CE0517E448A66B84EC1DF0F488AC73D469@kidney.hallam.shu.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F0CE816DFFE@EXCHANGE1.ad.nottingham.ac.uk> <5CB1C5CE0517E448A66B84EC1DF0F488AC73D62D@kidney.hallam.shu.ac.uk> Message-ID: If you're using chrome - it might be helpful to look at what console says? On Wed, Jan 15, 2014 at 12:34 PM, Gissing, Robin P P wrote: > Hiya, > > > > Thanks for the speedy reply, have tried that and that gives me the same > error the ?old? embed code does, a static white box. > > > > Ta, > > Robin. > > > > > > *From:* xerte-bounces at lists.nottingham.ac.uk [mailto: > xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Julian Tenney > *Sent:* 15 January 2014 10:58 > *To:* Xerte discussion list > *Subject:* [Xerte] Re: Youtube Probs > > > > Use the iframe code, and I think you need http before the // in the url > > > > *From:* xerte-bounces at lists.nottingham.ac.uk [ > mailto:xerte-bounces at lists.nottingham.ac.uk] > *On Behalf Of *Gissing, Robin P P > *Sent:* 15 January 2014 10:55 > *To:* 'xerte at lists.nottingham.ac.uk' > *Subject:* [Xerte] Youtube Probs > > > > Hi all, > > > > This may have been solved in an update, but I couldn?t see anything on the > lists ? I?m on a relatively updated xerte (html5 mode) but not the latest > update. > > > > We?re struggling to add youtube clips with both the new iframe and the old > embed code that youtube generates; > > > > name="allowFullScreen" value="true"> value="always"> type="application/x-shockwave-flash" width="560" height="315" > allowscriptaccess="always" allowfullscreen="true"> > > > > And > > > > > > > > The xerte object just says ?error loading? in the top corner. > > > > Any ideas? > > > > Cheers, > > Robin. > > > > > > *Robin Gissing FHEA PgCert* > > *HWB Technology Enhanced Learning Advisor* > > Health & Wellbeing > > Sheffield Hallam University > > > > [image: SHU logo for email template.gif] > > > > > > _______________________________________________ > 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: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.gif Type: image/gif Size: 3708 bytes Desc: not available URL: From xerte at pgogywebstuff.com Wed Jan 15 13:29:12 2014 From: xerte at pgogywebstuff.com (Pat L (pgogy)) Date: Wed, 15 Jan 2014 13:29:12 +0000 Subject: [Xerte] Re: Youtube Probs In-Reply-To: <5CB1C5CE0517E448A66B84EC1DF0F488AC73D62D@kidney.hallam.shu.ac.uk> References: <5CB1C5CE0517E448A66B84EC1DF0F488AC73D469@kidney.hallam.shu.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F0CE816DFFE@EXCHANGE1.ad.nottingham.ac.uk> <5CB1C5CE0517E448A66B84EC1DF0F488AC73D62D@kidney.hallam.shu.ac.uk> Message-ID: If you're using chrome - it might be helpful to look at what console says? On Wed, Jan 15, 2014 at 12:34 PM, Gissing, Robin P P wrote: > Hiya, > > > > Thanks for the speedy reply, have tried that and that gives me the same > error the ?old? embed code does, a static white box. > > > > Ta, > > Robin. > > > > > > *From:* xerte-bounces at lists.nottingham.ac.uk [mailto: > xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Julian Tenney > *Sent:* 15 January 2014 10:58 > *To:* Xerte discussion list > *Subject:* [Xerte] Re: Youtube Probs > > > > Use the iframe code, and I think you need http before the // in the url > > > > *From:* xerte-bounces at lists.nottingham.ac.uk [ > mailto:xerte-bounces at lists.nottingham.ac.uk] > *On Behalf Of *Gissing, Robin P P > *Sent:* 15 January 2014 10:55 > *To:* 'xerte at lists.nottingham.ac.uk' > *Subject:* [Xerte] Youtube Probs > > > > Hi all, > > > > This may have been solved in an update, but I couldn?t see anything on the > lists ? I?m on a relatively updated xerte (html5 mode) but not the latest > update. > > > > We?re struggling to add youtube clips with both the new iframe and the old > embed code that youtube generates; > > > > name="allowFullScreen" value="true"> value="always"> type="application/x-shockwave-flash" width="560" height="315" > allowscriptaccess="always" allowfullscreen="true"> > > > > And > > > > > > > > The xerte object just says ?error loading? in the top corner. > > > > Any ideas? > > > > Cheers, > > Robin. > > > > > > *Robin Gissing FHEA PgCert* > > *HWB Technology Enhanced Learning Advisor* > > Health & Wellbeing > > Sheffield Hallam University > > > > [image: SHU logo for email template.gif] > > > > > > _______________________________________________ > 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: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.gif Type: image/gif Size: 3708 bytes Desc: not available URL: From knowledgeware at kccsoft.com Fri Jan 17 00:00:25 2014 From: knowledgeware at kccsoft.com (KnowledgeWare) Date: Thu, 16 Jan 2014 16:00:25 -0800 Subject: [Xerte] desktop xerte js syntax to call swf function Message-ID: <000f01cf1317$200afbc0$6020f340$@kccsoft.com> Can anyone see anything wrong with this. this is in the index.htm page that loads my RLO. I'm loading a swf file in the RLO that calls the 'flashInititialized' function below. The function runs, because if I remove the comments around the alert('xxxxx') that will display. -------------- next part -------------- An HTML attachment was scrubbed... URL: From d_b_burnett at hotmail.com Fri Jan 17 00:03:38 2014 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Thu, 16 Jan 2014 19:03:38 -0500 Subject: [Xerte] Re: desktop xerte js syntax to call swf function In-Reply-To: <000f01cf1317$200afbc0$6020f340$@kccsoft.com> References: <000f01cf1317$200afbc0$6020f340$@kccsoft.com> Message-ID: Ron, I think it's a one way street.Julian wrapped the ExternalInterface.call method in a wrapper that allows Xerte to call outward (hence your initialization alert works).But there is no way set up to call inward (JS to AS). From: knowledgeware at kccsoft.com To: xerte at lists.nottingham.ac.uk Date: Thu, 16 Jan 2014 16:00:25 -0800 Subject: [Xerte] desktop xerte js syntax to call swf function Can anyone see anything wrong with this? this is in the index.htm page that loads my RLO. I?m loading a swf file in the RLO that calls the ?flashInititialized? function below. The function runs, because if I remove the comments around the alert(?xxxxx?) that will display. 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 Fri Jan 17 08:13:08 2014 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Fri, 17 Jan 2014 08:13:08 +0000 Subject: [Xerte] Re: desktop xerte js syntax to call swf function In-Reply-To: <000f01cf1317$200afbc0$6020f340$@kccsoft.com> References: <000f01cf1317$200afbc0$6020f340$@kccsoft.com> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0CE866DE30@EXCHANGE1.ad.nottingham.ac.uk> What are you trying to do? Intuitively, this seems a long winded way of achieving it... From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of KnowledgeWare Sent: 17 January 2014 00:00 To: Xerte discussion list Subject: [Xerte] desktop xerte js syntax to call swf function Can anyone see anything wrong with this... this is in the index.htm page that loads my RLO. I'm loading a swf file in the RLO that calls the 'flashInititialized' function below. The function runs, because if I remove the comments around the alert('xxxxx') that will display. -------------- next part -------------- An HTML attachment was scrubbed... URL: From seliga at ai.com.pl Fri Jan 17 08:44:22 2014 From: seliga at ai.com.pl (Tomasz Seliga) Date: Fri, 17 Jan 2014 09:44:22 +0100 Subject: [Xerte] SCORM 1.2 tracking - eFront Message-ID: <52D8ED66.6080306@ai.com.pl> Hi. My SCORM packages created by XOT, don't work in eFront LMS. I can upload them to LMS as SCORM, but after launch the lesson I get a message: "LMSGetValue(cmi.core.entry) failed. Not initialized" and lesson's progress bar doesn't work - still 0% I want to say, that packages created by Xerte work perfectly. Please help. Regards, Thomas Seliga From reijnders at tor.nl Fri Jan 17 12:47:12 2014 From: reijnders at tor.nl (Tom Reijnders) Date: Fri, 17 Jan 2014 13:47:12 +0100 Subject: [Xerte] Re: SCORM 1.2 tracking - eFront In-Reply-To: <52D8ED66.6080306@ai.com.pl> References: <52D8ED66.6080306@ai.com.pl> Message-ID: <52D92650.9030207@tor.nl> Hi Tomasz, The error means in principle that eFront doesn't support the cmi.core.entry variable (which is mandatory according to the SCORM 1.2 standard). So, this is either a bug in eFront or a misunderstanding on my part that cmi.core.entry can only be inspected after a certain other event (but I wouldn't know which one). Or eFront only supports SCORM 2004. Could you try what happens if you load a SCORM 2004 package? Regards, Tom Tomasz Seliga schreef op 17-1-2014 9:44: > Hi. > My SCORM packages created by XOT, don't work in eFront LMS. > I can upload them to LMS as SCORM, but after launch the lesson I get a > message: > "LMSGetValue(cmi.core.entry) failed. > Not initialized" > and lesson's progress bar doesn't work - still 0% > > I want to say, that packages created by Xerte work perfectly. > Please help. > > Regards, > Thomas Seliga > > _______________________________________________ > 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 From seliga at ai.com.pl Mon Jan 20 07:39:11 2014 From: seliga at ai.com.pl (Tomasz Seliga) Date: Mon, 20 Jan 2014 08:39:11 +0100 Subject: [Xerte] Re: SCORM 1.2 tracking - eFront In-Reply-To: <52D92650.9030207@tor.nl> References: <52D92650.9030207@tor.nl> Message-ID: <52DCD29F.5010603@ai.com.pl> Tom, thank you for your answer. Unfortunately I think you are in mistake: eFront supports SCORM 1.2 (http://wiki.efrontlearning.net/SCORM/SCORM%2f%2fIMS) SCORM 2004 included in paid distribution. Also SCORM 1.2 packages created in Xerte (stand alone version), works correctly, and different examples from the internet works too, so this is a reason for I think it is not problem with eFront. Maybe there is a problem with my Xerte Online Toolkits installation. Few time ago I made there a lot of changes in php code. I'll install it once again at clean server and I'll see what happens Regards, Thomas From reijnders at tor.nl Mon Jan 20 12:46:00 2014 From: reijnders at tor.nl (Tom Reijnders) Date: Mon, 20 Jan 2014 13:46:00 +0100 Subject: [Xerte] Re: SCORM 1.2 tracking - eFront In-Reply-To: <52DCD29F.5010603@ai.com.pl> References: <52D92650.9030207@tor.nl> <52DCD29F.5010603@ai.com.pl> Message-ID: <4bff694b-3ce1-4b39-836b-5bbecb49f834@email.android.com> I'll check. All SCORM code is in JavaScript, there is no need to make a new install if you only changed php. Furthermore, xerte standalone SCORM tracking is on a completely different level than current xot. Can you send me a sample package? Tom Tomasz Seliga schreef: >Tom, thank you for your answer. >Unfortunately I think you are in mistake: >eFront supports SCORM 1.2 >(http://wiki.efrontlearning.net/SCORM/SCORM%2f%2fIMS) >SCORM 2004 included in paid distribution. >Also SCORM 1.2 packages created in Xerte (stand alone version), works >correctly, and different examples from the internet works too, so this >is a reason for I think it is not problem with eFront. >Maybe there is a problem with my Xerte Online Toolkits installation. >Few >time ago I made there a lot of changes in php code. I'll install it >once >again at clean server and I'll see what happens > >Regards, >Thomas > >_______________________________________________ >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. -- Verzonden van mijn Android telefoon met K-9 Mail. -------------- next part -------------- An HTML attachment was scrubbed... URL: From knowledgeware at kccsoft.com Mon Jan 20 18:43:50 2014 From: knowledgeware at kccsoft.com (KnowledgeWare) Date: Mon, 20 Jan 2014 10:43:50 -0800 Subject: [Xerte] FW: Re: desktop xerte js syntax to call swf function References: <000f01cf1317$200afbc0$6020f340$@kccsoft.com> <12C67A1EEC419342AF5E59DA31562C3F0CE866DE30@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <012501cf160f$8ff96340$afec29c0$@kccsoft.com> Hello Julian: On browser 'close' I was trying to write a cookie to the hard drive which contains an array of the menu items the user has done, etc.. But I believe there is a function in Flash where the program should, in theory, write a cookie on shutdown, possibly that will work. Question on the desktop xerte 'Publish' feature. Is there a way to change where it publishes the files? The helpfile shows C:\Documents and Settings but I cannot access that directory without resetting permissions. Is there a path somewhere I can change to make it publish to a more friendly location? BTW I really like the desktop version in spite of my whining and questions..hate to see it go..hoping some of it may someday show up in toolkits (like framework icons!). Thanks RonM2 : - ) From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: Friday, January 17, 2014 12:13 AM To: Xerte discussion list Subject: [Xerte] Re: desktop xerte js syntax to call swf function What are you trying to do? Intuitively, this seems a long winded way of achieving it. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of KnowledgeWare Sent: 17 January 2014 00:00 To: Xerte discussion list Subject: [Xerte] desktop xerte js syntax to call swf function Can anyone see anything wrong with this. this is in the index.htm page that loads my RLO. I'm loading a swf file in the RLO that calls the 'flashInititialized' function below. The function runs, because if I remove the comments around the alert('xxxxx') that will display. 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 Mon Jan 20 18:51:42 2014 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Mon, 20 Jan 2014 18:51:42 +0000 Subject: [Xerte] Re: FW: Re: desktop xerte js syntax to call swf function In-Reply-To: <012501cf160f$8ff96340$afec29c0$@kccsoft.com> References: <000f01cf1317$200afbc0$6020f340$@kccsoft.com> <12C67A1EEC419342AF5E59DA31562C3F0CE866DE30@EXCHANGE1.ad.nottingham.ac.uk>, <012501cf160f$8ff96340$afec29c0$@kccsoft.com> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0CE84580CE@EXCHANGE1.ad.nottingham.ac.uk> can you not flush that data through to some javascript as the user ges along, then you wn't have to reach into the swf for it when the browser closes? ________________________________________ From: xerte-bounces at lists.nottingham.ac.uk [xerte-bounces at lists.nottingham.ac.uk] On Behalf Of KnowledgeWare [knowledgeware at kccsoft.com] Sent: 20 January 2014 18:43 To: Xerte discussion list Subject: [Xerte] FW: Re: desktop xerte js syntax to call swf function Hello Julian: On browser ?close? I was trying to write a cookie to the hard drive which contains an array of the menu items the user has done, etc.. But I believe there is a function in Flash where the program should, in theory, write a cookie on shutdown, possibly that will work. Question on the desktop xerte ?Publish? feature. Is there a way to change where it publishes the files? The helpfile shows C:\Documents and Settings but I cannot access that directory without resetting permissions. Is there a path somewhere I can change to make it publish to a more friendly location? BTW I really like the desktop version in spite of my whining and questions?.hate to see it go?.hoping some of it may someday show up in toolkits (like framework icons!). Thanks RonM2 : - ) From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: Friday, January 17, 2014 12:13 AM To: Xerte discussion list Subject: [Xerte] Re: desktop xerte js syntax to call swf function What are you trying to do? Intuitively, this seems a long winded way of achieving it? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of KnowledgeWare Sent: 17 January 2014 00:00 To: Xerte discussion list Subject: [Xerte] desktop xerte js syntax to call swf function Can anyone see anything wrong with this? this is in the index.htm page that loads my RLO. I?m loading a swf file in the RLO that calls the ?flashInititialized? function below. The function runs, because if I remove the comments around the alert(?xxxxx?) that will display. 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 Mon Jan 20 20:53:50 2014 From: knowledgeware at kccsoft.com (KnowledgeWare) Date: Mon, 20 Jan 2014 12:53:50 -0800 Subject: [Xerte] Re: FW: Re: desktop xerte js syntax to call swf function In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0CE84580CE@EXCHANGE1.ad.nottingham.ac.uk> References: <000f01cf1317$200afbc0$6020f340$@kccsoft.com> <12C67A1EEC419342AF5E59DA31562C3F0CE866DE30@EXCHANGE1.ad.nottingham.ac.uk>, <012501cf160f$8ff96340$afec29c0$@kccsoft.com> <12C67A1EEC419342AF5E59DA31562C3F0CE84580CE@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <001801cf1621$b93761a0$2ba624e0$@kccsoft.com> Yes maybe I can. I'm preparing for another assault on it tonight...I'll think more along those lines... thanks! RonM2 -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: Monday, January 20, 2014 10:52 AM To: Xerte discussion list Subject: [Xerte] Re: FW: Re: desktop xerte js syntax to call swf function can you not flush that data through to some javascript as the user ges along, then you wn't have to reach into the swf for it when the browser closes? ________________________________________ From: xerte-bounces at lists.nottingham.ac.uk [xerte-bounces at lists.nottingham.ac.uk] On Behalf Of KnowledgeWare [knowledgeware at kccsoft.com] Sent: 20 January 2014 18:43 To: Xerte discussion list Subject: [Xerte] FW: Re: desktop xerte js syntax to call swf function Hello Julian: On browser 'close' I was trying to write a cookie to the hard drive which contains an array of the menu items the user has done, etc.. But I believe there is a function in Flash where the program should, in theory, write a cookie on shutdown, possibly that will work. Question on the desktop xerte 'Publish' feature. Is there a way to change where it publishes the files? The helpfile shows C:\Documents and Settings but I cannot access that directory without resetting permissions. Is there a path somewhere I can change to make it publish to a more friendly location? BTW I really like the desktop version in spite of my whining and questions..hate to see it go..hoping some of it may someday show up in toolkits (like framework icons!). Thanks RonM2 : - ) From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: Friday, January 17, 2014 12:13 AM To: Xerte discussion list Subject: [Xerte] Re: desktop xerte js syntax to call swf function What are you trying to do? Intuitively, this seems a long winded way of achieving it. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of KnowledgeWare Sent: 17 January 2014 00:00 To: Xerte discussion list Subject: [Xerte] desktop xerte js syntax to call swf function Can anyone see anything wrong with this. this is in the index.htm page that loads my RLO. I'm loading a swf file in the RLO that calls the 'flashInititialized' function below. The function runs, because if I remove the comments around the alert('xxxxx') that will display. 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 seliga at ai.com.pl Tue Jan 21 08:07:50 2014 From: seliga at ai.com.pl (Tomasz Seliga) Date: Tue, 21 Jan 2014 09:07:50 +0100 Subject: [Xerte] Re: SCORM 1.2 tracking - eFront In-Reply-To: <4bff694b-3ce1-4b39-836b-5bbecb49f834@email.android.com> References: <4bff694b-3ce1-4b39-836b-5bbecb49f834@email.android.com> Message-ID: <52DE2AD6.7000703@ai.com.pl> Thank you. You're right - new installation of eFront and XOT at new machine didn't change anything. SCORM 1.2 packages from XOT don't work with eFront I'll send you a sample package created in XOT. It's strange, because SCORM standard should be the same for every authoring tool - this is my point of view Do you know, is the XOT works with MOODLE without any problems? Cheers Tom From Julian.Tenney at nottingham.ac.uk Tue Jan 21 09:17:15 2014 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Tue, 21 Jan 2014 09:17:15 +0000 Subject: [Xerte] Re: SCORM 1.2 tracking - eFront In-Reply-To: <52DE2AD6.7000703@ai.com.pl> References: <4bff694b-3ce1-4b39-836b-5bbecb49f834@email.android.com> <52DE2AD6.7000703@ai.com.pl> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0CE866E9A1@EXCHANGE1.ad.nottingham.ac.uk> The thing to do is run the package in the SCORM test suite. If it works, well, it works, and the problem is with the LMS, which is what I suspect. XOT packages work with moodle, yes. -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Tomasz Seliga Sent: 21 January 2014 08:08 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: SCORM 1.2 tracking - eFront Thank you. You're right - new installation of eFront and XOT at new machine didn't change anything. SCORM 1.2 packages from XOT don't work with eFront I'll send you a sample package created in XOT. It's strange, because SCORM standard should be the same for every authoring tool - this is my point of view Do you know, is the XOT works with MOODLE without any problems? Cheers Tom _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte From Julian.Tenney at nottingham.ac.uk Tue Jan 21 09:22:48 2014 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Tue, 21 Jan 2014 09:22:48 +0000 Subject: [Xerte] Re: FW: Re: desktop xerte js syntax to call swf function In-Reply-To: <001801cf1621$b93761a0$2ba624e0$@kccsoft.com> References: <000f01cf1317$200afbc0$6020f340$@kccsoft.com> <12C67A1EEC419342AF5E59DA31562C3F0CE866DE30@EXCHANGE1.ad.nottingham.ac.uk>, <012501cf160f$8ff96340$afec29c0$@kccsoft.com> <12C67A1EEC419342AF5E59DA31562C3F0CE84580CE@EXCHANGE1.ad.nottingham.ac.uk> <001801cf1621$b93761a0$2ba624e0$@kccsoft.com> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0CE866E9AD@EXCHANGE1.ad.nottingham.ac.uk> So do callJS to pass the data out as the user moves through the course, store it in JS vars, and then you have the data ready to save when the page closes, trap the onbeforeunload event. -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of KnowledgeWare Sent: 20 January 2014 20:54 To: 'Xerte discussion list' Subject: [Xerte] Re: FW: Re: desktop xerte js syntax to call swf function Yes maybe I can. I'm preparing for another assault on it tonight...I'll think more along those lines... thanks! RonM2 -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: Monday, January 20, 2014 10:52 AM To: Xerte discussion list Subject: [Xerte] Re: FW: Re: desktop xerte js syntax to call swf function can you not flush that data through to some javascript as the user ges along, then you wn't have to reach into the swf for it when the browser closes? ________________________________________ From: xerte-bounces at lists.nottingham.ac.uk [xerte-bounces at lists.nottingham.ac.uk] On Behalf Of KnowledgeWare [knowledgeware at kccsoft.com] Sent: 20 January 2014 18:43 To: Xerte discussion list Subject: [Xerte] FW: Re: desktop xerte js syntax to call swf function Hello Julian: On browser 'close' I was trying to write a cookie to the hard drive which contains an array of the menu items the user has done, etc.. But I believe there is a function in Flash where the program should, in theory, write a cookie on shutdown, possibly that will work. Question on the desktop xerte 'Publish' feature. Is there a way to change where it publishes the files? The helpfile shows C:\Documents and Settings but I cannot access that directory without resetting permissions. Is there a path somewhere I can change to make it publish to a more friendly location? BTW I really like the desktop version in spite of my whining and questions..hate to see it go..hoping some of it may someday show up in toolkits (like framework icons!). Thanks RonM2 : - ) From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: Friday, January 17, 2014 12:13 AM To: Xerte discussion list Subject: [Xerte] Re: desktop xerte js syntax to call swf function What are you trying to do? Intuitively, this seems a long winded way of achieving it. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of KnowledgeWare Sent: 17 January 2014 00:00 To: Xerte discussion list Subject: [Xerte] desktop xerte js syntax to call swf function Can anyone see anything wrong with this. this is in the index.htm page that loads my RLO. I'm loading a swf file in the RLO that calls the 'flashInititialized' function below. The function runs, because if I remove the comments around the alert('xxxxx') that will display. 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 Julian.Tenney at nottingham.ac.uk Wed Jan 22 11:39:55 2014 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Wed, 22 Jan 2014 11:39:55 +0000 Subject: [Xerte] FW: current known bug with Google Chrome In-Reply-To: <008701cf175e$96537410$c2fa5c30$@co.uk> References: <008701cf175e$96537410$c2fa5c30$@co.uk> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0CE8815863@EXCHANGE1.ad.nottingham.ac.uk> See info below from Ron, thanks Ron, From: A list to facilitate and support teachers using Xerte Online Toolkits [mailto:XERTEFORTEACHERS at JISCMAIL.AC.UK] On Behalf Of Ron Mitchell Sent: 22 January 2014 10:42 To: XERTEFORTEACHERS at JISCMAIL.AC.UK Subject: current known bug with Google Chrome Hi all although this isn't a technical list it seems appropriate to share details of a current and known bug with the latest version of Google Chrome (32.0.1700.76) so if you use the Chrome browser please be aware of the following: This isn't an issue specific to Xerte or a result of Xerte code but we've been investigating and discussing this on the Xerte developer list and if you are authoring with Xerte using the latest version of Chrome and start seeing 'Page(s) unresponsive' error messages similar to the one below then until a Chrome update is released you are best advised to use an alternative browser such as Firefox or IE. Note: Whether you see this issue will depend on a combination of OS, Theme, Resolution, Browser window size, Chrome version etc so if you don't get this error all is well. If you do get this error then switch to a different browser until an update to Chrome is released. HTH Ron Example error message: [cid:image003.jpg at 01CF175E.9404A210] -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image003.jpg Type: image/jpeg Size: 14098 bytes Desc: image003.jpg URL: From ronm at mitchellmedia.co.uk Wed Jan 22 13:08:08 2014 From: ronm at mitchellmedia.co.uk (Ron Mitchell) Date: Wed, 22 Jan 2014 13:08:08 -0000 Subject: [Xerte] Please ignore this test message Message-ID: <010901cf1772$ff787a30$fe696e90$@co.uk> Hi please ignore this test message - just testing if there is a delay before the message reaches the list. Sent at 13:05 Ron -------------- next part -------------- An HTML attachment was scrubbed... URL: From knowledgeware at kccsoft.com Wed Jan 22 20:54:00 2014 From: knowledgeware at kccsoft.com (KnowledgeWare) Date: Wed, 22 Jan 2014 12:54:00 -0800 Subject: [Xerte] XOT 2 powerpoint import Message-ID: <001e01cf17b4$1418b770$3c4a2650$@kccsoft.com> Now testing the new XOT 2.1 locally here and revisiting this Powerpoint wishlist item from last year. Alastair had suggested these two methods. just wondering if there is anything new in this area re XOT 2.1 or does anyone know if these options are still the best? Thanks RonM2 I can think of two options that would work in Xerte Toolkits: 1) Use the free version of Print2Flash to convert the PowerPoint to Flash paper format then add through the Flash paper page type: [cid:image001.jpg at 01CD1EF0.7C4F0470 ] 2) Use the Navigator page to hyperlink to the full PowerPoint: [cid:image002.png at 01CD1EF0.7C4F0470 ] Gernerally I'd keep PowerPoints as PowerPoints and use Xerte when I wanted to add extra benefits for students - like interactivities or questions. Alistair -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Thu Jan 23 08:40:36 2014 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Thu, 23 Jan 2014 08:40:36 +0000 Subject: [Xerte] Re: XOT 2 powerpoint import In-Reply-To: <001e01cf17b4$1418b770$3c4a2650$@kccsoft.com> References: <001e01cf17b4$1418b770$3c4a2650$@kccsoft.com> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0CE8815B4F@EXCHANGE1.ad.nottingham.ac.uk> I suppose what I would think about doing here in toolkits, is coverting the powerpoint into some web friendly format, and then embedding that content in the presentation. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of KnowledgeWare Sent: 22 January 2014 20:54 To: Xerte discussion list Subject: [Xerte] XOT 2 powerpoint import Now testing the new XOT 2.1 locally here and revisiting this Powerpoint wishlist item from last year. Alastair had suggested these two methods... just wondering if there is anything new in this area re XOT 2.1 or does anyone know if these options are still the best? Thanks RonM2 I can think of two options that would work in Xerte Toolkits: 1) Use the free version of Print2Flash to convert the PowerPoint to Flash paper format then add through the Flash paper page type: [cid:image001.jpg at 01CD1EF0.7C4F0470] 2) Use the Navigator page to hyperlink to the full PowerPoint: [cid:image002.png at 01CD1EF0.7C4F0470] Gernerally I'd keep PowerPoints as PowerPoints and use Xerte when I wanted to add extra benefits for students - like interactivities or questions. Alistair -------------- next part -------------- An HTML attachment was scrubbed... URL: From xerte at pgogywebstuff.com Thu Jan 23 10:14:34 2014 From: xerte at pgogywebstuff.com (Pat L (pgogy)) Date: Thu, 23 Jan 2014 10:14:34 +0000 Subject: [Xerte] Re: XOT 2 powerpoint import In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0CE8815B4F@EXCHANGE1.ad.nottingham.ac.uk> References: <001e01cf17b4$1418b770$3c4a2650$@kccsoft.com> <12C67A1EEC419342AF5E59DA31562C3F0CE8815B4F@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: Have a slide share include option seems best On 23 Jan 2014, at 08:40, Julian Tenney wrote: I suppose what I would think about doing here in toolkits, is coverting the powerpoint into some web friendly format, and then embedding that content in the presentation. *From:* xerte-bounces at lists.nottingham.ac.uk [ mailto:xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *KnowledgeWare *Sent:* 22 January 2014 20:54 *To:* Xerte discussion list *Subject:* [Xerte] XOT 2 powerpoint import Now testing the new XOT 2.1 locally here and revisiting this Powerpoint wishlist item from last year. Alastair had suggested these two methods? just wondering if there is anything new in this area re XOT 2.1 or does anyone know if these options are still the best? Thanks RonM2 I can think of two options that would work in Xerte Toolkits: 1) Use the free version of Print2Flash to convert the PowerPoint to Flash paper format then add through the Flash paper page type: [cid:image001.jpg at 01CD1EF0.7C4F0470 ] 2) Use the Navigator page to hyperlink to the full PowerPoint: [cid:image002.png at 01CD1EF0.7C4F0470 ] Gernerally I'd keep PowerPoints as PowerPoints and use Xerte when I wanted to add extra benefits for students - like interactivities or questions. Alistair 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 annvturner at gmail.com Thu Jan 23 11:37:34 2014 From: annvturner at gmail.com (Ann Turner) Date: Thu, 23 Jan 2014 13:37:34 +0200 Subject: [Xerte] Xerte rlo not integrating with Moodle 2.4.1 Message-ID: Hi, I've been trying to import Xerte Online Toolkits rlo's as question type in a Quiz on our Moodle 2.4.1 site, without any success. Please let me know where I'm going wrong - we've also tried using Taskchain, without any success either! Would really appreciate help, Thanks, Ann Turner -------------- next part -------------- An HTML attachment was scrubbed... URL: From ronm at mitchellmedia.co.uk Thu Jan 23 12:42:51 2014 From: ronm at mitchellmedia.co.uk (Ron Mitchell) Date: Thu, 23 Jan 2014 12:42:51 -0000 Subject: [Xerte] Re: Xerte rlo not integrating with Moodle 2.4.1 In-Reply-To: References: Message-ID: <003b01cf1838$a1c59730$e550c590$@co.uk> Can you describe the steps you are trying? You should be exporting and importing your XOT LO's as SCORM zip files. The SCORM 2004 export is probably your best option. HTH Ron From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Ann Turner Sent: 23 January 2014 11:38 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Xerte rlo not integrating with Moodle 2.4.1 Hi, I've been trying to import Xerte Online Toolkits rlo's as question type in a Quiz on our Moodle 2.4.1 site, without any success. Please let me know where I'm going wrong - we've also tried using Taskchain, without any success either! Would really appreciate help, Thanks, Ann Turner -------------- next part -------------- An HTML attachment was scrubbed... URL: From A.R.G.Bailey at brighton.ac.uk Fri Jan 24 14:01:34 2014 From: A.R.G.Bailey at brighton.ac.uk (Adam Bailey) Date: Fri, 24 Jan 2014 14:01:34 +0000 Subject: [Xerte] Preview and Publish error message Message-ID: Hi, One of my students is presently creating a LO for her assessment (submission deadline Tues 28th Jan) and when clicking on Preview, Play or the URL for the LO to view it gets the error message attached, that reads ERROR: The RLO file modules/xerte/pa Has anyone come across this error before or know what might be causing the issue? The student has gifted the LO to me to see and I get the same error message when trying to view it. LO's I've created under my account and other students are creating aren't affected. They have also tried re-writing the LO and now has the same error, so wondering if this is related to inserts used? Regards, Adam Learning Technologies Adviser 07540668611 a.r.g.bailey at brighton.ac.uk https://studentfolio.brighton.ac.uk/elearning/ ___________________________________________________________ This email has been scanned by MessageLabs' Email Security System on behalf of the University of Brighton. For more information see http://www.brighton.ac.uk/is/spam/ ___________________________________________________________ -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: Screen shot 2014-01-24 at 13.02.45.png Type: image/png Size: 6449 bytes Desc: Screen shot 2014-01-24 at 13.02.45.png URL: From xerte at pgogywebstuff.com Fri Jan 24 16:54:56 2014 From: xerte at pgogywebstuff.com (Pat L (pgogy)) Date: Fri, 24 Jan 2014 16:54:56 +0000 Subject: [Xerte] Re: Preview and Publish error message In-Reply-To: References: Message-ID: Hello, Access the LO in Chrome if you can. Press f12 to open up the console Click on the network tab Some resources on the left hand side may be read - it is likely this file is missing, or the server is struggling to send it Pat On Fri, Jan 24, 2014 at 2:01 PM, Adam Bailey wrote: > Hi, > One of my students is presently creating a LO for her assessment > (submission deadline Tues 28th Jan) and when clicking on Preview, Play or > the URL for the LO to view it gets the error message attached, that reads > ERROR: The RLO file modules/xerte/pa > Has anyone come across this error before or know what might be causing the > issue? > The student has gifted the LO to me to see and I get the same error > message when trying to view it. > LO's I've created under my account and other students are creating aren't > affected. > They have also tried re-writing the LO and now has the same error, so > wondering if this is related to inserts used? > > Regards, > Adam > > Learning Technologies Adviser > 07540668611 > a.r.g.bailey at brighton.ac.uk > > https://studentfolio.brighton.ac.uk/elearning/ > > ___________________________________________________________ > This email has been scanned by MessageLabs' Email Security > System on behalf of the University of Brighton. > For more information see http://www.brighton.ac.uk/is/spam/ > ___________________________________________________________ > > 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 Fri Jan 31 09:24:34 2014 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Fri, 31 Jan 2014 09:24:34 +0000 Subject: [Xerte] Re: MP4 Test Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0CE8B0D77B@EXCHANGE1.ad.nottingham.ac.uk> Hi, I have some users struggling to encode video to play properly in all browsers on all devices. I'd really appreciate knowing if the example below works or fails on whatever deveice you happen to be reading this on: http://www.nottingham.ac.uk/toolkits/play_9569 There is only one video, if you wouldn't mind trying to play it, in particular on iPads, I'd be grateful for the info. This example is a Format Factory encoding to MP4 using AVC(H264) Thanks, Julian -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Fri Jan 31 09:21:13 2014 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Fri, 31 Jan 2014 09:21:13 +0000 Subject: [Xerte] MP4 Test Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0CE8B0D775@EXCHANGE1.ad.nottingham.ac.uk> Hi, I have some users struggling to encode video to play properly in all browsers on all devices. I'd really appreciate knowing if the example below works or fails on whatever deveice you happen to be reading this on: http://www.nottingham.ac.uk/toolkits/play_9569 -------------- next part -------------- An HTML attachment was scrubbed... URL: From N.E.Sheppard at leedsmet.ac.uk Fri Jan 31 09:31:58 2014 From: N.E.Sheppard at leedsmet.ac.uk (Sheppard, Nick) Date: Fri, 31 Jan 2014 09:31:58 +0000 Subject: [Xerte] Re: MP4 Test In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0CE8B0D775@EXCHANGE1.ad.nottingham.ac.uk> References: <12C67A1EEC419342AF5E59DA31562C3F0CE8B0D775@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <51C7E62521213341A6DDF35310AA1D573CCF806C@EXC-PUB01A.leedsmet.ac.uk> Works on mobile IE on my Windows phone (and Chrome on desktop). Nick From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 31 January 2014 09:21 To: Xerte discussion list (xerte at lists.nottingham.ac.uk) Subject: [Xerte] MP4 Test Hi, I have some users struggling to encode video to play properly in all browsers on all devices. I'd really appreciate knowing if the example below works or fails on whatever deveice you happen to be reading this on: http://www.nottingham.ac.uk/toolkits/play_9569 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. To view the terms under which this email is distributed, please go to http://disclaimer.leedsmet.ac.uk/email.htm -------------- next part -------------- An HTML attachment was scrubbed... URL: From Yvonne.Hood at nottingham.ac.uk Fri Jan 31 09:41:27 2014 From: Yvonne.Hood at nottingham.ac.uk (Yvonne Hood) Date: Fri, 31 Jan 2014 09:41:27 +0000 Subject: [Xerte] Re: MP4 Test In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0CE8B0D77B@EXCHANGE1.ad.nottingham.ac.uk> References: <12C67A1EEC419342AF5E59DA31562C3F0CE8B0D77B@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <44005B520511CA40807C5D097783A2912881BB5C67@EXCHANGE2.ad.nottingham.ac.uk> Hi Julian I've just tested it on the following: Work PC via Google Chrome: Loads the player but doesn't play (latest version of Chrome) Work PC via IE9: Works fine Home PC via Google Chrome: Works fine (latest version of Chrome) IPad i0S7 via Safari: Works fine IPad iOS7 via Google Chrome: Works fine 7" Android tablet via Google Chrome: Works fine Not quite sure what's going on with Chrome on my work PC! Let me know if I can do anything else to help. Best regards Yvonne From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 31 January 2014 09:25 To: Xerte discussion list (xerte at lists.nottingham.ac.uk) Subject: [Xerte] Re: MP4 Test Hi, I have some users struggling to encode video to play properly in all browsers on all devices. I'd really appreciate knowing if the example below works or fails on whatever deveice you happen to be reading this on: http://www.nottingham.ac.uk/toolkits/play_9569 There is only one video, if you wouldn't mind trying to play it, in particular on iPads, I'd be grateful for the info. This example is a Format Factory encoding to MP4 using AVC(H264) Thanks, Julian -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Fri Jan 31 09:43:16 2014 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Fri, 31 Jan 2014 09:43:16 +0000 Subject: [Xerte] Re: MP4 Test In-Reply-To: <44005B520511CA40807C5D097783A2912881BB5C67@EXCHANGE2.ad.nottingham.ac.uk> References: <12C67A1EEC419342AF5E59DA31562C3F0CE8B0D77B@EXCHANGE1.ad.nottingham.ac.uk> <44005B520511CA40807C5D097783A2912881BB5C67@EXCHANGE2.ad.nottingham.ac.uk> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0CE8B0D7A0@EXCHANGE1.ad.nottingham.ac.uk> Your Chrome version is Version 32.0.1700.102? How do you manage to be at home and at work at the same time ;-) From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Yvonne Hood Sent: 31 January 2014 09:41 To: Xerte discussion list Subject: [Xerte] Re: MP4 Test Hi Julian I've just tested it on the following: Work PC via Google Chrome: Loads the player but doesn't play (latest version of Chrome) Work PC via IE9: Works fine Home PC via Google Chrome: Works fine (latest version of Chrome) IPad i0S7 via Safari: Works fine IPad iOS7 via Google Chrome: Works fine 7" Android tablet via Google Chrome: Works fine Not quite sure what's going on with Chrome on my work PC! Let me know if I can do anything else to help. Best regards Yvonne From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 31 January 2014 09:25 To: Xerte discussion list (xerte at lists.nottingham.ac.uk) Subject: [Xerte] Re: MP4 Test Hi, I have some users struggling to encode video to play properly in all browsers on all devices. I'd really appreciate knowing if the example below works or fails on whatever deveice you happen to be reading this on: http://www.nottingham.ac.uk/toolkits/play_9569 There is only one video, if you wouldn't mind trying to play it, in particular on iPads, I'd be grateful for the info. This example is a Format Factory encoding to MP4 using AVC(H264) Thanks, Julian -------------- next part -------------- An HTML attachment was scrubbed... URL: From ronm at mitchellmedia.co.uk Fri Jan 31 09:45:25 2014 From: ronm at mitchellmedia.co.uk (Ron Mitchell) Date: Fri, 31 Jan 2014 09:45:25 -0000 Subject: [Xerte] Re: MP4 Test In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0CE8B0D775@EXCHANGE1.ad.nottingham.ac.uk> References: <12C67A1EEC419342AF5E59DA31562C3F0CE8B0D775@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <003601cf1e69$2b8d65c0$82a83140$@co.uk> Works on iPad and iPhone (via Safari) and all browsers on my win 7 laptop From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 31 January 2014 09:21 To: Xerte discussion list (xerte at lists.nottingham.ac.uk) Subject: [Xerte] MP4 Test Hi, I have some users struggling to encode video to play properly in all browsers on all devices. I'd really appreciate knowing if the example below works or fails on whatever deveice you happen to be reading this on: http://www.nottingham.ac.uk/toolkits/play_9569 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 J.J.Smith at gcu.ac.uk Fri Jan 31 09:45:42 2014 From: J.J.Smith at gcu.ac.uk (Smith, John) Date: Fri, 31 Jan 2014 09:45:42 +0000 Subject: [Xerte] Re: MP4 Test In-Reply-To: <44005B520511CA40807C5D097783A2912881BB5C67@EXCHANGE2.ad.nottingham.ac.uk> References: <12C67A1EEC419342AF5E59DA31562C3F0CE8B0D77B@EXCHANGE1.ad.nottingham.ac.uk> <44005B520511CA40807C5D097783A2912881BB5C67@EXCHANGE2.ad.nottingham.ac.uk> Message-ID: Hi Julian, Works for me on Chrome/Windows 7 (same version as you Yvonne??) [cid:image001.jpg at 01CF1E69.34FBA4A0] Regards, John Smith Learning Technologist School of Health & Life Sciences Glasgow Caledonian University From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Yvonne Hood Sent: Friday, January 31, 2014 9:41 AM To: Xerte discussion list Subject: [Xerte] Re: MP4 Test Hi Julian I've just tested it on the following: Work PC via Google Chrome: Loads the player but doesn't play (latest version of Chrome) Work PC via IE9: Works fine Home PC via Google Chrome: Works fine (latest version of Chrome) IPad i0S7 via Safari: Works fine IPad iOS7 via Google Chrome: Works fine 7" Android tablet via Google Chrome: Works fine Not quite sure what's going on with Chrome on my work PC! Let me know if I can do anything else to help. Best regards Yvonne From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 31 January 2014 09:25 To: Xerte discussion list (xerte at lists.nottingham.ac.uk) Subject: [Xerte] Re: MP4 Test Hi, I have some users struggling to encode video to play properly in all browsers on all devices. I'd really appreciate knowing if the example below works or fails on whatever deveice you happen to be reading this on: http://www.nottingham.ac.uk/toolkits/play_9569 There is only one video, if you wouldn't mind trying to play it, in particular on iPads, I'd be grateful for the info. This example is a Format Factory encoding to MP4 using AVC(H264) Thanks, Julian 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. Glasgow Caledonian University is a registered Scottish charity, number SC021474 Winner: Times Higher Education's Widening Participation Initiative of the Year 2009 and Herald Society's Education Initiative of the Year 2009. http://www.gcu.ac.uk/newsevents/news/bycategory/theuniversity/1/name,6219,en.html Winner: Times Higher Education's Outstanding Support for Early Career Researchers of the Year 2010, GCU as a lead with Universities Scotland partners. http://www.gcu.ac.uk/newsevents/news/bycategory/theuniversity/1/name,15691,en.html -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 23450 bytes Desc: image001.jpg URL: From ronm at mitchellmedia.co.uk Fri Jan 31 09:51:22 2014 From: ronm at mitchellmedia.co.uk (Ron Mitchell) Date: Fri, 31 Jan 2014 09:51:22 -0000 Subject: [Xerte] Re: MP4 Test In-Reply-To: <44005B520511CA40807C5D097783A2912881BB5C67@EXCHANGE2.ad.nottingham.ac.uk> References: <12C67A1EEC419342AF5E59DA31562C3F0CE8B0D77B@EXCHANGE1.ad.nottingham.ac.uk> <44005B520511CA40807C5D097783A2912881BB5C67@EXCHANGE2.ad.nottingham.ac.uk> Message-ID: <004d01cf1e6a$006aa730$013ff590$@co.uk> That's a much more detailed and better response than my previous response so to clarify. Win 7 64bit laptop works via IE Chrome Safari Firefox and Opera and as I mentioned iPad and iPhone via Safari HTH Ron From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Yvonne Hood Sent: 31 January 2014 09:41 To: Xerte discussion list Subject: [Xerte] Re: MP4 Test Hi Julian I've just tested it on the following: Work PC via Google Chrome: Loads the player but doesn't play (latest version of Chrome) Work PC via IE9: Works fine Home PC via Google Chrome: Works fine (latest version of Chrome) IPad i0S7 via Safari: Works fine IPad iOS7 via Google Chrome: Works fine 7" Android tablet via Google Chrome: Works fine Not quite sure what's going on with Chrome on my work PC! Let me know if I can do anything else to help. Best regards Yvonne From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 31 January 2014 09:25 To: Xerte discussion list (xerte at lists.nottingham.ac.uk) Subject: [Xerte] Re: MP4 Test Hi, I have some users struggling to encode video to play properly in all browsers on all devices. I'd really appreciate knowing if the example below works or fails on whatever deveice you happen to be reading this on: http://www.nottingham.ac.uk/toolkits/play_9569 There is only one video, if you wouldn't mind trying to play it, in particular on iPads, I'd be grateful for the info. This example is a Format Factory encoding to MP4 using AVC(H264) Thanks, Julian 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 Fri Jan 31 09:50:07 2014 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Fri, 31 Jan 2014 09:50:07 +0000 Subject: [Xerte] Re: MP4 Test In-Reply-To: <004d01cf1e6a$006aa730$013ff590$@co.uk> References: <12C67A1EEC419342AF5E59DA31562C3F0CE8B0D77B@EXCHANGE1.ad.nottingham.ac.uk> <44005B520511CA40807C5D097783A2912881BB5C67@EXCHANGE2.ad.nottingham.ac.uk> <004d01cf1e6a$006aa730$013ff590$@co.uk> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0CE8B0D7B8@EXCHANGE1.ad.nottingham.ac.uk> I've always worked on the basis that Format Factory, on the MP4 (H264) settings works everywhere. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell Sent: 31 January 2014 09:51 To: 'Xerte discussion list' Subject: [Xerte] Re: MP4 Test That's a much more detailed and better response than my previous response so to clarify... Win 7 64bit laptop works via IE Chrome Safari Firefox and Opera and as I mentioned iPad and iPhone via Safari HTH Ron From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Yvonne Hood Sent: 31 January 2014 09:41 To: Xerte discussion list Subject: [Xerte] Re: MP4 Test Hi Julian I've just tested it on the following: Work PC via Google Chrome: Loads the player but doesn't play (latest version of Chrome) Work PC via IE9: Works fine Home PC via Google Chrome: Works fine (latest version of Chrome) IPad i0S7 via Safari: Works fine IPad iOS7 via Google Chrome: Works fine 7" Android tablet via Google Chrome: Works fine Not quite sure what's going on with Chrome on my work PC! Let me know if I can do anything else to help. Best regards Yvonne From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 31 January 2014 09:25 To: Xerte discussion list (xerte at lists.nottingham.ac.uk) Subject: [Xerte] Re: MP4 Test Hi, I have some users struggling to encode video to play properly in all browsers on all devices. I'd really appreciate knowing if the example below works or fails on whatever deveice you happen to be reading this on: http://www.nottingham.ac.uk/toolkits/play_9569 There is only one video, if you wouldn't mind trying to play it, in particular on iPads, I'd be grateful for the info. This example is a Format Factory encoding to MP4 using AVC(H264) Thanks, Julian 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 J.J.Smith at gcu.ac.uk Fri Jan 31 09:52:51 2014 From: J.J.Smith at gcu.ac.uk (Smith, John) Date: Fri, 31 Jan 2014 09:52:51 +0000 Subject: [Xerte] Re: MP4 Test In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F0CE8B0D77B@EXCHANGE1.ad.nottingham.ac.uk> <44005B520511CA40807C5D097783A2912881BB5C67@EXCHANGE2.ad.nottingham.ac.uk> Message-ID: Also, Mac Firefox v26.0 (latest) Mac Chrome v31.0.1650.63 and on v32.0.1700.102 Mac Safari v5.1.10 (6534.59.10) Regards, John Smith Learning Technologist School of Health & Life Sciences Glasgow Caledonian University From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, John Sent: Friday, January 31, 2014 9:46 AM To: Xerte discussion list Subject: [Xerte] Re: MP4 Test Hi Julian, Works for me on Chrome/Windows 7 (same version as you Yvonne??) [cid:image001.jpg at 01CF1E6A.06FE27C0] Regards, John Smith Learning Technologist School of Health & Life Sciences Glasgow Caledonian University From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Yvonne Hood Sent: Friday, January 31, 2014 9:41 AM To: Xerte discussion list Subject: [Xerte] Re: MP4 Test Hi Julian I've just tested it on the following: Work PC via Google Chrome: Loads the player but doesn't play (latest version of Chrome) Work PC via IE9: Works fine Home PC via Google Chrome: Works fine (latest version of Chrome) IPad i0S7 via Safari: Works fine IPad iOS7 via Google Chrome: Works fine 7" Android tablet via Google Chrome: Works fine Not quite sure what's going on with Chrome on my work PC! Let me know if I can do anything else to help. Best regards Yvonne From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 31 January 2014 09:25 To: Xerte discussion list (xerte at lists.nottingham.ac.uk) Subject: [Xerte] Re: MP4 Test Hi, I have some users struggling to encode video to play properly in all browsers on all devices. I'd really appreciate knowing if the example below works or fails on whatever deveice you happen to be reading this on: http://www.nottingham.ac.uk/toolkits/play_9569 There is only one video, if you wouldn't mind trying to play it, in particular on iPads, I'd be grateful for the info. This example is a Format Factory encoding to MP4 using AVC(H264) Thanks, Julian 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. Glasgow Caledonian University is a registered Scottish charity, number SC021474 Winner: Times Higher Education's Widening Participation Initiative of the Year 2009 and Herald Society's Education Initiative of the Year 2009. http://www.gcu.ac.uk/newsevents/news/bycategory/theuniversity/1/name,6219,en.html Winner: Times Higher Education's Outstanding Support for Early Career Researchers of the Year 2010, GCU as a lead with Universities Scotland partners. http://www.gcu.ac.uk/newsevents/news/bycategory/theuniversity/1/name,15691,en.html Glasgow Caledonian University is a registered Scottish charity, number SC021474 Winner: Times Higher Education's Widening Participation Initiative of the Year 2009 and Herald Society's Education Initiative of the Year 2009. http://www.gcu.ac.uk/newsevents/news/bycategory/theuniversity/1/name,6219,en.html Winner: Times Higher Education's Outstanding Support for Early Career Researchers of the Year 2010, GCU as a lead with Universities Scotland partners. http://www.gcu.ac.uk/newsevents/news/bycategory/theuniversity/1/name,15691,en.html -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 23450 bytes Desc: image001.jpg URL: From Yvonne.Hood at nottingham.ac.uk Fri Jan 31 09:56:13 2014 From: Yvonne.Hood at nottingham.ac.uk (Yvonne Hood) Date: Fri, 31 Jan 2014 09:56:13 +0000 Subject: [Xerte] Re: MP4 Test In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0CE8B0D7A0@EXCHANGE1.ad.nottingham.ac.uk> References: <12C67A1EEC419342AF5E59DA31562C3F0CE8B0D77B@EXCHANGE1.ad.nottingham.ac.uk> <44005B520511CA40807C5D097783A2912881BB5C67@EXCHANGE2.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F0CE8B0D7A0@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <44005B520511CA40807C5D097783A2912881BB5C86@EXCHANGE2.ad.nottingham.ac.uk> Yep, that's the version of Chrome I'm running on both PCs. (It's just magic how I can be in two places at once) From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 31 January 2014 09:43 To: Xerte discussion list Subject: [Xerte] Re: MP4 Test Your Chrome version is Version 32.0.1700.102? How do you manage to be at home and at work at the same time ;-) From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Yvonne Hood Sent: 31 January 2014 09:41 To: Xerte discussion list Subject: [Xerte] Re: MP4 Test Hi Julian I've just tested it on the following: Work PC via Google Chrome: Loads the player but doesn't play (latest version of Chrome) Work PC via IE9: Works fine Home PC via Google Chrome: Works fine (latest version of Chrome) IPad i0S7 via Safari: Works fine IPad iOS7 via Google Chrome: Works fine 7" Android tablet via Google Chrome: Works fine Not quite sure what's going on with Chrome on my work PC! Let me know if I can do anything else to help. Best regards Yvonne From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 31 January 2014 09:25 To: Xerte discussion list (xerte at lists.nottingham.ac.uk) Subject: [Xerte] Re: MP4 Test Hi, I have some users struggling to encode video to play properly in all browsers on all devices. I'd really appreciate knowing if the example below works or fails on whatever deveice you happen to be reading this on: http://www.nottingham.ac.uk/toolkits/play_9569 There is only one video, if you wouldn't mind trying to play it, in particular on iPads, I'd be grateful for the info. This example is a Format Factory encoding to MP4 using AVC(H264) Thanks, Julian -------------- next part -------------- An HTML attachment was scrubbed... URL: From ronm at mitchellmedia.co.uk Fri Jan 31 10:01:31 2014 From: ronm at mitchellmedia.co.uk (Ron Mitchell) Date: Fri, 31 Jan 2014 10:01:31 -0000 Subject: [Xerte] Re: MP4 Test In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0CE8B0D7B8@EXCHANGE1.ad.nottingham.ac.uk> References: <12C67A1EEC419342AF5E59DA31562C3F0CE8B0D77B@EXCHANGE1.ad.nottingham.ac.uk> <44005B520511CA40807C5D097783A2912881BB5C67@EXCHANGE2.ad.nottingham.ac.uk> <004d01cf1e6a$006aa730$013ff590$@co.uk> <12C67A1EEC419342AF5E59DA31562C3F0CE8B0D7B8@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <006a01cf1e6b$6b3ff000$41bfd000$@co.uk> I've never found a problem with those conversion settings. When you say "some users struggling to encode video to play properly in all browsers on all devices" does your test file work for them? e.g. is the problem their conversion process, how they've added the files to the LO filenames etc, or device specific? Are they using Bootstrap too or Nottingham template? Just things I would check/clarify. Ron From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 31 January 2014 09:50 To: Xerte discussion list Subject: [Xerte] Re: MP4 Test I've always worked on the basis that Format Factory, on the MP4 (H264) settings works everywhere. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell Sent: 31 January 2014 09:51 To: 'Xerte discussion list' Subject: [Xerte] Re: MP4 Test That's a much more detailed and better response than my previous response so to clarify. Win 7 64bit laptop works via IE Chrome Safari Firefox and Opera and as I mentioned iPad and iPhone via Safari HTH Ron From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Yvonne Hood Sent: 31 January 2014 09:41 To: Xerte discussion list Subject: [Xerte] Re: MP4 Test Hi Julian I've just tested it on the following: Work PC via Google Chrome: Loads the player but doesn't play (latest version of Chrome) Work PC via IE9: Works fine Home PC via Google Chrome: Works fine (latest version of Chrome) IPad i0S7 via Safari: Works fine IPad iOS7 via Google Chrome: Works fine 7" Android tablet via Google Chrome: Works fine Not quite sure what's going on with Chrome on my work PC! Let me know if I can do anything else to help. Best regards Yvonne From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 31 January 2014 09:25 To: Xerte discussion list (xerte at lists.nottingham.ac.uk) Subject: [Xerte] Re: MP4 Test Hi, I have some users struggling to encode video to play properly in all browsers on all devices. I'd really appreciate knowing if the example below works or fails on whatever deveice you happen to be reading this on: http://www.nottingham.ac.uk/toolkits/play_9569 There is only one video, if you wouldn't mind trying to play it, in particular on iPads, I'd be grateful for the info. This example is a Format Factory encoding to MP4 using AVC(H264) Thanks, Julian 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. -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Fri Jan 31 10:06:16 2014 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Fri, 31 Jan 2014 10:06:16 +0000 Subject: [Xerte] Re: MP4 Test In-Reply-To: <006a01cf1e6b$6b3ff000$41bfd000$@co.uk> References: <12C67A1EEC419342AF5E59DA31562C3F0CE8B0D77B@EXCHANGE1.ad.nottingham.ac.uk> <44005B520511CA40807C5D097783A2912881BB5C67@EXCHANGE2.ad.nottingham.ac.uk> <004d01cf1e6a$006aa730$013ff590$@co.uk> <12C67A1EEC419342AF5E59DA31562C3F0CE8B0D7B8@EXCHANGE1.ad.nottingham.ac.uk> <006a01cf1e6b$6b3ff000$41bfd000$@co.uk> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0CE8B0D7D4@EXCHANGE1.ad.nottingham.ac.uk> I'm finding that out. Last year we had some issues. They had some videos my team had encoded for them from the Avid decks. I noticed they didn't work on Windows, so put them through Format Factory. That caused some other issue (I think it was audio synching, but without digging out the correspondence I can't remember)?), and they ended up re-encoding them back, because under that setting they worked on iPads and that was all they needed. Now those videos are being repurposed in the bootstrap template, and in garnering feedback for the new format, loads of people have started saying 'ah, doesn't work' (on Windows when I looked into it). When I looked at the video encoding settings, they were using MP4V. I would like them to use a setting that works everywhere (the FF MP4 H264 settings that we all know work everywhere) so I want to prove it. Thanks for all the input. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell Sent: 31 January 2014 10:02 To: 'Xerte discussion list' Subject: [Xerte] Re: MP4 Test I've never found a problem with those conversion settings. When you say "some users struggling to encode video to play properly in all browsers on all devices" does your test file work for them? e.g. is the problem their conversion process, how they've added the files to the LO filenames etc, or device specific? Are they using Bootstrap too or Nottingham template? Just things I would check/clarify. Ron From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 31 January 2014 09:50 To: Xerte discussion list Subject: [Xerte] Re: MP4 Test I've always worked on the basis that Format Factory, on the MP4 (H264) settings works everywhere. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell Sent: 31 January 2014 09:51 To: 'Xerte discussion list' Subject: [Xerte] Re: MP4 Test That's a much more detailed and better response than my previous response so to clarify... Win 7 64bit laptop works via IE Chrome Safari Firefox and Opera and as I mentioned iPad and iPhone via Safari HTH Ron From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Yvonne Hood Sent: 31 January 2014 09:41 To: Xerte discussion list Subject: [Xerte] Re: MP4 Test Hi Julian I've just tested it on the following: Work PC via Google Chrome: Loads the player but doesn't play (latest version of Chrome) Work PC via IE9: Works fine Home PC via Google Chrome: Works fine (latest version of Chrome) IPad i0S7 via Safari: Works fine IPad iOS7 via Google Chrome: Works fine 7" Android tablet via Google Chrome: Works fine Not quite sure what's going on with Chrome on my work PC! Let me know if I can do anything else to help. Best regards Yvonne From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 31 January 2014 09:25 To: Xerte discussion list (xerte at lists.nottingham.ac.uk) Subject: [Xerte] Re: MP4 Test Hi, I have some users struggling to encode video to play properly in all browsers on all devices. I'd really appreciate knowing if the example below works or fails on whatever deveice you happen to be reading this on: http://www.nottingham.ac.uk/toolkits/play_9569 There is only one video, if you wouldn't mind trying to play it, in particular on iPads, I'd be grateful for the info. This example is a Format Factory encoding to MP4 using AVC(H264) Thanks, Julian 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. -------------- next part -------------- An HTML attachment was scrubbed... URL: From reijnders at tor.nl Fri Jan 31 10:32:23 2014 From: reijnders at tor.nl (Tom Reijnders) Date: Fri, 31 Jan 2014 11:32:23 +0100 Subject: [Xerte] Re: MP4 Test In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0CE8B0D7D4@EXCHANGE1.ad.nottingham.ac.uk> References: <12C67A1EEC419342AF5E59DA31562C3F0CE8B0D77B@EXCHANGE1.ad.nottingham.ac.uk> <44005B520511CA40807C5D097783A2912881BB5C67@EXCHANGE2.ad.nottingham.ac.uk> <004d01cf1e6a$006aa730$013ff590$@co.uk> <12C67A1EEC419342AF5E59DA31562C3F0CE8B0D7B8@EXCHANGE1.ad.nottingham.ac.uk> <006a01cf1e6b$6b3ff000$41bfd000$@co.uk> <12C67A1EEC419342AF5E59DA31562C3F0CE8B0D7D4@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <52EB7BB7.5040405@tor.nl> Works here as well: Windows ff, IE11 and latest Chrome Android: ff, android browser, Dolphin. One anomaly, it worked on Android Chrome the second time, audio only the first time. Tom Julian Tenney schreef op 31-1-2014 11:06: > > I'm finding that out. > > Last year we had some issues. They had some videos my team had encoded > for them from the Avid decks. I noticed they didn't work on Windows, > so put them through Format Factory. That caused some other issue (I > think it was audio synching, but without digging out the > correspondence I can't remember)?), and they ended up re-encoding them > back, because under that setting they worked on iPads and that was all > they needed. > > Now those videos are being repurposed in the bootstrap template, and > in garnering feedback for the new format, loads of people have started > saying 'ah, doesn't work' (on Windows when I looked into it). When I > looked at the video encoding settings, they were using MP4V. I would > like them to use a setting that works everywhere (the FF MP4 H264 > settings that we all know work everywhere) so I want to prove it. > > Thanks for all the input. > > *From:*xerte-bounces at lists.nottingham.ac.uk > [mailto:xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Ron Mitchell > *Sent:* 31 January 2014 10:02 > *To:* 'Xerte discussion list' > *Subject:* [Xerte] Re: MP4 Test > > I've never found a problem with those conversion settings. When you > say "some users struggling to encode video to play properly in all > browsers on all devices" does your test file work for them? e.g. is > the problem their conversion process, how they've added the files to > the LO filenames etc, or device specific? > > Are they using Bootstrap too or Nottingham template? > > Just things I would check/clarify. > > Ron > > *From:*xerte-bounces at lists.nottingham.ac.uk > > [mailto:xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Julian Tenney > *Sent:* 31 January 2014 09:50 > *To:* Xerte discussion list > *Subject:* [Xerte] Re: MP4 Test > > I've always worked on the basis that Format Factory, on the MP4 (H264) > settings works everywhere. > > *From:*xerte-bounces at lists.nottingham.ac.uk > > [mailto:xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Ron Mitchell > *Sent:* 31 January 2014 09:51 > *To:* 'Xerte discussion list' > *Subject:* [Xerte] Re: MP4 Test > > That's a much more detailed and better response than my previous > response so to clarify... > > Win 7 64bit laptop works via > > IE > > Chrome > > Safari > > Firefox > > and Opera > > and as I mentioned iPad and iPhone via Safari > > HTH > > Ron > > *From:*xerte-bounces at lists.nottingham.ac.uk > > [mailto:xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Yvonne Hood > *Sent:* 31 January 2014 09:41 > *To:* Xerte discussion list > *Subject:* [Xerte] Re: MP4 Test > > Hi Julian > > I've just tested it on the following: > > Work PC via Google Chrome: Loads the player but doesn't play (latest > version of Chrome) > > Work PC via IE9: Works fine > > Home PC via Google Chrome: Works fine (latest version of Chrome) > > IPad i0S7 via Safari: Works fine > > IPad iOS7 via Google Chrome: Works fine > > 7" Android tablet via Google Chrome: Works fine > > Not quite sure what's going on with Chrome on my work PC! > > Let me know if I can do anything else to help. > > Best regards > > Yvonne > > *From:*xerte-bounces at lists.nottingham.ac.uk > > [mailto:xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Julian Tenney > *Sent:* 31 January 2014 09:25 > *To:* Xerte discussion list (xerte at lists.nottingham.ac.uk > ) > *Subject:* [Xerte] Re: MP4 Test > > Hi, > > I have some users struggling to encode video to play properly in all > browsers on all devices. I'd really appreciate knowing if the example > below works or fails on whatever deveice you happen to be reading this on: > > http://www.nottingham.ac.uk/toolkits/play_9569 > > There is only one video, if you wouldn't mind trying to play it, in > particular on iPads, I'd be grateful for the info. This example is a > Format Factory encoding to MP4 using AVC(H264) > > Thanks, > > Julian > > 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. > > > 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 -------------- next part -------------- An HTML attachment was scrubbed... URL: