Spry HTMLDataSet not displaying in GoDaddy Website Tonight

Hi,
Has anyone tried using Spry with Website Tonight?
I'm displaying a Spry HTMLDataSet on a Spry Tabbed Panel.   It's a pretty simple page - you can see it working here: http://www.bigdogrugs.com/Script/TestMDTabs.html.  The original Spry scripts are unmodified.
When I embed this code into a GoDaddy Website Tonight template, the tabbed panel works ok but the DataSet is not displaying.  You can see the result here: http://michellesirois-silver.com/Gallery.html.  The script and style tags are embedded in the HTML body vs. the head as that is a Website Tonight limitation (Website Tonight does have an option to embed script in the page head but that didn't work either.)
This may be a CSS problem.  I'm just using the default Spry MasterDetail.css and SpryTabbedPanels.css.
I'm using Spry 1.6.1 and have tested in Firefox 3.5 and IE 8.
Thanks,
Jerry

Hi Jerry,
I suspect this is a case of encountering the cross site scripting security rules.  Basically this stops you showing content from one site on another site, as it makes a user vulnerable to script from another site running in their browser.
So in your case you can't show html or xml from another site in your site. You are trying to show content from one site http://www.bigdogrugs.com/Script/Gallery.html on another http://michellesirois-silver.com/Gallery.html and the browser security models prevent this.
var dsHosta = new Spry.Data.HTMLDataSet("http://www.bigdogrugs.com/Script/Gallery.html", "Hosta");
If you place Gallery.html from bigdogrugs into http://michellesirois-silver.com/Script/Gallery.html and change the SpryHTMLDataSet reference then it should all work fine.
Regards
Phil

Similar Messages

  • My vertical Spry is not displaying properly in IE 8

    I am working on my first website using Dreamweaver CS4 and my spry is not displaying properly over my flash photo gallery.  It looks ok in Firefox (although the borders are missing on my submenu for "sheds tool list") but in IE 8 the submenus can't be seen.  How can I correct this?
    My website is www.toolshedstudio.com
    Here's my css:
    @charset "UTF-8";
    /* SpryMenuBarVertical.css - version 0.6 - Spry Pre-Release 1.6.1 */
    /* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
    LAYOUT INFORMATION: describes box model, positioning, z-order
    /* The outermost container of the Menu Bar, a fixed width box with no margin or padding */
    ul.MenuBarVertical
        margin: 0;
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        cursor: default;
        width: 10em;
        border-top-style: none;
        border-right-style: none;
        border-bottom-style: none;
        border-left-style: none;
    /* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
    ul.MenuBarActive
        z-index: 1000;
    /* Menu item containers, position children relative to this container and are same fixed width as parent */
    ul.MenuBarVertical li
        margin: 0;
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        position: relative;
        text-align: left;
        cursor: pointer;
        width: 170px;
        border-top-style: outset;
        border-right-style: outset;
        border-bottom-style: outset;
        border-left-style: outset;
        border-top-width: thin;
        border-right-width: thin;
        border-bottom-width: thin;
        border-left-width: thin;
    /* Submenus should appear slightly overlapping to the right (95%) and up (-5%) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
    ul.MenuBarVertical ul
        margin: -5% 0 0 95%;
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        position: absolute;
        z-index: 1020;
        cursor: default;
        width: 8.2em;
        left: -1000em;
        top: 0;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
    ul.MenuBarVertical ul.MenuBarSubmenuVisible
        left: 0;
    /* Menu item containers are same fixed width as parent */
    ul.MenuBarVertical ul li
        width: 8.2em;
    DESIGN INFORMATION: describes color scheme, borders, fonts
    /* Outermost menu container has borders on all sides */
    ul.MenuBarVertical
        border: 1px none #CCC;
    /* Submenu containers have borders on all sides */
    ul.MenuBarVertical ul
        border: 1px solid #CCC;
    /* Menu items are a light gray block with padding and no text decoration */
    ul.MenuBarVertical a
        display: block;
        cursor: pointer;
        background-color: #000;
        padding: 0.5em 0.75em;
        color: #CCC;
        text-decoration: none;
    /* Menu items that have mouse over or focus have a blue background and white text */
    ul.MenuBarVertical a:hover, ul.MenuBarVertical a:focus
        background-color: #33C;
        color: #000;
        font-size: 100%;
    /* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
    ul.MenuBarVertical a.MenuBarItemHover, ul.MenuBarVertical a.MenuBarItemSubmenuHover, ul.MenuBarVertical a.MenuBarSubmenuVisible
        background-color: #33C;
        color: #FFF;
    SUBMENU INDICATION: styles if there is a submenu under a given menu item
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarVertical a.MenuBarItemSubmenu
        background-image: url(SpryMenuBarRight.gif);
        background-repeat: no-repeat;
        background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarVertical a.MenuBarItemSubmenuHover
        background-image: url(SpryMenuBarRightHover.gif);
        background-repeat: no-repeat;
        background-position: 95% 50%;
    BROWSER HACKS: the hacks below should not be changed unless you are an expert
    /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
    ul.MenuBarVertical iframe
        position: absolute;
        z-index: 1010;
        filter:alpha(opacity:0.1);
    /* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
    @media screen, projection
        ul.MenuBarVertical li.MenuBarItemIE
            display: inline;
            f\loat: left;
            background: #FFF;

    Hi
    You flash movie doesn't have the parameter wmode=transparent. If  you set that, the menu bar will be on top.
    <param name="wmode" value="transparent">
    I hope this helps.
    Ben

  • On windows 7 only, ie9 and firefox 4 spry bar not displaying correctly?

    This website www.colonialstock.com does not display the spry menubar correctly.  I need it to go all the way to the right.  But when I do a view on IE8 or do the compatibility view on IE9 (which is the same as IE8) it brings the bar too far, making it fall below where it is.  I need it to work on both browsers.  The same is on firefox 4 and earlier versions.  I am guessing this is just a windows 7 issue in all.  Also on firefox when i hover on this tab issuer services> annual meeting & proxy the sub sub menu appears farther down than it should it works fine on all ie8/9 versions.  Please let me know if you have any solutions.

    See here http://forums.adobe.com/message/4002145#4002145
    Gramps

  • Firefox will not display my photo website properly nor play the music from it on my new computer. I have 2 other PCs and it works fine on those.

    Just set up a new PC and downloaded Firefox. It will not display my Zenfolio Photo website correctly nor will it play the music that accompanies the main page slideshow. I have 2 other PCs and it works fine on them. All are Windows 7 Home Premium.

    Note that there is nothing wrong with setting Flash to "Ask to Activate" and click the Lego block icon on the Navigation Toolbar to activate the Flash plugin when needed.
    You can verify on the Adobe Flash Players Test Page that the Flash plugin is working and which version you have once you have installed the plugin and checked the setting in "Firefox/Tools > Add-ons > Plugins"
    * http://www.adobe.com/software/flash/about/

  • Spry submenu not displaying in IE

    Hello,
      I just finished designing my first site with dreamweave, and am having some problems.I have read some threads and found the advice helpful to my situation, but still have a problem.
    My spry menu was not displaying in Internet Explorer when activex is was enabled.  I fixed part of the problem; the main Vertical Spry menu displays, but the submenu (for services) and the background rollover are different than what I intended (and what they are in Firefox).  Can someone point me in the right direction?  I'll upload my vertical .ccs and .js files, please let me know if you need more.
    Thanks,
    Kalyndra

    I've played around with this for a while, but I think there is something in your SpryMenuBar.js file that is not working; or, it is not uploaded to the server.
    Additionally, this declaration:
    /* Submenus should appear slightly overlapping to the right (95%) and up (-5%) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
    ul.MenuBarVertical ul
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        position: absolute;
        z-index: 1020;
        cursor: default;
        width: 150em;     /*  THIS WANTS TO BE 150px, NOT 150em but there are bigger issues (see below) */
        left: -1000em;
        top: 0;
        margin-top: -5%;
        margin-right: 0;
        margin-bottom: 0;
        margin-left: 95%;
    I recommend that you delete this SpryMenuBarVertical and all its associated files and insert it again. If you want to change things in the CSS files, do so carefully (and in the appropriate sections...layout in layout; color and fonts in their own section).
    By redoing, your submenu indicators will resume having the correct path (in your file, they are misnamed and improperly pathed), all your javascript and css files will be properly linked, etc.
    Beth

  • StageWebView does not display a https website with captive runtime library on Android

    Hi,
    I'm working on a flex app for tablets (both iOS and Android) and it does not display a particular https website in a StageWebView. The strange thing is, that this issue happens only with this url (required for Google OAuth) and if I deploy the app with a captive air runtime library.
    I see the below stack trace in the system logs:
    W/System.err(26027): java.lang.NullPointerException
    W/System.err(26027):    at java.io.File.fixSlashes(File.java:185)
    W/System.err(26027):    at java.io.File.<init>(File.java:134)
    W/System.err(26027):    at com.adobe.air.JavaTrustStoreHelper.getX509TrustManagerFactory(JavaTrustStoreHelper.java:8 1)
    W/System.err(26027):    at com.adobe.air.JavaTrustStoreHelper.getX509TrustManager(JavaTrustStoreHelper.java:110)
    W/System.err(26027):    at com.adobe.air.JavaTrustStoreHelper.enumerateRootCAs(JavaTrustStoreHelper.java:195)
    W/System.err(26027):    at dalvik.system.NativeStart.run(Native Method)
    If I deploy the same app with a shared air runtime library and no code change at all, there's no issue at all. Also no problems while debugging or executing from Flash Builder on the device.
    The issue happens only with this Google URL, it's all okay with Facebook's auth url (https://www.facebook.com/dialog/oauth).
    The device is a Samsung Galaxy Tab2 10.1 with Ice Cream Sandwich (Android 4.0) on it.
    I would appreciate any idea with this issue.
    Thanks,
    Gabor

    Updating the AIR SDK from 3.1 to 3.4 has resolved the issue.
    Too bad that this needs to be done manually as described here: http://www.flashdeveloper.co/post/10985842021/overlay-adobe-air-32-in-flash-builder-46
    Many thanks for the hint, Pata.
    Regards,
    Gabor

  • Spry data not displaying properly (IE Runtime Error)

    Built a few pages for a site using Spry to pull in some XML
    pages.
    They are supposed to update when a certain selection is
    chosen and it works flawlessly in Firefox, Opera and Safari but not
    in IE.
    IE just shows the SPRY placeholders and doesn't push any XML
    data into the fields.
    I tried to run the browser compatibility and cleaned up
    anything that may be affecting it but nothing is showing an error.
    The weird thing is, the page has a total of 585 lines but IE
    is saying there is an 'Unknown Runtime Error' on the page at Line:
    1163 Char: 4.
    does the browser continue to count lines as it pulls in
    additional information from attached files (like external css,
    javascripts, xml, etc.)?
    If so, how do I find out where the error is?
    i'm pounding my head against the wall trying to solve this,
    but i'm not having much luck.
    basically, i'm looking for two things:
    How to find the error in the code.
    How to FIX the code to work in IE.
    any help would be greatly appreciated.
    I posted this over in the DW forums, but thought it might be
    beter solved over here in the SPRY forums.
    TIA!

    quote:
    Originally posted by:
    Donald Booth
    You can't have spry:regions on <tr> or <table>
    Make sure you have then in <div>s or other tags.
    You have lots of little regions. You can have a region and a
    repeat in the same tag.
    Fix that and then try it.
    How do I use both detail regions and master regions in a spry
    div then?
    my whole problem was, I couldn't get the menu items into the
    same table as the detail regions.
    If I put the whole table into a spry detail region it would
    just read the menu items as a detail region and give me static
    data. and if I did it as a standard region, the stuff I wanted to
    update wouldn't show as a detail region.
    I tried to keep them in <span> tags within the table
    but I guess IE doesn't like that.
    When I try to insert a detail region within an already
    existing DIV tagged spry region I get the DW error "
    Spry does not support nesting of spry:region blocks.
    Obviously, I must be missing something.
    it's been a long time since I built sites from scratch
    (99-00), but because my company asked, it is now my project.
    I have to relearn stuff and am not 100% familiar w/ building
    using DIV, SPAN and CSS. I have the basics; just enough to get me
    into trouble. maybe it's time to go back through the Spry
    Handbook?

  • Follow up to .JSP page will not display on GoDaddy Linux hosting

    I think my last post got locked but I wanted to explain my reasoning (I am not trying to abuse a forum). I think forums are filled with wonderful people who may have dealt with similar issues. This is my first Java hosted project so I was just hoping someone had some insight.
    http://forums.sun.com/thread.jspa?messageID=10571512#10571512
    I am not trying to use this as a GoDaddy support forum. I have tried calling GoDaddy multiple times and they do not know why it does not work. There response is&hellip; &ldquo;we do not provide support for scripting&rdquo;. Please, correct me if I am wrong here, but the JSP file I am trying to display does not contain any scripting. Is that a true statement?
    To give an update&hellip;
    I logged in this morning and now, the JSP page displays. I was aware that GoDaddy redeploy&rsquo;s Tomcat every night at around 1:00 am Arizona time, but I am not sure why this corrected the issue.
    When I was testing locally, I could place any new JSP files in Tomcat and view it without having to do a redeploy. Why does this work differently on GoDaddy? I am assuming it has something to do with the shared hosting but I am not sure what. Does any one have any insight on this?

    Stop creating OT threads in this forum. Your question isn't related to Java programming at all. Ask the GoDaddy support.
    I'm locking this thread, and your account might get blocked if you continue to create new threads with questions that aren't related to Java.
    Kaj

  • Spry Widget not displaying properly

    Forgive me for what is, I am sure, a simple problem: I'm new to working in DreamWeaver and am making a site for a friend to teach myself. 
    I have added a vertical spry menu to my webpage.  One item from the menu has a few more specific topics and so a few more items have been added as a submenu.  I had done something that caused there to be a big space (the same height as the pop out submenu) to appear within the main menu.  I fiddled around and now seem to have changed something causing the submenu to display in the main menu along with the rest of the items. How do I make the submenu return to being invisible until the cursor is held over the specific menu item, and then pop out to the right?
    As I'm new to all of this, I'm not even entirely sure of what part of the code to show in order for someone to tell what's wrong... Hopefully this is of help.  The 5 items (Highland Cattle through to Produce) are intended to be the fly out submenu. 
    <div class="sidebar1">
        <ul id="MenuBar1" class="MenuBarVertical">
          <li><a href="#">Home</a></li>
          <li><a href="#">About Us</a></li>
          <li><a href="#" class="MenuBarItemSubmenu">Our Products</a>
            <ul>
              <li><a href="#">Highland Cattle</a></li>
              <li><a href="#">English Black Sheep</a></li>
              <li><a href="#">Rideau Arcott Sheep</a></li>
              <li><a href="#">Heritage Poultry</a></li>
              <li><a href="#">Produce</a></li>
            </ul>
          </li>
          <li><a href="#">Buying Local</a></li>
          <li><a href="#">Heritage Breeds</a></li>
          <li><a href="#">Photo Gallery</a></li>
          <li><a href="#">Contact Us</a></li>
        </ul>
      </div>
      <div class="content">
    Thanks!  Robyn

    As I'm new to all of this, I'm not even entirely sure of what part of the code to show in order for someone to tell what's wrong...
    The best approach by far is to upload a page to the web which displays the problem you're facing.
    Then post a link to that page here. A link gives us access to every file that we need to inspect.
    That way, it's quick and easy for you to post and quick and easy for us to check and diagnose with browser based troubleshooting tools and will gain many more responses here.

  • .JSP page will not display on GoDaddy Linux hosting

    Hello
    I would appreciate any help anyone can provide me. I can not get a .JSP page to display on a deluxe hosted GoDaddy account. I have tried the most basic page. Just to make sure I do not have a type-o, I even used an HTML page to direct me.
    Here is the HTML page that has the hyperlink. This page displays fine.
    <html>
    <head>
    <title>Test</title>
    </head>
    <body>
         Here is a test page
         <a href="test.jsp">Test JSP</a>
    </body>
    </html>Here is the JSP page that can not be displayed.
    <%@ page language="java" contentType="text/html; charset=ISO-8859-1"
        pageEncoding="ISO-8859-1"%>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <title>Test</title>
    </head>
    <body>
         Here is a test JSP page
    </body>
    </html>When I click on the link, I get the HTTP 400 error saying the webpage could not be found. I know the code works since I have tested it locally. Plus the code is very simple.
    I am very stumped here and have tried GoDaddy’s help multiple times. They keep telling me it is a scripting issue. I am not sure how it can be a scripting issue because there is no script here. Basically, it is an HTML page with a .JSP extension.
    If anyone can provide advice or know what is wrong, I would very much appreciate the time and knowledge!!!

    I just happened to google "godaddy jsp" and this was one of the top hits:
    [http://help.godaddy.com/topic/319/article/1583]
    I'd say they don't serve up .jsp pages by default, you have to do something to get them to serve it up.
    You know, just because it's a simple HTML page doesn't mean the server knows that. It apparantly can serve up .html and probably other static content, but a .jsp is a special animal because it could contain server-side code. Their server would need to be able to compile them and have a special handler to serve them up, just like all J2EE app servers do. Not all servers are J2EE app servers out of the box.

  • Spry menu not displaying right in IE

    Again, I am very new to Dream Weaver, I need help...IE problems...
    my site looks fine when previewing in firefox, chrome, safari, when I preview in
    IE5.2 there is a small white line appears at the top of the footer and the menu looks fine until I hover the menu bar, it stretches out of the left side-bar across the page.
    When viewing in IE on a PC laptop... it's totally mixed up!
    Can you help?

    I have had a look in IE7and IE8 and do not see any mix-up.
    Having said that, there are a number of mods in the CSS that are confusing, such as
    ul.MenuBarVertical
    margin: 0;
         padding: 0;
         list-style-type: none;
         font-size: 100%;
    cursor: default;
    width: 11.75em;
         display: inline;
    It may be best if you have a look here http://www.dwcourse.com/dreamweaver/ten-commandments-spry-menubars.php#one and compare that with your style sheet.

  • Firefox 11 do not display properly some websites

    Hello. I wold like to ask your help in setting the Firefox 11 browser for a correct dispay of my website. This is how the site looks in Firefox 11: http://transport-in-comun.ro/firefox/site-Firefox.jpg and this is how it looks in IE8: http://transport-in-comun.ro/firefox/site-IE.jpg .
    About the site: the page is written in FrontPage (I do not have many knowledge of web-design), and the photo thumbnail and text near it is put into a 796px wide tabel. For some reason, Firefox 11 "narrows" the table.
    I didn't have this kind of problems when I was using Firefox 3.6, even if I was using it under Windows 7, that had the ClearType turned on by default. After the upgrade to Firefox 11, I start having problems in the viewing the above mentioned website and other sites with similar structure. I tried to adjust the ClearType settings, but it didn't help. With ClearType disabled, the text in the site is displayed how it should be, but it's fade.
    Thank you.

    Thank you all for your fast asnwers. The "Use hardware acceleration when available" was the problem, I disabled it and I will post a message on my site about this.
    The site is on-line in the same aspect since 2005, modifiyng the whole site to fit with Firefox11's default setting is not a good option. At that moment, placing a tabel (alligned to the center of the page) and puting in it the thumbnails with links generated by ExpressThumbnailCreator, than manually adding the description in the HTML view of FrontPage was the simplyest way possible to make the site appear properly on my 800*600 px resolution I used then. Of course, I upgraded my hardware and software since then, but the site remained mostly unchanged (except the index and a few files). I know it's time for a new version of the site but... my web-design knowledges are limited to basic HTML.

  • Popup pictures are not displaying on a website. How come?

    Website has small pictures that should open in a popup to a larger one. The larger one doesn't display the picture. This works fine in Internet Explorer, so it's not the website that has the problem.

    * "Clear the Cache": Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    * "Remove the Cookies" from sites that cause problems: Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]
    * [[Troubleshooting plugins]]

  • Banners are not displaying on a website. I get a question mark instead. Only since i updated to firefox 5 about ten minutes ago. Any ideas?

    I just updated my firefox browser to firefox 5. Since then a website that i am in the process of creating, has stopped displaying banners. Instead of the advert i was expecting i get a question mark in the top left corner.

    Adbock Plus is a Firefox extension, not part of Firefox, you don't have it.
    https://addons.mozilla.org/firefox/addon/adblock-plus/
    I see two banners and they are not blocked (they are legitimate)
    "The High Street for your Desk Top" and "It's Time to go shopping"
    I see the question mark now you refer to, in IE is see
    [Like] [f] 12 likes. Sign up to see what your friends like.
    Which is something to do with FaceBook. Appears in IE9, Google Chrome, Safari, all show the Facebook thing. Opera fails big time nothing but a repeated large button (>) with an arrow.
    Might be the CSS code.
    http://jigsaw.w3.org/css-validator/validator?uri=http%3A%2F%2Fwww.jems-shopping.co.uk%2F
    also on their links test, a bad link
    404 Not Found -- Line: 21 http://www.jems-shopping.co.uk/communities/6/004/008/841/836/images/4519752934.gif

  • QuickTime Pro 7.1.3 not displaying info on websites

    Since the last security update my QuickTime Pro 7.1.3 isn't opening or displaying files/clips on websites. It just shows a big Q with a ? in it.
    I've tried uninstalling, downloading a copy of QuickTime 7, but that's not fixing it either.
    QuickTime also won't recognized my Sirius Radio
    I'm not a techie, so really plain instructions please.

    I found this posting on the boards and it DID solve my QuickTime problem. You may wish to try it. I did not need to restart my computer. I only needed to reload Flash after I made the recommended change and restart my browser. The posting was:
    mbb15
    Posts: 5
    From: New Jersey
    Registered: Nov 3, 2006
    Re: Unable to view videos
    Posted: Jan 27, 2007 9:12 AM in response to: cyzzlin
    Reply Email
    I figured it out...you will need to open quicktime.
    -go to quicktime preferences.
    -go to the browser menu
    -on the advanced settings
    -click on MIME settings
    -the Miscellaneous file settings needs to be unchecked.
    restart your computer.
    pro Mac OS X (10.4.7)

Maybe you are looking for

  • HP LJ M1415fn printing problem

    Hello, I've installed HP M1415fn printer and everything is ok. Printer prints ok, scans ok. But one problem has occurred and i can't solve it. When printing from pdf that has headers and footers, the page that is not full of text eg. has 3-4 lines of

  • Used G5...Okay for video editing???

    Hello there. I am looking to buy a Mac explicitly for video and music editing as well as perhaps Internet browsing. For now I just wanted to focus on the video editing part. Since this computer will only need to do these things for me, I will be able

  • How to create a Playlist in flash Streaming Server

    Hi all,         am new in the flash streaming server. I download the Flash streaming server and install it its work fine. I want know about the following question:           how to stream the video using playlist?           What is the format of the

  • Urgent: Protect in Trasport Request

    HI,    Wat is the purpose of <b>Protect</b> functionality for <b>transport requests</b>. In transaction SE10 if we select a modifiable request and right click on it <b>Protect</b> option is available. If we select that option a lock symbol is appeari

  • How can I reuse titles for different titels

    I would like to reuse the same titles for many/all of my videos, which naturally reside in different projects. How can I do this?