Browser Viewing  / Testing?

I must be mad , I'm a newbe but have some background ....
great software ... problem I can make all the pages fine ,,,test
them all indivigully they all show up 100% by themself in the
browser ... but when I link the pages from the index page and then
test the links the browser linked page show up with broken links
for most of the items .... what and i doing wrong in the linking or
what am i doing wrong with the linked page ?????

This is usually the symptom of using ROOT relative links in
your page.
See - if you have a) your PREFERENCES set to use temp files
on preview, and
b) you have used ROOT relative links, here is what happens -
Your page has a link like this -
<a href="/whatever.html"....
When you preview this, DW changes that link in the temp file
so that it
looks like this -
<a href="whatever.html"... (depending on where that file
actually is located
in the site)
AND the link works from your previewed browser view. BUT,
when you click on
it to bring up "whatever.html", and that page contains a link
that also
looks like this - <a href="/whatever2.html", but now DW's
smoke and mirrors
presto-changeo modification is out of the picture and the
browser sees that
leading slash as referring to the root of the hard drive, not
the root of
the site (the browser has no idea where the root of the site
is).
So, as Alan says, it is often not a good idea to 'click
through' your pages
like this UNLESS you really understand how this works.
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
==================
"Auctionmasterz" <[email protected]> wrote
in message
news:fd2fkg$ok7$[email protected]..
>I must be mad , I'm a newbe but have some background ....
great software
>...
> problem I can make all the pages fine ,,,test them all
indivigully they
> all
> show up 100% by themself in the browser ... but when I
link the pages from
> the
> index page and then test the links the browser linked
page show up with
> broken
> links for most of the items .... what and i doing wrong
in the linking or
> what
> am i doing wrong with the linked page ?????
>

Similar Messages

  • Excel Named Items not showing up in Browser View Options list

    Hi,
    Using excel 2013 - when I create named ranges under the 'formulas' tab, I expect to see them show up in the 'show' tab under Browser View options.  However they aren't there - when I look at the 'items in the workbook' list I only see the charts and
    pivot tables in my workbook, not the named items.
    Is there some setting I need to flip on to see these times (and then use them in sharepoint)?
    Thanks

    Today, I tried it again and now I could see the Name range under Browser View Options list, this is my step as below:
    1. Type the value in Cell A1 to B4. (Same as the screenshot as the last reply)
    2. Directly type Test in Name Box.
    3. Go to File > Info > Browser View options > Items in the Workbook.
    Now the Name is appearing.
    But when we define a name to a blank range, we would not see the Name in the Browser View options anymore. Try in your site.
    By the way, My using version is Office 36 ProPlus, version 15.0.4551.1005.
    Cheers,
    Tony Chen
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please contact
    [email protected]

  • Rotated images in browser view but correct in viewer

    Aperture 3. In numerous projects when looking at images in browser view some (not all) of the images are rotated incorrectly and some look as though they have been stretched. If I click on one of these images it opensin the viewer mode rotated correctly. Why is this happening and how do i fix it? Many thanks

    Preview uses the testing server.  When you say it doesn't work what happens?

  • How can I restore to the Browser View of Book, several missing photo's?

    Ten photos are missing from the Browser View of the Book. The photos show up in the Photo View and are checked as being used. They also show up in the working screen view of the book. All other photos in the book show up. Why are the 10 missing? How can I restore just those photos and not all photos for that book? What difference would it make in sending that book to the printer?

    Ten photos are missing from the Browser View of the Book. The photos show up in the Photo View and are checked as being used. They also show up in the working screen view of the book.
    I'm not sure of your question
    Are you saying that when you view the thumbnails of the book at the top or the screen that some pages do not show the photos even though they are in the book below?
    If so that is a minor bug in iPhoto '09 - you can ignore it - it is just a display issue -- I forget exactly how but you can force a refresh of the book thumbnails - maybe double clicking on the book page - or maybe on the thumbnail
    But in any case your book is fine (you should preview it before sending - http://support.apple.com/kb/HT1040 )
    LN

  • Design view and browser view in DW are different than when I view from local folder

    I'm brand new to Dreamweaver CS5.5 and here is my problem:
    I've made an html page in dreamweaver with a banner, with an additional graphic and some text on top of the banner.  It displays just fine in every browser when I view from the local folder, but when I open DW and view, it displays incorrectly in all three design, live and browser views within DW.  If I make changes to the css file until it views correctly in design view, it no longer displays correctly from the local folder and it still doesn't view correctly in live or browser view within DW.  If what I'm doing isnt going to display accurately in any of the views provided by Dreamweaver as compared to the live server, whats the point in having this software?  I could just keep building webpages in notepad and uploading with CoreFTP.
    Any suggestions?  Is it some setting that I dont know about that I need to change within DW?   Please help.

    align="center" is deprecated (obsolete) code in XHTML & HTML5 doc types.  Instead of styling markup with HTML, you should be using CSS. 
    CSS
    .center {text-align:center}
    HTML
    <p class="center">some centered text here</p>
    With respect to break tags, in XHTML doc types the correct syntax is <br /> not <br>.  However your usage of line breaks is inconsistent with good symantic markup.  Use headings <h1> <h2> <h3> <h4> for important keywords.  Use <p> for descriptive paragraphs.  Use <ul> <li> or <ol> <li> for lists.  Line breaks should be used minimally if ever.
    XHTML doc types require all tags to be lowercase.  Uppercase tags will throw errors.
    Your design is too rigid.  When text size is increased in browsers, your content is unreadable.  See screenshot.
    SOLUTIONS:
    1) DO NOT USE POSITION ABSOLUTE.  You don't need it.  Absolute positioning removes content from the normal document flow resulting in a jumbled mess.  Use default CSS positioning (none) with margins, padding & floats to align elements.
    2) Remove HEIGHT values from all CSS containers.  Height limits a container's capacity to hold more content when needed.  Container height should always be determined by the amount of content it holds; not explicit values.  If required to reveal a background image, for example, use CSS min-height instead of height.
    CSS Box Model
    http://www.w3schools.com/css/css_boxmodel.asp
    CSS Floats
    http://www.w3schools.com/cssref/pr_class_float.asp
    CSS min-height
    http://www.w3schools.com/cssref/pr_dim_min-height.asp
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com/

  • Why is my page not centered in browser view?

    I am working on my home page.  I set the container dimension to 700px and max width 960.   I have tried other sizes.  every time in Windows browser view my site shifts to the left with a large margin on the right.  I can't get it to center.  I have an error message saying :
    Unsupported property: max-width
    Affects: Internet Explorer 6.0; Internet Explorer for Macintosh 5.2
    In Live View, it looks fine. Also, in browser view, my spry menu bar is not showing up (it does in Live View).
    Anyone have any suggestions??
    Thanks!  M.

    kcusu wrote:
    .container {
    width: 700px; /* the auto value on the sides, coupled with the width, centers the layout */
    background-color: #FFFFCE;
    max-width: 960px;
    text-align: center;
    margin-top: 0;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    If this is the real code, your CSS is missing a closing bracket  }
    It would be soooooo much simpler and quicker for everyone if you would upload your page to your remote web space and post a link for us to see it in our browsers.
    My guess is that your code has validation errors that need fixing.
    Code Validation Tools
    CSS - http://jigsaw.w3.org/css-validator/
    HTML - http://validator.w3.org/
    FYI: Browser compatibility checking is a total waste of time.  You can skip that feature b/c it doesn't tell you anything useful.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

  • Goofy Cover Browser view in iTunes 7

    I guess Apple’s relationship with Disney finally got to close for comfort. I’m afraid Goofy just took over the iTunes UI design.
    As the name implies, the Cover Browser (rightmost view button) looks and almost functions like a browser.
    Unfortunately, it is merely a display of the album now playing with previous and next albums.
    Undoubtedly this view is great looking, but has no usefulness as a browser. This should have been a visualizer plugin.
    As a matter of fact, I actually would use it as a full screen visualizer plugin. Ironically, such useful Use Case for this feature is not enabled.
    So far, I was only slightly disappointed with the missed opportunity to make a cool looking real album browser and the missing visualizer.
    Apple did provide a “Group by Artwork” view that is not as great looking, but it’s certainly useful.
    However, my disappointment quickly turned into puzzlement when I was surprised by a completely unexpected Cover Browser behavior.
    I hear that after puzzlement comes acceptance. I’m not there yet, but I have a feeling I’m working up to it by writing about it.
    Consider this.
    If you filter your view with Quick Browse by an Artist or a Genre, only the filtered tracks are displayed.
    If you start playback, only those selected tracks will be in the queue.
    I don’t know about you, but that’s how I listen to my iTunes library. I play a selected Playlist, Genre, Album, or Artist to listen to a specific selection. I never play tracks without filtering because I have podcasts, audiobooks, hip-hop, classic, altrock, and only God and my iTunes library know how many more different types of music.
    But I digress. Having started playback on a filtered list of a selected Artist or Album and then clicking on the Cover Browser does something only Goofy could have conceived.
    It loses your selected filtering and changes to an all tracks view. The currently playing album cover is displayed, but what is before and after that track is now determined by the all tracks view column sorting.
    In other words, because I clicked on the Cover Browser view, my playback queue changed to something I had no intention of hearing.
    This strange behavior is unique to the Cover Browser view. Had I click on the Group by Artwork instead, the filtering would still be in effect.
    There must have been some kind of crazy rational to lose the filtering since it was clearly intentional.
    They got the Playlist behavior right. If playback is started from a Playlist, changing view to Cover Browser does the expected and only displays the albums contained in the Playlist.
    Goofy didn’t stop there. No, he was inspired.
    In the Cover Browsing view while playback is active, if you navigate down the list of tracks, say 6000 tracks down, after a brief timeout, the highlighted album reverts back to the one playing, which could the first one of this 6000 tracks list.
    Quick, you got 15 seconds to navigate down a list and look at it…Sorry, you’re not fast enough…back to the top of the list where you belong!
    I’m afraid this is not the first time iTunes has been updated with functionality that makes it less useful. Podcast categories have been removed with no good way to get to those specific podcasts anymore (e.g. International).
    The status window defaulting to downloading podcast information while playback is active is another terrible example.
    As a lifetime fan, it is sad to witness the slow deterioration of Apple’s once high standards.
    Acceptance is coming while I image what must be like to have Goofy lose and running amuck in the Tunes design lab.

    Below the cover view is the track listing which has all the columns as usual - simply click the column title to sort by that field.
    If the album has different artists then make sure the 'group compilations' option is ticked in preferences and then go into the info for the tracks and select 'part of a compilation'. iTunes will then group the tracks into a single album and display 'various artists' as the artist.
    There is also now a field called 'album artist' which sets an artist for an entire album.
    Powerbook G4 12"   Mac OS X (10.3.9)  

  • Double clicking an image in Browser view

    I see that the behavior for double clicking an image in Browser view has changed between Aperture 2 & 3. In version 2, double clicking an image would jump from Browser view to zoom in on that image in full screen mode. Now in version 3, double clicking just switches to that image in Viewer mode in the main window, without entering into full screen mode.
    While I guess this change makes some sense given the changes to full screen mode in v.3, my old fingers have gotten used to doing things the old way. To recreate what I used to do in v.2 I need to double click, then hit 'F' to do to full screen mode and then do the reverse to get back where I started.
    Is there anyway I can change this behavior to the old v.2 way? I see lots of ways to customize hotkeys and commands, but nothing to change behaviors for a double click.
    Thanks!

    I can't find anything, but I'm still finding my way around!
    I don't think you need to double click and press F..... just pressing F should change views.
    Another way is to drag the "Full Screen" icon into the toolbar, and you can just click that.

  • I am in Aperture photos-browser - view. Amtrying to find "sort"  by file name to elimanate duplcates.  Sort option does not appear. Not sure what I am doing wrong.

    I am in Aperture -photos - browser - view.  Am trying to find "Sort"  by filename to elimate duplicates. I cannot find "sort in Viewer and not sure what I am doing wrong.  Help

    This is what the top of the Viewer should look like:
    Here is the same view with the pulldown opened:
    What is it that you see? Include a screenshot.

  • Webforms visible in project view but not in browser view

    Hi all
    I have a problem:
    We have a Yearly Task list with several webforms. Now, if I try to open the webforms in the normal project view everything works fine. But if I click the same Webform when I am in the browser view/tasklists/Yearly, I get the following Error message.
    Requested document does not exist.
    Show Details:
    Error Reference Number: {A9C8569B-EC64-4A6D-8FEB-897DA44ECF5C};User Name: 20354@MSAD
    Num: 0x80042781;Type: 0;DTime: 02.02.2009 11:58:29;Svr: ZRHCHL60;File: CHsvDSReports.cpp;Line: 626;Ver: 9.3.1.0.1502;
    Num: 0x80042781;Type: 0;DTime: 02.02.2009 11:58:29;Svr: ZRHCHL60;File: CHsvReports.cpp;Line: 1538;Ver: 9.3.1.0.1502;
    Num: 0x80042781;Type: 0;DTime: 02.02.2009 11:58:29;Svr: ZRHCHL60;File: CHsvReports.cpp;Line: 1081;Ver: 9.3.1.0.1502;
    Num: 0x80042781;Type: 0;DTime: 02.02.2009 11:58:29;Svr: ZRHCHE62;File: CHFMwManageDocuments.cpp;Line: 1340;Ver: 9.3.1.0.1502;
    Strangely, this only happens with the webforms that I have added more recently. The older webforms work fine also in the browser view.
    Thanks

    Hi all,
    We try to import Webforms from an application in a new application , inside a folder hierarchy.
    There was the same error when we want to access to any documents.
    The folder was created by an Active Directory User (With All rights).
    I have created a Folder with a Native Account (With All Rights) , and access to the document is now available.
    I hope this workaround, will help Oracle to understand the root cause.
    Regards.

  • Links in Browser View

    Everytime I view my website in browser view through dreamweaver, the links do not work. IT works the first time, but after that when i try to click another category such as "About Us" It just add a "#" to the link up top and dosent move to the page. If im not making any sense please ask me to explain again.
    If you need my html code:
    <strong></strong><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <!--
    Design by Free CSS Templates
    http://www.freecsstemplates.org
    Released for free under a Creative Commons Attribution 2.5 License
    Name       : Distillate 
    Description: A two-column, fixed-width design with dark color scheme.
    Version    : 1.0
    Released   : 20100427
    -->
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta name="keywords" content="" />
    <meta name="description" content="" />
    <meta http-equiv="content-type" content="text/html; charset=utf-8" />
    <title>Distillate   by Free CSS Templates</title>
    <link href="file:///C|/Users/Sami/Desktop/style.css" rel="stylesheet" type="text/css" media="screen" />
    <script type="text/javascript" src="file:///C|/Users/Sami/Desktop/jquery/jquery-1.4.2.min.js"></script>
    <script type="text/javascript" src="file:///C|/Users/Sami/Desktop/jquery/jquery.gallerax-0.2.js"></script>
    </head>
    <body>
        <div id="header-wrapper">
            <div id="header">
                <div id="logo">
                    <h1><a href="#">Distillate</a></h1>
                    <p> design by <a href="http://www.freecsstemplates.org/">Free CSS Templates</a></p>
                </div>
            </div>
        </div>
        <div id="page">
            <div id="page-bgtop">
                <div id="page-bgbtm">
                    <div id="content">
                      <div>
                        <div id="gallery">
                          <div id="gallery-background"><img src="<?php bloginfo('template_url'); ?>/images/img06.png" alt="" width="600" height="340" class="output" /></div>
                          <div id="gallery-bgthumb">
                            <ul class="thumbnails">
                              <li><img src="file:///C|/Users/Sami/Desktop/Sample Website/Sunset.jpg"" alt="" width="128" height="88" /></li>
                              <li><img src="file:///C|/Users/Sami/Desktop/Sample Website/sunset 280.jpg"" alt="" width="100" height="75" /></li>
                              <li><img src="file:///C|/Users/Sami/Desktop/images/7.jpg" title="Chinese Bell ; A large bell inscribed with Chinese characters." alt="" width="100" height="75" /></li>
                              <li><img src="file:///C|/Users/Sami/Desktop/images/8.jpg" title="Ladybird ; A close up shot of a ladybird making its way across a leaf." alt="" width="100" height="75" /></li>
                            </ul>
                            <br class="clear" />
                          </div>
                        </div>
                        <script type="text/javascript">
                            $('#gallery').gallerax({
                                outputSelector:         '.output',                    // Output selector
                                thumbnailsSelector:        '.thumbnails li img',        // Thumbnails selector
                                fade:                     'fast',                        // Transition speed (fast)
                                navNextSelector:        '.nav li a.navNext',        // 'Next' selector
                                navPreviousSelector:    '.nav li a.navPrevious'        // 'Previous' selector
                        </script>
                        <!-- end -->
                      </div>
                      <div class="post">
                        <h2 class="title"><a href="#">Welcome to Distillate </a></h2>
                        <p class="meta">Posted by <a href="#">Someone</a> April 22, 2010</p>
                        <div style="clear: both;"> </div>
                        <div class="entry">
                          <p>This is <strong>Distillate, </strong>a free, fully standards-compliant CSS template designed by <a href="http://www.freecsstemplates.org/">Free CSS Templates</a>, released for free under the <a href="http://creativecommons.org/licenses/by/3.0/">Creative Commons Attribution</a> license.The slideshow uses photos from <a href="http://www.pdphoto.org">PDPhoto.org</a> and is powered by Gallerax (a jQuery plugin by <a href="http://www.nodethirtythree.com/">NodeThirtyThree</a>). You're free to use this template for anything as long as you link back to our site. Enjoy :)</p>
                          <p>Sed lacus. Donec lectus. Nullam pretium nibh ut turpis. Nam bibendum. In nulla tortor, elementum ipsum. Proin imperdiet est. Phasellus dapibus semper urna. Pellentesque ornare, orci in felis. Donec ut ante. In id eros. Suspendisse lacus turpis, cursus egestas at sem.</p>
                          <p class="links"><a href="#">Read More</a>    |    <a href="#">Comments</a></p>
                        </div>
                      </div>
                      <div class="post">
                        <h2 class="title"><a href="#">Lorem ipsum sed aliquam</a></h2>
                        <p class="meta">Posted by <a href="#">Someone</a> April 10, 2010</p>
                        <div style="clear: both;"> </div>
                        <div class="entry">
                          <p>Sed lacus. Donec lectus. Nullam pretium nibh ut turpis. Nam bibendum. In nulla tortor, elementum vel, tempor at, varius non, purus. Mauris vitae nisl nec metus placerat consectetuer. Donec ipsum. Proin imperdiet est. Phasellus <a href="#">dapibus semper urna</a>. Pellentesque ornare, orci in consectetuer hendrerit, urna elit eleifend nunc, ut consectetuer nisl felis ac diam. Etiam non felis. Donec ut ante. In id eros. Suspendisse lacus turpis, cursus egestas at sem.  Mauris quam enim, molestie in, rhoncus ut, lobortis a, est.</p>
                          <p class="links"><a href="#">Read More</a>    |    <a href="#">Comments</a></p>
                        </div>
                      </div>
    <div style="clear: both;"> </div>
                    </div>
                    <h3><!-- end #content -->
                  </h3>
                    <div id="sidebar">
                        <ul>
                            <li>
                                <div id="search" >
                                    <form method="get" action="#">
                                        <div>
                                            <input type="text" name="s" id="search-text" value="" />
                                            <input type="submit" id="search-submit" value="GO" />
                                        </div>
                                    </form>
                                </div>
                                <div style="clear: both;"> </div>
                            </li>
                            <li>
                                <h2>Aliquam tempus</h2>
                                <p>Mauris vitae nisl nec metus placerat perdiet est. Phasellus dapibus semper consectetuer hendrerit.</p>
                            </li>
                            <li>
                                <h2>Categories</h2>
                                <ul>
                                    <li><a href="index.html">Home</a></li>
                                    <li><a href="about.html">About Us</a></li>
                                    <li><a href="services.html">Services</a></li>
                                    <li><a href="location.html">Office Location</a></li>
                                    <li><a href="tour.html">Office Tour</a></li>
                                    <li><a href="contact.html">Contact Us</a></li>
                                </ul>
                            </li>
                            <li>
                                <h2>Blogroll</h2>
                                <ul>
                                    <li><a href="#">Aliquam libero</a></li>
                                    <li><a href="#">Consectetuer adipiscing elit</a></li>
                                    <li><a href="#">Metus aliquam pellentesque</a></li>
                                    <li><a href="#">Suspendisse iaculis mauris</a></li>
                                    <li><a href="#">Urnanet non molestie semper</a></li>
                                    <li><a href="#">Proin gravida orci porttitor</a></li>
                                </ul>
                            </li>
                            <li>
                                <h2>Archives</h2>
                                <ul>
                                    <li><a href="#">Aliquam libero</a></li>
                                    <li><a href="#">Consectetuer adipiscing elit</a></li>
                                    <li><a href="#">Metus aliquam pellentesque</a></li>
                                    <li><a href="#">Suspendisse iaculis mauris</a></li>
                                    <li><a href="#">Urnanet non molestie semper</a></li>
                                    <li><a href="#">Proin gravida orci porttitor</a></li>
                                    <li><a href="#">Suspendisse iaculis mauris</a></li>
                                    <li><a href="#">Urnanet non molestie semper</a></li>
                                    <li><a href="#">Suspendisse iaculis mauris</a></li>
                                </ul>
                            </li>
                        </ul>
                    </div>
                    <!-- end #sidebar -->
                    <div style="clear: both;"> </div>
                </div>
            </div>
        </div>
        <!-- end #page -->
    <div id="footer">
        <p>Copyright (c) 2008 Sitename.com. All rights reserved. Design by <a href="http://www.freecsstemplates.org/">Free CSS Templates</a>.</p>
    </div>
    <!-- end #footer -->
    </body>
    </html>

    Hi
    first of all I can see in your source code these ...:///C|/Users/Sa... My DW finds more of them (screenshot from my German DW):
    If you are seeing a file:/// ... the following links will point to your hard drive. These links will not work on the web. And:
    <script type="text/javascript" src="file:///C|/Users/Sami/Desktop/jquery/jquery-1.4.2.min.js"></scri pt>
    <script type="text/javascript" src="file:///C|/Users/Sami/Desktop/jquery/jquery.gallerax-0.2.js"></s cript>
    what means here "</s cript> is a blank between s and c in it.
    What concerns these "#". If you want to link to one of your sites you have to replace it with the matching, for example:
    <li><a href="#">Aliquam libero</a></li>
    <li><a href="AliquamLibero.html">Aliquam libero</a></li>
    And now, it's the same for me: "If my answer doesn't help ypo, please ask me to explain again."Hans-Günter

  • JavaFX 2.0 : How to make a stage fit into browser view area?

    Invoking a JavaFX 2.0 applet from browser results in white spaces on the right and bottom area of the browser. This happens when the JavaFX stage resolutions is lesser than that of browsing desktop resolution. In a client/server model, usually server components doesn't know about the client resolutions. So how to make a stage fit into browser view area?
    Also I think, setting the primary stage to full screen mode is not what I want to achieve, as this mode overlays the browser window.

    Try typing 100% into the width and height fields. Alternatively, you could use Javascript (no connection to Java in spite of the name) to create an event to resize the applet to the window's size.

  • QuickTime 7.6.5 doesn't display controller on browser viewing

    This happened with QT 7.6.4 for Windows. When 7.6.5 came out, I uninstalled the old and freshly installed the new. But still...going to QuickTime.com for movie trailers and clicking to watch movies (not HD) for browser viewing doesn't display the QuickTime controller but instead a black empty blank void. Clicking in this void controls the movie being played. You just can't see the controller. Anybody having this issue?
    Running Windows 7 x64, 4GB Ram, nVidia 8800GTS 512.

    The "blank" controller for QuickTime formats in browsers is a known issue for Windows 64 bit OS's.
    Check your help files to earn more about 32 bit "compatibility" mode.

  • Metadata ON image in browser view?

    i have been finding an issue in deleting duplicate images which i am doing manually and i am wondering if anyone can help with this. since these duplicates are the same /image/ but may not have the same name or the same resolution i do the following (i keep the one with the highest resolution)
    first i start in a browser view that lets me see all the images and then i do a manual sort to put the same images next to the same images. now the problem starts.
    in order to /see/ the metadata such as image size and file size i have to go into List view where i can see this information. then when i find the smaller of the two images i want to delete this one but since the image is so small in list view (and since i can't click to open it) i have to go back to browser view to see the image. then i go back to list view to delete it.
    since all the images look the same in list view (and since my images are not named the same) i sometimes use a black placeholder image which i move around and put between sets of duplicates while in browser view so that when i go back to list view i can make sure to see that the next two images are in fact the dupes of each other - to make sure i am not deleting a small image that is actually the only version of an image/file in my database. i mean, since i can't SEE this image in list view it is almost impossible for me to know which image it is in reality and deleting it without going back into browser view seems like an especially bad idea.
    is there a solution to this that might involve enlarging the THUMBNAILS IN LIST VIEW or being able to see image size and file size in BROWSER VIEW without it being too messy?
    TIA for any help.
    - jon

    i sometimes use a black placeholder image which i move around and put between sets of duplicates while in browser view so that when i go back to list view i can make sure to see that the next two images are in fact the dupes of each other - to make sure i am not deleting a small image that is actually the only version of an image/file in my database.
    One more suggestion, Jon. Have you considered to stack the duplicates in browser view? This way stacked images will be grouped in list view, and you can easily tell, which images belong to the same set of duplicates, for example: Three similar images stacked - you can disclose them by pressing the disclosur triangle and compare the file sizes. The stacked images will be indented in the list.
    Regards
    Léonie

  • Browser view and sometimes Keywords show and sometimes they don't

    I have uptodate Aperture etc. I have an album of 100 pictures each of which has several keywords assigned [I checked in list view]. Then I go to Browser view = most of the images have the Version name and the Keywords listed under the image [as I have it setup] but then I go a little further and every now and then an image shows a Caption but no keywords === and then only Keywords show up - and then some more have Captions and no keywords. In other words, they all have captions and they all have Keywords but in Browser mode but on some only the Caption shows up and on others only the Keywords and on yet others both captions and keywords show up. I have gone in to customize the metadata in the View and even changing it around doesn't end up showing both Caption and Keyword for all the 100 images.

    one can't reset firefox on a regular basis, makes no sense - this happens at least several times a month. It works on IE each time, I like Mozilla and dont't want to switch back and forth, as well I am not fond of the Crickler Beta which seems to work more often. Just fix this glitch please!

Maybe you are looking for

  • How can I move music from one computer to the other?

    We have a family computer with everyones music on it but my parents just got me a new laptop for x-mas and I want my music on mine. how do I move them?

  • Problem clearing Cell on a TiledLayer

    Hi, I've got a problem with a TiledLayer in that I when I set a cell to 0 to clear it nothing happens. It works fine when I set it to anything else so it's definitely not a problem with the layer not being drawn, but if I try and clear it the last sp

  • Transport collection issue

    I would like to Trasnport an infoobject from Dev to Quality. I have given Source system assignment correctly. But when I am trying to collect all related ( i mean all attributes and attributes' attribute), it is giving the following error: Edit objec

  • Upgraded to Mac Pro- What should I change in FCP to use all 8 cores?

    Hi I went from a G5 to a new Mac Pro. What settings should I change to make sure I can take advantage of the speed from the 8 cores and 6 gigs of Ram and new Nvidia graphics card? Thanks

  • Energy Cross Tab Report

    I have a client who wants to monitor thier energy usage. In particular he wants to know the peak demand, energy usage among other energy parameters. He also wants to display the time when the value was read by the meter All of this information is sto