Tree view not displaying labels

Hi,
I am trying to use the Tree component, the tree view part is
fine I can click on a folder and it expands click on the icon and
it runs the preloader (component) and displays to pic fine. What it
doesn’t do is display the text next to the folder or icon it
is just blank. I have even tried copying the gallery_tree.fla (from
\Flash 8\Samples and Tutorials\Samples\ActionScript\Galleries) and
putting it in to my project with the same problem. So below are the
xml file and the action script.
Any help is appreciated
BP
Note: I am trying to use this in _root.blank_mc.menu3 (which
is a movie clip)
XML file
<?xml version="1.0"?>
<tree>
<node label='Gallery 1'>
<node label='DCP_0730' src="images/DCP_0730.jpg" />
<node label='DCP_0731' src="images/DCP_0731.jpg" />
<node label="DCP_0732" src="images/DCP_0732.jpg" />
<node label="DCP_0733" src="images/DCP_0733.jpg" />
<node label="DCP_0734" src="images/DCP_0734.jpg" />
<node label="DCP_0735" src="images/DCP_0735.jpg" />
<node label="DCP_0736" src="images/DCP_0736.jpg" />
<node label="DCP_0737" src="images/DCP_0737.jpg" />
<node label="DCP_0738" src="images/DCP_0738.jpg" />
<node label="DCP_0739" src="images/DCP_0739.jpg" />
<node label="DCP_0740" src="images/DCP_0740.jpg" />
<node label="DCP_0741" src="images/DCP_0741.jpg" />
<node label="DCP_0742" src="images/DCP_0742.jpg" />
<node label="DCP_0743" src="images/DCP_0743.jpg" />
<node label="DCP_0744" src="images/DCP_0744.jpg" />
<node label="DCP_0745" src="images/DCP_0745.jpg" />
<node label="DCP_0746" src="images/DCP_0746.jpg" />
<node label="DCP_0747" src="images/DCP_0747.jpg" />
</node>
</tree>
Action script

anyone out there with any sugestions? the problem is in the
action script because it works on the mail time line but not in
_root.blank_mc.menu3 which is were I need it.
Action script below
var my_pb:mx.controls.ProgressBar;
var my_ldr:mx.controls.Loader;
var my_tree:mx.controls.Tree;
my_pb._visible = false;
my_pb.indeterminate = true;
my_pb.setSize(160, 30);
my_pb.source = my_ldr;
my_pb.mode = "polled";
var pbListener
bject = new Object();
pbListener.complete = function(evt
bject) {
evt.target._visible = false;
my_pb.addEventListener("complete", pbListener);
var treeDP_xml:XML = new XML();
treeDP_xml.ignoreWhite = true;
treeDP_xml.onLoad = function(success:Boolean) {
if (success) {
my_tree.dataProvider = this.firstChild;
treeDP_xml.load("gallery_tree.xml");
var treeListener
bject = new Object();
treeListener.change = function(evt
bject) {
var treeNode:XMLNode = evt.target.selectedItem;
if (treeNode.attributes.src != undefined) {
my_pb._visible = true;
my_ldr.load(treeNode.attributes.src);
my_tree.addEventListener("change",treeListener);
stop();

Similar Messages

  • Query on SQL Developer Connections Tree Does Not Display Objects

    Hi Gurus, Could you please clarify on the below. As per the note ID 1458753.1, SQL Developer Connections Tree Does Not Display Objects to user in order to access database objects outside the owned schema/account. ------------------------- By default, and without granting wide privileges such as DBA, a user will only see his or her own objects in the first level object nodes under their connection.  Objects in other schemas must be accessed via the Other Users node under the connection. This is the intended functionality/display in SQL Developer. ------------------------- Is there any other way we can achieve this? Requirement is very common - user A owns all objects and user B granted read/read-write privileges on user A objects. Now user B wants to Display user A objects in the corresponding objects node of SQL developer. Could any one shed some light here? Thanks Venu

    First off, there is a dedicated SQL Developer forum where lots of the developers hang out. Those folks are way more knowledgable that we are about the tool.
    That said, I have no problem displaying dates. Do you just have a problem with this particular query/ field/ table? Or does it affect all dates? What version of SQL Developer are you using? 1.1 is out now.
    Justin

  • Webi Page View Not Displaying Page Size Correctly.

    Hi Everone,
    I have an issue with one report where the page size sttings do not translate when viewed in HTML Page View.
    Figure one is the report as seen in the editor - as you can see the page is displayed correctly - A4 Portrait:
    And, when the report is viewed in PDF mode - again, no issues:
    But when viewed in HTML page view - it blows out the width of the page:
    Now this report, as far as I can tell, is set up no differently than 6 others that are designed to be printed as PDF, all of which do not display this behaviour.
    We design them to be printed as PDF but present them to the user in HTML Page view in order to allow injected JavaScript’s in the report to be run. This does not happen when you jump directly into PDF mode.
    I have checked in design view and I don't have any wayward report elements pushing out the width and the PDF renders correctly which would not happen if there were hidden elements causing issues, it would render a bunch of blank pages.
    So, I am at a loss. The page view is correct in edit mode and in PDV view mode but not in HTML page view. Has anyone else had this issue? I can’t work out why this happens only in one report when all the others work properly.
    HELP!!!
    - Nick

    Hi,
    I think it may be <div class="html5gallery-viral-0"> (contains the social media buttons) // screencasteu.worldsecuresystems.com/AP/2013-08-01_1033.png
    It's the only element that isn't in sync with the other elements on page, when compared to home.html for example.
    Kind Regards,
    Alex Pavelescu

  • [Win/CS3] Problem with tree view nodes display In Release Version of InDesign

    b [Win/CS3]
    Hi All,
    I am Facing a problem from last few days.I have a dialog on which i have a treeview ListBox.I am filling this listBox dynamically.On a Button click Event.
    My requirement is to show Some text value on the node and Index value on the back end.So When i select String1 the index1 should be Selected.
    b This Listbox is working fine ON Debug Version. But Crashing On Release Version.That seems Strange to me..........?????????
    b in DialogObserver::Update on button click event
    NodeID node = IDCGridNodeID::Create(IndexX);
    treeMgr->NodeAdded(node);
    b and in TreeviewMgr::ApplyDataToWidget
    TreeNodePtr<IDCGridNodeID> nodeID(node);
    PMString IndexNo= nodeID->GetName();
    I am going to database and retrieving string value according to that
    IndexNo.
    WCHAR Buf[200];// this contains value retrieve from database
    Then i am converting WCHAR[] to CHAR[] BY using
    size_t origsize = wcslen(Buf) + 1 ;
    const size_t newsize = 100;
    size_t convertedChars = 0;
    char nstring[newsize];
    wcstombs_s (&convertedChars, nstring, origsize, buf, _TRUNCATE);
    PMString StringToDisplay(nstring);
    //Till here its working fine
    But when i am setting this value as Node name
    style.Translate();
    setNodeName( widgetList, StringToDisplay, kIDCTVTextWidgetID );
    and function return kTrue; statement executed The application is crashing.
    With error showing
    b INdesign Encountered a problem Needs to close.
    I Am not able to find out why this is not working on Release while it is working fine on debug version..???????????????????
    Is I am missing or Made some changes For release version..????
    Thanks,

    Hi Michael,
    Thanks for your reply.
    The lines
    NodeID node = IDCGridNodeID::Create(IndexX);
    treeMgr->NodeAdded(node);
    are working fine for Both Debug N Release version.The Application Is crashing In tree view manager class as i explained.
    while it works fine without having even a single warning in debug version.
    I read the document and i find out if i want to add node in treeview i have to call
    treeMgr->NodeAdded(node);
    which will call manager
    b and in TreeviewMgr::ApplyDataToWidget
    i am getting my node name as
    TreeNodePtr<IDCGridNodeID> nodeID(node);
    PMString IndexNo= nodeID->GetName();
    I don't think that something is wrong in this but i am not sure becoz i am new in indesign development.
    for adding nodes i referred the SDK examples.I found the same code for adding.

  • Report Viewer not displaying on deployment server

    Hi,
    I am using Visual Studio 2010 with the crystal reports down load to use the viewer. I am using version 13.0.2 with SP1. I have the redistributable package installed on the windows server 2003(32-bit) with .NET Framework 4 where the web app is being deployed. The problem that I am having is that the report view isn't displaying, although it appears that the report itself is being processed. It all works on my development machine which is running windows 7 enterprise(64-bit) with .NET Framework 4. I have been reading through where other people have had problems getting parts of the view to display, like the buttons or charts, but my problem is that the viewer doesn't show up at all. I am not sure why this is happening but I think that it has something to do with the application not know where to look for the viewer dlls or something.
    Any help that people can give me would be very much appreciated. Also let me know if I have put this in the wrong spot.
    Thank you in advance.
    Mark.
    Edited by: Mark Witte on Jun 22, 2011 10:14 PM

    See the following articles. I suspect you are using a custom website and thus as you suspect, the CR engine has no idea where to find the viewer. Forget about red x in the articles, just read up on how to configure custom web site. Also, the article does not go as far as CRVS2010, so the directories are a bit different, but the ideas are the same.
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/a0437ea8-97d2-2b10-2795-c202a76a5e80
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/50aa68c0-82dd-2b10-42bf-e5502b45cd3a
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup
    Got Enhancement ideas? Try the [SAP Idea Place|https://ideas.sap.com/community/products_and_solutions/crystalreports]

  • Design View Not Displaying Pages with any Formatting

    I asked this question in another thread and somebody locked it.  The question is not answered.  My Design view is not displaying my files with any formatting.  I can view them in a browser, but not in Design view where I can see my work as I'm working.  While I can upload files to the remote server (host provider) the links got screwed up so files on the remote server don't show any formatting either.  Every link, thousands of links, are off by one word (folder) from where my site was residing on my hard drive.  When I try to make a change to the links manually then I can no longer view them with any formatting in my own browser either.
    On my local broswer on my PC the address line reads: http://localhost/folderNameIneedToDelete/filename.php
    On the live website (for my homepage) the address line reads http://websiteName.com/folderNameIneedToDelete/index.html
    (Here is the text from another thread that was improperly locked)
    I just added a remote server to my site so I could begin uploading files to my host provider.  When I saved the setup I saw a message popup about the cache changing.  Now when I try to view a file in Dreamweaver in Design View it doesn't recognize any of the external style sheets.  It displays with no formating.
    I can still view the pages in a browser and they look appropriate, just not in Design View where I can continue working on the site as I've been doing.
    How do I get Design View to display my pages properly again using the .css pages that apply to each page design?
    Thanks,
    Robert

    Murray, thanks for all your assistance.
    Before I edit thousands of links again I want to confirm I've interpreted all your info correctly.  If I setup everything as follows all my pages should work in Design View, browsers accessed from the "Preview/Debug in browser" icon in Dreamweaver and most importantly in a live environment at a host provider:
    Site Setup
    Site - Site Name:  anything including spaces
    Site - Local Site Folder:  C:\wamp\www\rootfoldername\
    Servers - Testing Server (Testing: checked)
    Server Name:  Testing Server
    Connect Using:  Local/Network
    Server Folder:  C:\wamp\www\rootfoldername\
    Web URL:  http://localhost/rootfoldername/
    Remote Server - Maintain synmchronization information:  checked
    Remote Server - Automatically upload files to server on Save:  unchecked
    Remote Server - Enable file check-out:  unchecked
    Testing Server - Server Model:  PHP My SQL
    Version Control - Access:  None
    Advanced Settings - Local Info - Default Images Folder:  C:\wamp\www\rootfoldername\_images\
    Advanced Settings - Local Info - Links relative to:  Document
    Advanced Settings - Local Info - Web URL:  http://sitename.com/
    Advanced Settings - Local Info - Case-sensitive links checking:  unchecked
    Advanced Settings - Local Info - Enable Cache:  checked
    Advanced Settings - Cloaking - Enable Cloaking:  checked
    Cloak files ending with:  unchecked
    Advanced Settings - Design Notes - Maintain Design Notes:  checked
    Advanced Settings - Design Notes - Enable Upload Design Notes for Sharing:  unchecked
    Advanced Settings - File View Columns - Name:  Built In - Show
    Advanced Settings - File View Columns - Notes:  Built In - Hide
    Advanced Settings - File View Columns - Size:  Built In - Show
    Advanced Settings - File View Columns - Type:  Built In - Show
    Advanced Settings - File View Columns - Modified:  Built In - Show
    Advanced Settings - File View Columns - Checked Out By:  Built In - Show
    Advanced Settings - Contribute - Enable Contribute compatibility:  unchecked
    Advanced Settings - Templates - Don't rewrite relative document paths: checked
    Advanced Settings - Spry - Asset Folder:  C:\wamp\www\rootfoldername\SpryAssets\
    Site File Structure - place files in the following folders:
    C:\wamp\www\rootfoldername
    webpages (html & php)
    _images  - [folder] (there are numerous image folders beginning with _images) containing .jpg and .png files
    _includes - [folder] containing attached .php files for the header, navigation and footer attached to every page
    _scripts - [folder] containing .js script files
    _styles - [folder] containing .css files (external style sheets)
    Connections - [folder] contains one php file (databasename.php)
    SpryAssets - [folder] containing system generated .js files .css files and .gif files
    ZendFramework - [folder] - I have no idea if the files in this folder are necesary and why it was placed here many months ago
    ** Links **
    Remove the leading / from every link in every file
    HTML5 shiv
    using an external link will always reflect the latest changes(Question) - If I link to this .js file externally at google instead of linking to a current copy in my _script folder could future changes to this external .js file cause future problems with the webpages that have this file attached?
    Remote Server
    Setup a remote server using the ftp address settings provided by the host provider.  (Question) Any settings defined for the future Remote Server (the first remote server was deleted when problems occured) will not cause any harm to anything involving the Testing Server such as viewing webpages in Design View, browsers accessed from the "Preview/Debug in browser" icon in Dreamweaver and will not cause any harm to any files eventually put to the host provider via that future Remote Server. Is that correct?
    Murray, thanks again for your help,
    Robert

  • The left navigation pane (index tree) is not displaying in last  Google Chrome version (Version 28.0

    I'm publishing my RoboHelp 9 projects in IIS (Windows Server) and the index tree is gone if I open them in Chrome version 28.0.1500.72 m
    If I apply the fix (WebHelp TOC does not display using Google's Chrome Browser) suggested here http://www.grainge.org/pages/snippets/snippets.htm#browsers
    it looks like it fixes the problem for European languages but it breaks the search functionality for Asian languages.
    Any idea?
    Thank you

    The fix does say it is only for Rh7.
    Could it be like Item 6 at http://www.grainge.org/pages/snippets/snippets.htm#webhelp. You haven't said if the problem is only with Chrome.
    Try publishing from the sample projects. That will identify whether it is a general or project issue.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Design View not displaying properly

    I am pretty new to Dreamweaver.  I can't get my Design view to display properly, even when tried on two different computers.  The top div displays properly, then on the nav bar, only the background shows with the table items just listed in a row.  There are a lot of black background segments to the page, and thin yellow lines.  The main content shows at the bottom after a big chunk of black background blocks.  The page shows perfectly fine in a browser.  I can only work in Code view because of this.  Any suggestions?
    If it helps, here is my html:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>dentonquiltguild</title>
    <link href="includes/gallery.css" rel="stylesheet" type="text/css" />
    <link href="dqgfinal_styles.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <div id="wrapper">
    <!--[if lte IE 6]>
    <![endif]-->
    <style type="text/css">
    </style>
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    <script type="text/javascript">
    function MM_swapImgRestore() { //v3.0
      var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    function MM_findObj(n, d) { //v4.01
      var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
        d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
      if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
      for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
      if(!x && d.getElementById) x=d.getElementById(n); return x;
    function MM_swapImage() { //v3.0
      var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
       if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
    </script>
    <div id="top">
      <div id="logotemp"><img src="images/logo.gif" width="280" height="175" alt="logo" /></div><!--logotemp -->
      <div id="quilt_top"><img src="images/quilt_top_01.png" width="550" height="209" alt="quilt top" /></div>
    </div><!--top --> 
    <div id="navbar">
       <ul id="MenuBar2" class="MenuBarHorizontal">
         <li><a href="index.html"><a href="index.html" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('Image8','','images/homered_03.gif',1)"><img src="images/homewhite_03.gif" alt="home button" name="Image8" width="101" height="43" border="0" id="Image8" /></a> </li>
         <li><a href="general.html" class="MenuBarItemSubmenu"></a><a href="general.html" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('Image9','','images/generalred_03.gif',1)"><img src="images/generalwhite_03.gif" alt="general button" name="Image9" width="101" height="43" border="0" id="Image9" /></a>
           <ul>
             <li><a href="meetings.html">Meetings</a></li>
             <li><a href="showandtell.html">Show &amp; Tell</a></li>
             <li><a href="library.html">Library</a></li>
             <li><a href="blogs.html">Blogs</a></li>
        <li><a href="retreat.html">Retreat</a></li>
           </ul>
         </li>
         <li><a class="MenuBarItemSubmenu" href="members.html"></a><a href="members.html" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('Image10','','images/membersred_03.gif',1)"><img src="images/memberswhite_03.gif" alt="members button" name="Image10" width="101" height="43" border="0" id="Image10" /></a>
         </li>
         <li><a href="community.html" class="MenuBarItemSubmenu"></a><a href="community.html" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('Image11','','images/communityred.gif',1)"><img src="images/communitywhite_03.gif" alt="community button" name="Image11" width="101" height="43" border="0" id="Image11" /></a>
           <ul>
             <li><a href="kidskwilts.html">Kids Kwilts</a></li>
             <li><a href="storybooks.html">Storybooks</a></li>
             <li><a href="sowinghope.html">Sowing Hope</a></li>
           </ul>
         </li>
         <li><a href="contacts.html" class="MenuBarItemSubmenu"></a><a href="contacts.html" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('Image12','','images/contactsred_03.gif',1)"><img src="images/contactswhite_03.gif" alt="contacts button" name="Image12" width="101" height="43" border="0" id="Image12" /></a>
           <ul>
             <li><a href="board.html">Board</a></li>
             <li><a href="bees.html">Bees</a></li>
             <li><a href="resources.html">Resources</a></li>
             <li><a href="shops.html">Shops</a></li>
             <li><a href="guilds.html">Guilds</a></li>
           </ul>
         </li>
       </ul>
    </div><!--navbar -->
    <div id="quilt_bottom"><img src="images/quilt_bottom_02.png" width="550" height="128" alt="quilt bottom" /></div>
    <div id="maintemp">
      <div id="next">
      <div id="next_meeting_text">
        <div align="center">Next Meeting<br/> March 15
          </div><!--center -->
      </div><!--next_meeting_text -->
      <div><!--speaker_text -->
        <div  align="center"><a href="http://americanjane.com" id="speaker_text">Sandy Klop<br/>"American Jane"</a></div><!--align -->
      </div><!--speaker_text -->
      <div id="calendar_button">
        <div align="center"><a href="calendar.html" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('Image6','','images/calendar_ro_03.gif',1)"><img src="images/calendar_03.gif" alt="calendar button" name="Image6" width="136" height="54" border="0" id="Image6" /></a></div>
      </div><!--calendar_button -->
      <div id="events_button">
        <div align="center"><a href="events.html" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('Image7','','images/events_ro_03.gif',1)"><img src="images/events_03.gif" alt="events button" name="Image7" width="136" height="54" border="0" id="Image7" /></a></div>
        </div><!--events_button -->
    </div><!--next -->
    <div id="main_head">Welcome To The <br/>Denton Quilt Guild</div><!--main_head -->
    <div id="main_text">
          We are a group of over 200 quilters creating everything from traditional quilts, to art quilts, and everything in between.  New members and visitors are always welcome to our meetings on the 3rd Thursday of each month.<br />
          The Denton Quilt Guild provides a service to the local community by providing quilts to children in need, offering our Storybooks and Quilts To Go to our local schools, and participating in local events such as the Storytelling Festival.  Quilters of all levels are welcome!
          </div><!--main_text -->
        <div id="bottom">
        <div id="copyright"><img src="images/copyright.gif" width="127" height="8" alt="copyright" /></div><!--copyright --> 
        <div id="facebook"><a href="http://www.facebook.com/groups/42514709926/"><img src="images/facebook.gif" width="112" height="45" alt="facebook" /></a></div>
      </div>  
    </div>
    </div><!--maintemp -->
    </div><!--wrapper -->
    <script type="text/javascript">
    var MenuBar2 = new Spry.Widget.MenuBar("MenuBar2", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    </script>
    </body>
    </html>

    I still cannot solve this problem.  Can ANYONE out there help, or tell me where I can find the answer.  Now I will attach two screen shots of what my Design View looks like.  It happens on all pages I have created.  I do like working in  code view, but there are times when it's easier, almost essential for me to work in Design view.  If it works for some people, why not me?
    These images are the top and then the bottom of the same page.  I have turned CSS rendering on and off, but nothing helps.

  • Preview and Generate view not displaying the same as design view

    RoboHelp HTML Ver 8.0.2.208.
    Hi all,
    I have a topic that will not generate or preview what is displayed in the design view.
    The topic is a table that uses a different image as the background for each cell (from the CSS).
    The background images display fine in design view but will not display when previewed or generated. Everything else is displayed but not the backgrounds.
    Any ideas.
    Thanks
    Wowronin

    You have this -
    </head>
    <script>
    <!--
    function msgopen(url, name, w, h)
    w += 32;
    h += 96;
    var win = window.open(url,
      name,
      'width=' + w + ', height=' + h + ', ' +
      'location=no, menubar=no, ' +
      'status=no, toolbar=no, scrollbars=yes, resizable=yes,screenX=2,screenY=2,left=100,top=100,');
    win.resizeTo(w, h);
    win.focus();
    // -->
    </script>
    <style type="text/css">
    #preloader  {
         position: absolute;
         top: 0;
         left: 0;
         right: 0;
         bottom: 0;
         background-color: #fefefe;
         z-index: 99;
        height: 100%;
    #status  {
         width: 200px;
         height: 200px;
         position: absolute;
         left: 50%;
         top: 50%;
         background-image: url(ajax-loader.gif);
         background-repeat: no-repeat;
         background-position: center;
         margin: -100px 0 0 -100px;
    </style>
    <body>
    In other words, you have a script block AND a CSS block between </head> and <body>. That's invalid code. Move it to where it belongs inside the <head> region.  You could have found this in an instant by checking the page here - http://validator.w3.org.

  • Design view not displaying but code view is ok

    Hi Everyone,
    my design view in dreamweaver cs5.5 is not displaying anything but all the code is there and my page online is working fine http://www.exclusivewindowtint.com.au/car-window-tinting.html
    How can i fix this as easy as possible? this is only happening to this one page on my website.
    Thank You
    George

    I have to second  Murray on this.
    I will go a step further and say ignoring errors on your site because someone else's site has some is extremely poor advice, especially considering the volume of people visiting this forum alone with a random display problems that are solved by simply correcting the errors found in the validators.
    Restoring from a backup may work this time, but why did it work? That's where validation, and understanding what the validator is telling you, pays off. You somehow inadvertantly mangled your table code, will that ever happen again? What happens if your backup also has the same mangled code next time?
    Some validation errors are never going to affect display and can be completely ignored from a "how does this affect my design" point of view, like missing an alt attribute on an image for instance. Others, like missing or improperly nested html elements, can kill your design in browsers or rendering engines that can't handle major errors (like most versions of IE or DW's Design View) while everything looks fine in a browser better programmed to handle problems (like Chrome or Firefox).
    Bottom line is, the validators are extremely useful tools, do not ignore the  error report unless you understand which errors can be ignored.

  • Web Page Tree View Not Working for One Client

    Hello all,
    I have one client who is suddenly having problems with the "Tree View" in Web Pages. He clicks it and nothing happens, so he can only view pages by List View. Also, when he clicks the pagination at the bottom of List View, nothing happens. However, he can still use the Next/Previous and First Page/Last Page arrows - they work, but it takes forever to find a page since it's a very large site.
    He logged in on a co-worker's computer, and did not have the problem. He's running Windows XP, and it happens in both FF & Chrome. He updated flash and java, and disabled all his extensions and it still caused the problem.
    Has anyone else seen this? I'm at a loss as to what to do. He's the only one within the organization that is having this problem, and of course, he's the one who uses ABC the most. He's super frustrated.
    Thanks!

    Okay, it turns out the problem is when the client is logged in in French. When he switches his account to English, the problem goes away. When he logs in on his computer with a co-workers username, it works in English, but not in French. When he logs in at the co-worker's computer with either his or her username, same thing - it works in English, but not in French.
    So, there is something wrong with French UI.

  • USF on iTunes U collections such as Sustainability and iteach Initiative are not displaying new items even days after they are uploaded to the collections. The items show in the Preview of the collections but not Live view. not displaying

    USF on iTunes U collections such as Sustainability and iteach Initiative are not displaying new items even days after they are uploaded to the collections. The items show in the Preview of the collections but not Live view. not displaying

    Greetings;
    This seems to an ongoing issue (see related discussion link).  We've been experiencing the same update lag since last Friday.  The new additions to the Collection appear and are accessible in both the iPad and iPhone applications, but even though they additions appear in "Quick View", the material doesn't appear in the Collection itself.  Apple is aware of the issue and is investigating.  All the best...
    Syd Rodocker
    Tennessee State Department of Education
    https://discussions.apple.com/message/15461971#15461971

  • Problem with "Group By" in Views - Not Displaying the Same for All Users

    We have an Announcements List with its only View being set up to group by a metadata category field. We've done this many times on other kinds of lists and never had a problem. But with this list, about half the users can see only the ungrouped
    set of announcements, whereas others actually see the items within their groups.
    Those with "View" rights only can't see the grouped items - but that appears to be a coincidence as I promoted them to the same rights as others who can see them correctly, and that did NOT solve the problem. Everyone is using the exact same browser.
    Note: the users who do NOT see the groupings see only a single category entry that displays only the name of the category list (but not the names of the actual categories within the category list). All the announcements are grouped under that one
    entry for those users. This display looks exactly like it would if the categories had been left blank when the original announcements were created. But the categories are NOT blank, and the rest of the users can see them just fine, and the announcements display
    within their appropriate groups.
    I can't find anything in the View, the List Settings, or the User Permissions to explain this. What could be causing it, and how can I fix it?

    Browser settings are controlled by central IT and are all identical. 
    The only difference I can detect is the second set of users (that don't see the category options) have only Read rights, whereas those with Contribute (or above) rights can see the categories. It doesn't make
    sense that permissions would affect this, but I can't come up with any other differences.
    Microsoft will not allow me to upload images. it says I can't upload images until they have verified my account, but there is no clue as to how, if or when that might happen. If you can tell me how to fix that, I can provide samples.

  • Built in viewer not displaying XML report

    we are working on a test system that was originally developed elsewhere, using TestStand 4.0. It is generating XML report files, but not using the default NI schema, instead using both it's own 'custom' schema and reportgen sequence file for the report formatting. When it was running in TS 4.0, it all appeared to operate correctly, i.e. once the execution had come to an end, the built in TS viewer showed the XML file formatted correctly as defined in the XSL file.
    For a variety of reasons, we have needed to upgrade to TS 4.2.1, and as a result, the built in report viewer no longer displays the XML report at teh end of an execution. Instead, it shows an error ...
    'The XML page cannot be displayed
    Cannot view XML input using style sheet. Please correct the error and then click the Refresh button, or try again later.
    XML document must have a top level element. Error processing resource 'file:///C:/<file_path>/TempReport.xml'
    Looking in the <file_path>, there is a TempReport.xml file, which is empty, hence the error message, but there is also the correct xml file, with data in. Clicking on the 'Viewer' button in the built in report viewer kicks off IE, which correctly shows the saved report file, complete with the formatting as defined in the xsl file, so it would appear that the custom reportgen sequence is still doing it's job correctly, just that the built in viewer has a problem... (Incidentally, if you try to refresh the viewer, as suggested in the error message, it brings back the same error, but repetatively creates a new TempReport file, with a number appended...)
    I've traced through the sequence model (this is the default model) and the tempReport file is only created when the sequence model finishes, (In fact checking the value of the Locals.ReportFilePath variable right at the end of the sequence model shows the correct filename...) suggesting that it is not a sequence problem, but rather something built into TS? (I saw some comment on another forum entry suggesting that a temp file is created when using IE as an external viewer, to prevent a memory leak)
    Realistically this is not a major problem, but it has got to the level of annoying now, having to open an external viewer even though the built in one is loaded by default... I'm guessing that the built in viewer is just a simple browser? if so, why is it being passed the wrong file/creating an empty xml file. If I set the report back to standard xml, I see the report ok, but without the formatting.
    It seems odd that this breaks in TS 4.2.1 but works fine in 4.0, when TS is meant to be backwardsly compatible
    Any ideas would be gratefully received...

    Thanks for the suggestion Anand... As it turns out, you were very nearly right. It turned out that it wasn't actually the stylesheet path that was causing the error, but instead the original developers had over-ridden the use of the standard NI xml report handler sequence to use one of their own, by setting the ReportOptions.format to a different name from xml. In the Setup Reports Display sequence call (uses a sequence in the modelsupport.seq file) there was a pre-condition on the format name, and as it no longer contained just xml, the precondition failed, and the sequence call that sets up temporary paths etc. never ran. I added an additional precondition state, to check for either xml, or the format used in this case, and everything sprung back into action. I'm not sure whether something similar was done previously in TS 4.0...
    Is there a list of these known problems in TS 4.2.1? I did look around the NI site a bit before posting the initial question, and didn't see anything that seemed to detail this...
    Once again, thanks for your assistance

  • DW design view not displaying CSS correctly

    Hello,
    I am having a problem using the position:relative CSS. I've
    created a simple page that has 3 div tags. Below is the code:
    <body>
    <div id="headerleft"><img src="/images/header.gif"
    width="303" height="120" /></div>
    <div id="headerright">Right Side</div>
    <div id="toplinks">
    <a href="www.google.com">Link 1</a> |
    <a href="www.google.com">Link 2</a> |
    <a href="www.google.com">Link 3</a> |
    </div>
    </body>
    Below is my CSS code:
    #headerleft {
    position: relative;
    z-index:2;
    margin-bottom:-40px;
    float:left;
    #headerright {
    float:right;
    #toplinks {
    position: relative;
    z-index:3;
    text-align:center;
    clear:both;
    What this page does is shows a image in the top left corner.
    In the top right the phrase "Right Side". Then my third div
    'toplinks' displays a bunch of links. Since my headerleft id has
    margin-bottom:-40px, I need to use z-index and position:relative so
    that my links are shown above the headerleft id.
    I publish the page and view it in IE and everything works
    fine. However, in Design View in DW my toplinks div is displayed
    right under the rightheader id. For some reason it's not being
    displayed under the left and right floats(headerleft and
    headerright id's). Not sure why because I have 'clear:both' set for
    that div's CSS.
    I take the position:relative out of the toplinks id, and
    everything looks fine in DW. My toplinks id then drops under the
    both headerleft and headerright. However, when I view this is IE
    then the links on the left are no longer active. I guess because
    z-index needs position:relative to work?
    Anybody have any suggestions?
    Thanks

    I'm not sure what you are trying to accomplish, but try this
    much simpler
    and less convoluted code -
    <style type="text/css">
    <!--
    #headerright {
    float:right;
    #toplinks {
    text-align:center;
    width: 300px;
    float: right;
    -->
    </style>
    </head>
    <body>
    <div id="headerleft">
    <div id="toplinks"> <a
    href="www.google.com">Link 1</a> | <a
    href="www.google.com">Link
    2</a> | <a href="www.google.com">Link
    3</a> | </div>
    <div id="headerright">Right Side</div>
    <img src="/images/header.gif" width="303" height="120"
    /> </div>
    </body>
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "esuweb" <[email protected]> wrote in
    message
    news:[email protected]...
    > Hello,
    > I am having a problem using the position:relative CSS.
    I've created a
    > simple
    > page that has 3 div tags. Below is the code:
    >
    > <body>
    > <div id="headerleft"><img
    src="/images/header.gif" width="303"
    > height="120"
    > /></div>
    > <div id="headerright">Right Side</div>
    > <div id="toplinks">
    > <a href="www.google.com">Link 1</a> |
    > <a href="www.google.com">Link 2</a> |
    > <a href="www.google.com">Link 3</a> |
    > </div>
    > </body>
    >
    > Below is my CSS code:
    >
    > #headerleft {
    > position: relative;
    > z-index:2;
    > margin-bottom:-40px;
    > float:left;
    > }
    >
    > #headerright {
    > float:right;
    > }
    >
    > #toplinks {
    > position: relative;
    > z-index:3;
    > text-align:center;
    > clear:both;
    > }
    >
    > What this page does is shows a image in the top left
    corner. In the top
    > right
    > the phrase "Right Side". Then my third div 'toplinks'
    displays a bunch of
    > links. Since my headerleft id has margin-bottom:-40px, I
    need to use
    > z-index
    > and position:relative so that my links are shown above
    the headerleft id.
    >
    > I publish the page and view it in IE and everything
    works fine. However,
    > in
    > Design View in DW my toplinks div is displayed right
    under the rightheader
    > id.
    > For some reason it's not being displayed under the left
    and right
    > floats(headerleft and headerright id's). Not sure why
    because I have
    > 'clear:both' set for that div's CSS.
    >
    > I take the position:relative out of the toplinks id, and
    everything looks
    > fine
    > in DW. My toplinks id then drops under the both
    headerleft and
    > headerright.
    > However, when I view this is IE then the links on the
    left are no longer
    > active. I guess because z-index needs position:relative
    to work?
    >
    > Anybody have any suggestions?
    >
    > Thanks
    >

Maybe you are looking for