fairm010 Posted November 13, 2013 Posted November 13, 2013 Cheers! It gets stuck on the white loading circle but if it works your end it must be something here! Matt.
fairm010 Posted November 13, 2013 Posted November 13, 2013 I get this Error: SecurityError: Error #2060: Security sandbox violation: ExternalInterface caller http://www.bbc.co.uk/emp/10player.swf?revision=18269_21576 cannot access file:///C:/Users/Administrator/Desktop/bbc.htm. at flash.external::ExternalInterface$/_initJS() at flash.external::ExternalInterface$/addCallback() at bbc.common.application.comms.jsapi::JSAPI/activateCallbacks() at bbc.common.application.comms.jsapi::JSAPI() at bbc.emp.commands.initialization::InitializeAppCommand/execute() at org.puremvc.as3.multicore.core::Controller/executeCommand() at Function/http://adobe.com/AS3/2006/builtin::apply() at org.puremvc.as3.multicore.patterns.observer::Observer/notifyObserver() at org.puremvc.as3.multicore.core::View/notifyObservers() at org.puremvc.as3.multicore.patterns.facade::Facade/notifyObservers() at org.puremvc.as3.multicore.patterns.facade::Facade/sendNotification() at bbc.emp::ApplicationFacade/startup() at EMP_Main/init() at bbc.emp.view::PreloaderFactory/init() at bbc.emp.view::PreloaderFactory/onEnterFrame()
Arthur Posted November 13, 2013 Posted November 13, 2013 Does it work without the revision bit on the end? i.e. http://www.bbc.co.uk/emp/10player.swf 1
fairm010 Posted November 13, 2013 Posted November 13, 2013 yes, but now it has the controls bar at the bottom. How would I remove this? Matt
edie209 Posted November 13, 2013 Posted November 13, 2013 Hi I thought I would just check you are placing it in "embedded html" that's how its done here and it works great.
edie209 Posted November 13, 2013 Posted November 13, 2013 Hi I thought I would just check you are placing it in "embedded html" that's how its done here and it works great. the bit on the end is alternative channels. [color=#333333] [/color]
fairm010 Posted November 13, 2013 Posted November 13, 2013 Yep its in Embedded HTML. Its as if its going to work but it sits there on the rotating buffering wheel. I have it working now using Arthurs solution and have managed to cut out the control bar. Matt
protocol Posted November 14, 2013 Posted November 14, 2013 (edited) Thanks to those who posted their code for BBC news live streaming, was struggling but got it working now. Yep its in Embedded HTML. Its as if its going to work but it sits there on the rotating buffering wheel. I have it working now using Arthurs solution and have managed to cut out the control bar. Matt What part of the HTML code controls the control bar? Does anyone know if it's possible to overlap regions? Or alternatively bring a region to "the front"? Also I have a slightly annoying issue that if I place a region in the corner it doesn't appear in the corner on the plasma screen. Another one is if I place a flash clock right on the left-hand edge on the design screen, on the plasma screen itself there is a left indent before the clock. In the properties of the region the left indent is set at 0. Edited November 14, 2013 by protocol
fairm010 Posted November 14, 2013 Posted November 14, 2013 I cant answer your other questions but I haven't turned off the control bar, just hidden it. I made sure that the entire video window was slightly taller than the Xibo region which hides it from view. Matt
protocol Posted November 14, 2013 Posted November 14, 2013 (edited) I cant answer your other questions but I haven't turned off the control bar, just hidden it. I made sure that the entire video window was slightly taller than the Xibo region which hides it from view. Matt Yeah managed to do it the exact same way myself after I'd asked the question. It's quite interesting learning what xibo is capable of. Up to now we've only ever used it for powerpoints but the display I'm working on at the moment has the day, date, and period, flash clock, weather widget, bbc news video stream, javascript quote of the day , and a bbc news RSS feed. Edited November 14, 2013 by protocol
Simcfc73 Posted November 30, 2013 Posted November 30, 2013 Just a tip.. don't upgrade to the new version yet.... its very buggy 1
protocol Posted December 4, 2013 Posted December 4, 2013 Can anyone please explain how to have two powerpoints on a loop in the same schedule? Struggling to work it out. I have created two layouts, one for each powerpoint. I've scheduled both to appear but only the one powerpoint displays. Do both need to be set as a priority? Do I need to do anything with the display order in the schedule options?
fiza Posted December 4, 2013 Posted December 4, 2013 Yeah managed to do it the exact same way myself after I'd asked the question. It's quite interesting learning what xibo is capable of. Up to now we've only ever used it for powerpoints but the display I'm working on at the moment has the day, date, and period, flash clock, weather widget, bbc news video stream, javascript quote of the day , and a bbc news RSS feed. Would be interested in seeing a photo of that layout if you wouldnt mind? Sounds interesting
protocol Posted December 4, 2013 Posted December 4, 2013 Would be interested in seeing a photo of that layout if you wouldnt mind? Sounds interesting Still work in progress but sure. Tried to blank out any information giving away the school name but nothing I can do about the background. Flash Clock Period is taken from a PHP script Weather gadget is embedded HTML BBC News feed taking from this thread BBC News RSS feed (ticker) which scrolls up the page Quote of the day is embedded html 2
fiza Posted December 5, 2013 Posted December 5, 2013 (edited) @protocol - I like it. Thats some good work! Only just started playing Xibo again after a long time. Would like to know more about the backend stuff. How have you formatted the RSS feed(ticker) to display headlines in yellow and no date? Sorry if that sounds like a dumb question but I have never played around with rss feeds. Would be interested in your PHP script if you wouldnt mind sharing? Who updates your items like the quote of the day? I need to get someone with zero IT skills to do this so need to make it as simple as possible. Edited December 5, 2013 by fiza
protocol Posted December 5, 2013 Posted December 5, 2013 @protocol - I like it. Thats some good work! Only just started playing Xibo again after a long time. Would like to know more about the backend stuff. How have you formatted the RSS feed(ticker) to display headlines in yellow and no date? Sorry if that sounds like a dumb question but I have never played around with rss feeds. Would be interested in your PHP script if you wouldnt mind sharing? Who updates your items like the quote of the day? I need to get someone with zero IT skills to do this so need to make it as simple as possible. Thanks RSS Ticker Edit timeline -> Edit [Title] [Description] <-- in white PHP script <?php date_default_timezone_set('Europe/London'); echo(''); /* print(Date("l")); echo(''); print(Date("F d, Y")); echo(''); echo(''); */ $hour=Date("G"); $minute=Date("i"); if (($hour < "8") || ($hour == "8" && $minute <= "40")) { echo("Before School"); } if (($hour == "8" && $minute > "40")) { echo("Registration"); } if (($hour == "9")) { echo("Period 1"); } if (($hour == 10)) { echo("Period 2"); } if ($hour == 11 && $minute < 20) { echo("Morning Break"); } if (($hour == 11 && $minute > 20) || ($hour == 12 && $minute < 20)) { echo("Period 3"); } if (($hour == 12 && $minute > 20)) { echo("Lunch"); } if (($hour == 13)) { echo("Period 4"); } if (($hour == 14)) { echo("Period 5"); } if (($hour == 15) || ($hour > 15)) { echo("After School"); } echo(''); ?> The quote of the day changes automatically every day using HTML script. It doesn't need updating manually each time. 1
protocol Posted March 10, 2014 Posted March 10, 2014 Has anyone managed to display channel four live on Xibo? I'm wanting to live stream the paralympic winter games but you need to sign up for an account.
budlight Posted April 11, 2014 Posted April 11, 2014 I'm using Xibo in a production environment. It displays corporate adverts, news, weather, sports, campaigns, local business information, sales statistics, urgent notices, cartoon strips, everything you can think of. It took a lot of effort and there are a few quirky bits but it works fantastic. The computers login automatically and shutdown on a schedule. - - - Updated - - - I'm using Xibo in a production environment. It displays corporate adverts, news, weather, sports, campaigns, local business information, sales statistics, urgent notices, cartoon strips, everything you can think of. It took a lot of effort and there are a few quirky bits but it works fantastic. The computers login automatically and shutdown on a schedule.
Hulbert99 Posted October 13, 2014 Posted October 13, 2014 2 questions both to @protocol ! Unless others can assist too! What size have you set your bbc news to? And would u mind me using that bit of php script? If it is ok where do i put it? I tried it in embedded HTML but it didnt work? Thanks
protocol Posted October 17, 2014 Posted October 17, 2014 2 questions both to @protocol ! Unless others can assist too! What size have you set your bbc news to? And would u mind me using that bit of php script? If it is ok where do i put it? I tried it in embedded HTML but it didnt work? Thanks @Hulbert99 Check your PM:)
barmybarmy Posted October 23, 2014 Posted October 23, 2014 @Hulbert99 Check your PM:) Can this code be used to embed in any html page? I just want bbc news on a website?
Techie-v2 Posted October 28, 2014 Posted October 28, 2014 My code for bbc has stopped working, just brings up a page saying "you need flash and java for this content", unless its a problem with the latest versions of each, Anyone else having an issue?
Nibiru Posted October 28, 2014 Posted October 28, 2014 My code for bbc has stopped working, just brings up a page saying "you need flash and java for this content", unless its a problem with the latest versions of each, Anyone else having an issue? The BBC streams were removed a few days ago.
Recommended Posts