Jump to content

Graham Quince

Administrators
  • Posts

    2,046
  • Joined

  • Last visited

Everything posted by Graham Quince

  1. This tutorial shows you how to set up a redirect brick on Frog3 and set it as the default page, to log you into FrogLearn, until you're ready to switch off Frog3
  2. You can assign a forum, using a nested page, this video shows you how:
  3. Here's code i user now, with Find-and-replace in mind, replacing '_1' with new codes for each instance <style> .carousel-fade .carousel-inner .item { opacity: 0; -webkit-transition-property: opacity; -moz-transition-property: opacity; -o-transition-property: opacity; transition-property: opacity; } .carousel-fade .carousel-inner .active { opacity: 1; } .carousel-fade .carousel-inner .active.left, .carousel-fade .carousel-inner .active.right { left: 0; opacity: 0; z-index: 1; } .carousel-fade .carousel-inner .next.left, .carousel-fade .carousel-inner .prev.right { opacity: 1; } .carousel-fade .carousel-control { z-index: 2; } .carousel-inner img { max-width: 100%; height: 300px; margin-left: auto; margin-right: auto; min-width: 300px; } .carousel-arrow-left, .carousel-arrow-right { top: 50%; border: solid transparent; content: " "; height: 0; width: 0; position: absolute; pointer-events: none; border-width: 15px; margin-top: -15px; } .carousel-arrow-right { left: 35%; border-left-color: #FFFFFF; } .carousel-arrow-left { right: 35%; border-right-color: #FFFFFF; } </style> <div id="Carousel_1" class="carousel slide carousel-fade col-lg-8 col-offset-2"> <ol id="filedrop-slide-show-count_1" class="carousel-indicators"> </ol> <div id="filedrop-slide-show-img_1" role="listbox" class="carousel-inner"> </div> <!-- Left and right controls --> <a class="left carousel-control" href="#Carousel_1" data-slide="prev"> <span class="carousel-arrow-left"></span> </a> <a class="right carousel-control" href="#Carousel_1" data-slide="next"> <span class="carousel-arrow-right"></span> </a> </div> <script type="text/javascript"> $('.carousel').carousel(); var baseURL = Frog.Utilities.getBaseUrl(), // Change fileDropUuid to the UUID of your file drop widget fileDropUuid_1 = '405FA7B9200288C5F9C48F0DBDF39E050EA9502CCF1A395D'; Frog.Model .api('filedrop.get', { filedrop: fileDropUuid_1 }).done(function(filesResponse) { var $fileList_1 = $('#filelist_1'), $slideShowCount_1 = $("#filedrop-slide-show-count_1"), $slideShowImageContainer_1 = $("#filedrop-slide-show-img_1"), fileCount_1 = 0; filesResponse.data.resources.forEach(function(file, index) { // Check whether the file is one of these filetypes; Want to add more? Add to the array if (['jpg', 'jpeg', 'gif', 'png'].indexOf(file.file.ext.toLowerCase()) > -1) { //alert(file.file.uuid); $slideShowCount_1 .append( $('<li>') .attr('data-target', 'Carousel') .attr('data-slide-to', fileCount_1) .addClass(function() { if (fileCount_1 === 0) { return 'active'; } }) ); $slideShowImageContainer_1 .append( $('<div>').addClass('item') .addClass(function() { if (fileCount_1 === 0) { return 'active'; } }) .append( $('<img />').addClass('img-responsive') /* ?width=400&height=500 this addition creates a new image on your Frog server at 400 pixels wide by 500 pixels high. This prevents the gallery from serving much larger pictures than required - which can cause your Frog to slow down */ .attr('src', baseURL + '/app/file/resource/' + file.file.uuid + '?width=400&height=500') .attr('align', 'center') ) ); fileCount_1++; } }); }); </script>
  4. When you create an assignment, what actually happens if that a new site is created per student. Editing ability isn't available at the site level or assignment level because of this. One possible workaround is to create an assignment template which includes a shared folder or nested page to a common area. This way you can add resources and make changes later and include features such as a forum a school part of the assignment. i think the upcoming assign a page will make this a bit easier too
  5. It's an Ideas Portal one I'm afraid. The comments can sometimes be the obvious option, but there is no way to print them out. Text boxes and different coloured fonts can get similar results.
  6. What you need to a group of students doing a coding club, like the Judd have. Virginia there introduced me to her Y11 group who were having great fun with FrogCode
  7. Hi, I'm sorry you've seen no movement on this. Just because you haven't seen any doesn't mean it's not being considered though. I helped @gbligh with some CSS code to hide the columns in the assignment manager and my child's app. Would that be an acceptable short term fix?
  8. Yes, absolutely. if you choose to give students edit and manage rights they can change everything about the site. So, new pages, other widgets etc...
  9. Hi We haven't any PDFs, but this are the latest design screenshots: XXX is now named Collections. You will create a collection of ePortfolios The wizard has been streamlined tooL
  10. Hi Matt, Would the forum widget be what you're after here? Wach student creates their own thread and students can reply. You also get the benefit of reply counts, so you can see when a student has two replies. The whole thing is downloadable as a CSV for easy marking too.
  11. Hi Sharon, i'm sorry you feel messed around. The last two posts of mine were following consultation with a developer from the app team. Are you free for a phone call tomorrow? We have been unable to replicate this issue, as all the steps suggested have worked for us. If you can help us get to the bottom of the issue, we'll be able to identify the cause and fix it (hopefully) Graham
  12. Hi @Sharon James Can you try clearing your app cache: settings>apps>myfrog>Storage>clear data & clear cache Really sorry that you're continuing to have problems. If this doesn't work, can you trying uninstalling the app and reinstalling. Graham
  13. check out my edited code
  14. How odd. Looks like the new icons are being served in a different way. You'll have to upload this somewhere then alter the code to point to it, probably: <style> .app-sites .link-widget.staff-new-assignment { background-color:#c4eab1; } .app-sites .link-widget.staff-new-assignment:hover { background-color:#b4dca0; } </style> <div class="widget-content link-widget widget_applink staff-new-assignment" data-action="launch_quick_assign"> <div class="content-wrapper"> <div class="column link-info"> <h2 class="widget-title alone os-ellipsis">Create New Assignment</h2> <p class="description"></p> </div> </div> <div class="column widget-icon-wrapper"> <div style="width:52px; height:52px; background:url('file/asset/E3247B3B20030513F1D16F11C26BD504D4414AAC8A440A22.png')" ></div> </div> </div> <script type="text/javascript"> var $target = jQuery('[data-action=launch_quick_assign]:first'); $target.on('click', function(el, ev) { ev.stopPropagation(); el.frogui_modules_quickassign(); }.bind($target.get(0), $target)); </script> Edited to add: How about someone build this into a widget?
  15. Well that's easy, just right-click on the link, choose Inspect and the class name is in the code: ui-app-icon-markbook
  16. Hi Tom, I'm sorry, i'm out of the office today - the service desk should be able to talk you through this (I'd be putting you through to them anyway )
  17. Hi @Sharon James, I saw this problem in testing. It's a niggle for Frog3-FrogLearn schools. The hotfix going out will correct this. In the meantime, the devs tell me that if you tap the back button a couple of times it will load the app as expected. Once the hotfix in installed, you won't have this problem again.
  18. The idea is marked as 'Needs more votes', but we did implement this for Text Activities and Files Drops. I'll have a chat to some people about updating the ideas portal
  19. I'm just going through some of the older posts on the forum - sorry you didn't get a direct reply to this at the time. Hopefully, you did receive an email though. We are trying to improve our communication methods. Have you been getting the Ribbits from K.ermit? They also fire to this blog: https://ribbits.frogeducation.com/ribbits (And to Twitter - @frogeducation )
  20. Well, you've had to wait a little bit, but hopefully the new MyFrog app takes care of this for you. https://frogeducation.com/mobile
  21. Hi @clangstaff, I think we've spoken about this directly, but for everyone else's benefit, the ability to see more information with quizzes, per question answers, matrix views etc... are part of the FrogPlay / Achieve package rather than Learn quizzes. With Achieve / Play you get: A database of over 300,000 questions (written by teachers) Exam board linked quizzes for KS4 and Year 6 SATs Video tutorials for English and Maths Quiz reports - per question responses, matrix views - all exportable to spreadsheets Credit-based Games and Avatars. The more students play, they more they earn to unlock features.
  22. Hi @Sue Busher, I think for something like this: https://bootsnipp.com/snippets/featured/carousel-with-gallery-thumbs might be what you're after.
  23. I think we'd be looking code hacks for this. The new menu loads on click, so we can't use a basic append script. @Chris.Smith might have an answer, but failing that...ideas portal?
  24. Hi @clangstaff, I know we have spoken separately about this, but posting some updates here for everyone's benefit. There are a few solutions: Office356 folders are difficult to embed, although Google's are quite easy. I've written a tutorial here if that's an option: https://frog.frogcommunity.com/google_folder_html Ideally, we would have Public on the Web for Shared Folders or similar option. This idea on the ideas portal covers it: https://ideas.frogcommunity.com/ideas/FRG-I-1017 Use a File Drop widget, with the view access set to Group. The File Drop isn't the prettiest, but you can do clever things with the API: https://www.frogcommunity.com/filedrop FrogCode applications and widgets each have a resource area. You'd be able to provide access to these, although each time you added a resource, you'd have to re-deploy the app. Adding in file access is something we're keen to do. The nature of how Shared Folders are coded means that it is a bit more work than you might expect to provide external access. We're looking at a couple of solutions as part of Back to Basics, so hopefully I'll have better news soon.
  25. Adam and I have had a chat. He'll tidy up the widget and we'll shout about it when it's ready.
×
×
  • Create New...