Newbie AP DIV help

First time creating a website and I am having an issue with my ap divs. When I preview them in dreamweaver browser preview everything looks great but when I uploaded the site all my ap divs moved to the left. What did I do??? I have been searching for answers to what I did wrong and have not found exactly how to fix this. I am sure my code is off, considering I have never done this before. Any help that you can give I would greatly appreciate it.

In DW, you'll find some pre-built CSS Layouts you can use to jump start your projects.
File > New > Blank page > HTML > Layouts.  Select one, hit Create.
APDivs (absolutely positioned) are removed from normal content flow & seldom work well in primary layouts.  Here's why: http://www.apptools.com/examples/pagelayout101.php
For best results, learn to use CSS Floats & Margins to align elements on screen.
http://css.maxdesign.com.au/floatutorial/introduction.htm
Nancy O.

Similar Messages

  • Progress Bar using HTP.DIV -Help please

    Hi,
    Below is my Code to get a progress bar on the screen writen as a package
    PROCEDURE lp_progress_bar IS
    BEGIN
    htp.htmlOpen;
    htp.headOpen;
    -- Create Link to Style Sheet
    htp.linkrel(crel => 'stylesheet',
    curl => pk_constant.PATH_STATIC||'internal_body.css',
    ctitle => 'text/css');
    --Include the Javascript to Call the Progress Bar
    lp_js_copy();
    htp.headClose;
    htp.bodyOpen;
    --Define Attributes for the DIV tags to print the Progress bar
    htp.div(cattributes => 'id="bar"');
    htp.div(cattributes => 'id="progress"');
    htp.bodyClose;
    htp.htmlClose();
    END lp_progress_bar;
    and the JS for the progress bar
    NL CONSTANT VARCHAR2(2) := CHR(13) || CHR(10);
    PROCEDURE lp_js_copy
    IS
    vBodyCode VARCHAR2(500);
    BEGIN
    pk_js.js
    'var time = 10000;'
    || NL ||'var aCopy = 5;'
    || NL ||'var aCopyDone = 1;'
    || NL ||'function progress() {'
    || NL ||'parent.fr_buttons.btnCancel.disabled= true;'
    || NL ||'var bar = document.getElementById("bar");'
    || NL || 'alert(bar);'
    || NL ||'var aStep = (bar.offsetWidth -2) /aCopy;'
    || NL ||'var x = Math.round( aStep *aCopyDone); '
    || NL ||'var progress = document.getElementById("progress");'
    || NL ||'progress.style.width = x +"px";'
    || NL ||'aCopyDone++;'
    || NL ||'if( aCopyDone > aCopy) redir();'
    || NL ||'else setTimeout( "progress();", time /aCopy);'
    || NL ||'}'
    || NL
    || NL ||'function redir() {'
    || NL ||'alert("Copy Successfully Completed");'
    || NL ||'parent.fr_buttons.btnCancel.disabled= false;'
    || NL ||'parent.fr_buttons.btnSave.disabled=true;'
    || NL ||'}'
    END lp_js_copy;
    The stlye for bar and progress aere defined in the stylesheet internal_body.css as
    #bar
    MARGIN: 0 auto;
    WIDTH: 250px;
    TEXT-ALIGN: left;
    BORDER: 1px solid black;
    #progress {
    WIDTH: 0;
    BACKGROUND: darkblue;
    but I am not getting anything on the screen. What should I do to get it pop up on the existing screen.
    I had posted it on a the database thread too. But I guess it was th wrong category.Hence posting it new here.
    Please Help.
    Message was edited by:
    ora newbie

    Hi Dwijesh,
    U can use a OCX control. Make a OCX control and insert microsoft progress bar object into it. Then you can write codes into it accordingly to incerease the bar.

  • Newbie Needs Template Help

    Ok I am a complete newbie to flash. I have read most of the guides provided and searched the forums but I honestly can't find an answer to my question.
    I have decided to use one of the templates provided with my flash pro cs5. It is the advanced album.
    My question:  how do I use it?  
    I know it gives me generalized instructions when it opens but for the life of me I cannot figure out where or how to put my photos in.
    I am using the template because when I try to make an album from scratch I also cant seem to get it to work right (the images just fly through on the preview)
    thanks in advance for the help!

    Hello wiccanluvr1988,
    To make photos show up in the 'Advanced Photo Template' you have to do the following steps...
    1.Store your project .fla file inside a folder.
    2.Put all your photos inside that folder that you want in the Photo Template.
    3.Now you have to go inside the actions frame of the template and change line 11 with this code below by adding your own photo directory.
    Line 11:
    var hardcodedXML:String="<photos><image title='Your Photo'>images/yourphoto.png</image><image title='Your Photo 2'>folder/yourphoto2.png</image></photos>";
    Simple Explained Form:
    var hardcodedXML:String="<photos><image title='Image title here...'>Put image directory here</image>
    /*Repeat this line of code with new photo directories to display more photos*/ <image title='Image title for 2nd photo...'>Image directory here for 2nd photo</image>
    </photos>";
    I hope this helped...

  • FLASH NEWBIE NEEDS YOUR HELP

    I have 4800 jpg files in my librarie, and i want to put each
    in a keyframe on scene; the idea is to make a simple movie.
    Importing a .mov movie, the quality decrease, and i just notice,
    with the jpg file the swf movie has a better quality.
    There´s some code to to this fast and easy?
    Please help me.
    sayeg5. ( very newbie flash user). By the way, i´m using
    flash cs3. Trying to learn.

    Quote from: barkingdogg on 10-February-07, 05:57:05
    sorry if i had to ask again. but when you mean during install does that mean during installation of windows?
    thank you very much for your quick response. 
    yes, in a begging of XP installation press "F6".
    hit "F6" here few times.
    then at next screen put diskette which contain RAID drivers into floppy and load them with pressing "S" key.
    load 1st one, and config. them hit "S" key again and load second one as well. you need to load it both:

  • Centering a DIV, (help) Tried several solutions, none helped.

    Hi,
    I am trying to center my webpage, fortunatly i tried to center it before i did to much work on it.
    Heres my Css. (it already includes the proposed solution that i saw on this forum, being the wrapper the last solution, it wraps the other 2 divs (topo and menu))
    @charset "UTF-8";
    /* CSS Document */
    body {
        text-align:center;
        right: auto;
        height: auto;
        width: 800px;
        position: relative;
        left: auto;
    #topo {
        background-color: #000;
        left: auto;
        right: auto;
        width: 800px;
        clip: rect(auto,auto,auto,auto);
        position: relative;
        overflow: auto;
        height: auto;
    #menu {
        width: 800px;
        left: auto;
        right: auto;
        position: relative;
        height: auto;
    #Wraper {
        text-align: center;
        position: relative;
        left: auto;
        right: auto;
        width: 800px;
    Heres my html. In case it matter
    <!DOCTYPE HTML>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <!-- TemplateBeginEditable name="doctitle" -->
    <title>ManoZe</title>
    <!-- TemplateEndEditable -->
    <!-- TemplateBeginEditable name="head" -->
    <!-- TemplateEndEditable -->
    <link href="../css/styles.css" rel="stylesheet" type="text/css">
    <script src="../Scripts/swfobject_modified.js" type="text/javascript"></script>
    <style type="text/css"></style>
    </head>
    <body>
    <div id="Wraper">
      <div>
        <div id="topo">
          <div>
            <div align="center"><img src="../images/banner.jpg" width="800" height="300">    </div>
          </div>
        </div>
        <div id="menu">
          <div align="center">
            <object id="FlashID" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="800" height="65">
              <param name="movie" value="../images/menu.swf">
              <param name="quality" value="high">
              <param name="wmode" value="transparent">
              <param name="swfversion" value="6.0.65.0">
              <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
              <param name="expressinstall" value="../Scripts/expressInstall.swf">
              <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
              <!--[if !IE]>-->
              <object type="application/x-shockwave-flash" data="../images/menu.swf" width="800" height="65">
                <!--<![endif]-->
                <param name="quality" value="high">
                <param name="wmode" value="transparent">
                <param name="swfversion" value="6.0.65.0">
                <param name="expressinstall" value="../Scripts/expressInstall.swf">
                <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
                <div>
                  <h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
                  <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
                </div>
                <!--[if !IE]>-->
              </object>
              <!--<![endif]-->
            </object>
          </div>
        </div>
        <div align="center"> </div>
      </div>
    </div>
    <script type="text/javascript">
    swfobject.registerObject("FlashID");
    </script>
    </body>
    </html>
    Thks allot for you help!.

    I redid the file, and it worked, i made an efford to minimize the code to a bare minimum, maybe less is more(?)
    Here goes the new files code. (to help understand what went wrong)
    New CSS:
    @charset "UTF-8";
    #topo {
        width: 800px;
        position: relative;
        margin-right: auto;
        margin-left: auto;
    #menu {
        width: 800px;
        margin-right: auto;
        margin-left: auto;
    New HTML;
    <!DOCTYPE HTML>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <!-- TemplateBeginEditable name="doctitle" -->
    <title>ManoZe</title>
    <!-- TemplateEndEditable -->
    <!-- TemplateBeginEditable name="head" -->
    <!-- TemplateEndEditable -->
    <link href="../css/styles.css" rel="stylesheet" type="text/css">
    <style type="text/css"></style>
    <script src="../Scripts/swfobject_modified.js" type="text/javascript"></script>
    </head>
    <body>
    <div id="topo"><img src="../images/banner.jpg" width="800" height="300"></div>
    <div id="menu">  <object id="FlashID" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="800" height="65">
        <param name="movie" value="../images/menu.swf">
        <param name="quality" value="high">
        <param name="wmode" value="opaque">
        <param name="swfversion" value="6.0.65.0">
        <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
        <param name="expressinstall" value="../Scripts/expressInstall.swf">
        <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
        <!--[if !IE]>-->
        <object type="application/x-shockwave-flash" data="../images/menu.swf" width="800" height="65">
          <!--<![endif]-->
          <param name="quality" value="high">
          <param name="wmode" value="opaque">
          <param name="swfversion" value="6.0.65.0">
          <param name="expressinstall" value="../Scripts/expressInstall.swf">
          <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
          <div>
            <h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
            <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
          </div>
          <!--[if !IE]>-->
        </object>
        <!--<![endif]-->
      </object>
    </div>
    <script type="text/javascript">
    swfobject.registerObject("FlashID");
    </script>
    </body>
    </html>

  • CS4/AS2.0 Newbie Question.. help please?

    Hey all, I'm a newbie on the forum and in Flash.
    I've used it before, made my pages into scenes, and
    everything worked fine. Apparently, this doesn't work anymore (I
    used an earlier version of Flash) in CS4, and everyone is
    recommending to use frame labels. This doesn't work either.
    This is a screenshot of my site right now.
    The ActionScript is the exact same in all three frames on the
    actions layer you see in the screenie.
    All I want is when clicking on the AboutUs button and
    WhatIsHypnosis button, that they go to the specified frame labels.
    The only one that works is the AboutUs button. I can click on
    it and it loads the content that its supposed to,but the home (the
    logo) and the second button do not work. They are clickable, just
    nothing happens.
    I've tried everything I can think of and that I have been
    able to find.
    Changing the type of frame label has no effect.
    Help please? I've been trying to fix this for a good 6-7
    hours.
    Screenshot:
    http://img407.imageshack.us/img407/2372/picture8sq4.png
    Thank you!

    Fixed. :)
    I have no clue what it was..
    I changed some frame labels around, renamed a few buttons,
    renamed some instances, and it magically worked. :)

  • Aligning social media icons on a page (Was:Need Div help, please.)

    Hello,
    I'm trying to figure out the best way to get the social media icons on the right side in a row, side by side, no space between.
    Can I use a div?
    Problem is now is that depending on monitor/screen size, the spacing changes.
    Again, I want to have them all together with no spacing, centered on the right at all times.
    http://www.saintleo.edu/SocialMediaSliders/Kathryn-JK.html
    Any help would be greatly appreciated.
    Kind regards,
    JK

    Yes, I took a look at the website. I saw that they were sliders.
    It's hard for me to answer if putting an unordered list will hurt your code. The code that you have is not indented so it's extremely hard to read.
    I would try putting the image in the <li> first. Make a backup of the page if you're nervous, and work on the backup. So your current content is live, and your backup can be toyed with until you have it right.
    Also:
    If using an unordered list scares you, there is an alternative which may work. I will use #twitter_right img as an example.
    You are using absolute positioning. There is no reason to do this and I'm under the impression that absolute positioning should be avoided.
    Your current CSS Rules for this are as follows:
    #twitter_right img {
         left: -52px;
         position:absolute;
         top: 45px;
    Instead, it should be:
    #twitter_right img {
         float:right;
         margin-top:45px;
    Now, if you wanted to get fancy you could do this: (The CSS Identifiers are not accurate... just showing you an exmple)
    #twitter_right img, #facebook_right img, #youtube_right img {
         float:right;
         margin-bottom:45px;  -- this is could also be padding. Set this value to the height of the image if you don't want spacing.
    That way, when the slider moves out, the icon will move with it. Additionally, the spacing would be equal across the board.

  • Ap Div help

    hi
    i have made my website with divs and images inside them and
    they are centered i am now inserting the navigation and flash
    display i made in flash i need these positioned over the images and
    centered in the browser. i need it centered compatible for all
    browsers. i have drawn an apdiv and put it on top but i cannot get
    that to center according to browser and whenever i just insert a
    div it goes above or below the image header i have.
    please help me
    thanks

    miccadoin wrote:
    > hi
    > i have made my website with divs and images inside them
    and they are centered
    > i am now inserting the navigation and flash display i
    made in flash i need
    > these positioned over the images and centered in the
    browser. i need it
    > centered compatible for all browsers. i have drawn an
    apdiv and put it on top
    > but i cannot get that to center according to browser and
    whenever i just insert
    > a div it goes above or below the image header i have.
    > please help me
    > thanks
    >
    Do you have an url for this page/site?
    chin chin
    Sinclair

  • IMovie Newbie requests your help please!

    Newbie Questions
    I am a 3D artist so I render my images from the 3D software rather than shooting on video. I have rendered out my animation as images dog01.bmp, dog2.bmp, dog3.bmp etc. You get the idea! Well there are 271 .bmp images each 1mb in size = 271 MB. I tried importing them into iMovie and it took 2 minutes to import all of them.
    Q1. I read the "iMovie Getting Started .pdf" but it wasn't clear as to what to do with a collection of images. What do I do once I have loaded all 271 images of my images into the "Clips" section of iMovie?
    Q2. I noticed my images have a black bar above and below them. What can I do to fix this?
    Image Type: .BMP
    Image Size: 800 x 450 pixels (Is this size too big for imovie?)
    PPI: 72
    Frame File Size: 1 MB (Is this size too big for imovie?)
    No. of Frames: 271
    Total file size (272 images) = 280 MB
    Q3. I can render my 3D animation in the following formats so can you tell me what formats are best?
    -Animation
    -Apple Intermediate Codec
    -Apple Pixlet Video
    -Apple VC H.263
    -BMP
    -Cinepak
    -Component Video
    -DV-PAL
    -DV/DVCPRO-NTSC
    -DVCPRO-PAL
    -DVCPRO50-NTSC
    -DVCPRO-PAL
    -Graphics
    -H.261
    -H.263
    -H.264
    -JPEG 2000
    -Motion JPEG A
    -Motion JPEG B
    -MPEG-4 Video
    -None
    -Photo-JPEG
    -Planar RGB
    -PNG
    Your help is appreciated!

    a) you do yourself a favour, and choose in iM's prefs "import to timeline"... your clips go direct to timline, no hand-dropping of 271 (pheww!!) pics needed
    b) dropping a folder of pics onto QTpro allows the conversion into a dv stream
    c) if you anim app allows export as "video" choose "dv PAL/NTSC" (appropiate video standard in your country)
    hope that helps...

  • Newbie audio question--help please...

    I recently recorded/captured video from Canon HV30 and unfortunately found that only Left audio channel was recorded..Right channel in non-existant. How do I duplicate the audio track from Left to Right so that both tracks are played in sync?
    I appreciate your help on this newbie question!

    When the left channel is filled you use the Fill Left effect
    The Fill Left effect duplicates the left channel information of the audio clip and places it in the right channel, discarding the original clip’s right channel information.
    Instead of putting the effect on each clip use the Audio Mixer.

  • Newbie with div tags

    I am trying to design my webpage, www.evdetailing.com, using div tags.
    Here is the site working okay in IE Explorer (http://evdetailing.com/whatswrong.JPG)
    I am looking to have the bottom two tags (the text and the left hand margin tag) sitflush with the bottom of the browser, and stretch if there are more text. In Firefox, the text div aligns but not the left hand margin div.
    Okay also I have the boxes aligning to the left at 15% absolute, how do I align so the text box will align with them if I set it at 15% it will sit on top of the margin div and cover it up, 20% is the closest to flush but there are still 2 or 3 px of space between the two boxes. You can see what im trying to do at the #1 Arrow, I want the whole site to be align
    Lastly if anyone knows why my background is doing what it's doing in Firefox, I would love to know so that I can fix it, its working right in the picture above.
    Any help is greatly appreciated.

    OperationGreen wrote:
    I am trying to design my webpage, www.evdetailing.com, using div tags.
    Here is the site working okay in IE Explorer (http://evdetailing.com/whatswrong.JPG)
    There's nothing to be seen at the link above?

  • Nested Divs HELP, I'm stupid!!!

    O.k. I've been talked into redoing my works website ... &
    last time a designed a site I used tables... many moons ago. Anyway
    thought I'd attempt css. I've read forums etc. saying make the
    container 100% height etc. etc. Can someone have a look for me and
    save my weekend pls.. Thanks in advace.

    > I've read forums etc. saying make the container 100%
    height etc. etc.
    Surely you haven't read them carefully enough if this is what
    you remember
    from them.
    But - is there a question in your post? What is it that is
    going wrong for
    you?
    Could it be that this is what you want? (I removed the
    unnecessary and
    redundant CSS, added a few float clearing elements and some
    paragraphs to
    the text).
    <!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>Untitled Document</title>
    <link href="template.css" rel="stylesheet" type="text/css"
    />
    <style type="text/css">
    <!--
    @charset "utf-8";
    body {
    margin: 0px;
    text-align: center;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 12px;
    line-height: 18px;
    text-decoration: none;
    #container {
    width: 100%;
    background-color: #FFFFFF;
    #header_wrapper {
    margin: 0px;
    background-image: url(images/bg.gif);
    #header {
    width: 880px;
    margin-right: auto;
    margin-left: auto;
    height: 195px;
    background-image: url(images/banner.jpg);
    background-repeat: no-repeat;
    #content {
    background-color: #FFFFFF;
    width: 820px;
    margin-right: auto;
    margin-left: auto;
    padding: 30px;
    margin-top: 0px;
    margin-bottom: 0px;
    overflow: hidden;
    #content_left {
    width: 50%;
    text-align: justify;
    float: left;
    background-color: #FFFFFF;
    border-right-width: 1px;
    border-right-style: dotted;
    border-right-color: #29508B;
    padding-right: 30px;
    margin-top: 30px;
    margin-right: 30px;
    margin-bottom: 30px;
    #content_right {
    background-color: #FFFFFF;
    float: right;
    width: 270px;
    padding-top: 30px;
    padding-bottom: 30px;
    color: #FF0000;
    padding-right: 30px;
    #footer_wrapper {
    background-color: #0000FF;
    #footer {
    margin-right: auto;
    margin-left: auto;
    height: 80px;
    background-color: #FFFF00;
    width: 880px;
    clear: both;
    .hw_txtad {
    font-size: 14px;
    line-height: 20px;
    font-weight: bold;
    color: #294F8D;
    letter-spacing: -5em;
    text-align: right;
    word-spacing: -2em;
    .hw_txtad_small {
    font-size: 12px;
    line-height: 15px;
    font-weight: bold;
    color: #294F8D;
    letter-spacing: -5em;
    text-align: right;
    word-spacing: -2em;
    #flash {
    height: 490px;
    width: 680px;
    margin-right: auto;
    margin-left: auto;
    #nav {
    color: #FF0000;
    position: absolute;
    left: 240px;
    top: 35px;
    padding-right: 10px;
    .navtxt {
    font-size: 12px;
    line-height: 15px;
    font-weight: bold;
    text-transform: uppercase;
    color: #2C5491;
    padding-right: 15px;
    a.navtxt:hover {
    color: #999999;
    .style3 {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 125.5%;
    -->
    </style>
    </head>
    <body>
    <div id="container">
    <div id="header_wrapper">
    <div id="nav"><a href="#"
    class="navtxt">home</a><a href="#"
    class="navtxt">flipping book</a><a href="#"
    class="navtxt">testimonials</a><a href="#"
    class="navtxt">contact us</a><a
    href="#" class="navtxt">beautyware</a></div>
    <div id="info"></div>
    <div id="header"></div>
    </div>
    <div id="content">
    <div id="content_left">
    <p>The greatest challenge facing salons today is how
    to
    manage all the time-consuming accounting and managerial
    tasks and
    still have
    enough energy left to perform at their absolute
    best.</p>
    <p>That is why Hairware has been so well received by
    salons throughout
    Australia and Asia throughout the last twenty years.
    Hairware
    continues to
    evolve based on industry needs, advances in technology and
    government
    and
    accounting regulations and approximately every four years
    the Hairware
    program is completely redeveloped.</p>
    <p>While Hairware helps salons with the management and
    accounting side
    of
    the business, it also has some outstanding features that
    allow salons
    to
    develop the service side of their operations. This means
    that salon
    operators
    have more time to focus on delivering exceptional client
    service.</p>
    <p>Such service may include anything from a client
    tailored VIP Loyalty
    Program and comprehensive client information file to what
    type of
    beverage a
    client likes and whether they want to have their appointment
    confirmed
    by
    SMS. All these special features are designed to help salons
    stay on
    top of
    each client?s individual needs. Leaving clients with a
    favourable
    impression
    means repeat business and more word-of-mouth
    referrals.</p>
    <p>Each new version of Hairware promises to break new
    ground and the
    Version
    7 software was released to celebrate Hairware?s 20th
    Anniversary.
    Hairware
    Version 7 presents a myriad of opportunities to enhance your
    salon
    operations
    and leave you time to perform your best styling work for
    your
    clients.</p>
    </div>
    <div id="content_right"><img
    src="images/hw_ad_image.jpg"
    alt="hairware_girl" width="300" height="200" />
    <p class="style3">The system that allows you to spend
    more time doing
    the
    things that you want to do...</p>
    </div>
    </div>
    <div id="footer_wrapper">
    <div id="footer">Content for id "footer" Goes
    Here</div>
    </div>
    </body>
    </html>
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "jhb" <[email protected]> wrote in message
    news:[email protected]...
    > O.k. I've been talked into redoing my works website ...
    & last time a
    > designed
    > a site I used tables... many moons ago. Anyway thought
    I'd attempt css.
    > I've
    > read forums etc. saying make the container 100% height
    etc. etc. Can
    > someone
    > have a look for me and save my weekend pls.. Thanks in
    advace.
    >

  • Ichat no longer works (US to UK move)(error 8) NEWBIE here, please help

    hi. just did two changes.
    1) moved to the UK from US
    2) downloaded ichatUSB new version, since I bought it instead of using the trial
    keep getting error-8, want to video with family back home, please help!
    Date/Time: 2007-03-05 08:26:44.416 +0100
    OS Version: 10.4.8 (Build 8L127)
    Report Version: 4
    iChat Connection Log:
    AVChat started with ID 4219119276.
    circleofwillie: State change from AVChatNoState to AVChatStateWaiting.
    0x58a0780: State change from AVChatNoState to AVChatStateInvited.
    0x58a0780: State change from AVChatStateInvited to AVChatStateConnecting.
    circleofwillie: State change from AVChatStateWaiting to AVChatStateConnecting.
    circleofwillie: State change from AVChatStateConnecting to AVChatStateEnded.
    Chat ended with error -8
    0x58a0780: State change from AVChatStateConnecting to AVChatStateEnded.
    Chat ended with error -8
    Video Conference Error Report:
    Video Conference Support Report:
    Video Conference User Report:
    Binary Images Description for "iChat":
    0x1000 - 0x172fff com.apple.iChat 3.1.7 (444) /Applications/iChat.app/Contents/MacOS/iChat
    0x5c5000 - 0x5c6fff com.ecamm.pluginloader Ecamm Plugin Loader v1.0.5 (1.0.5) /Library/InputManagers/Ecamm/Ecamm Plugin Loader.bundle/Contents/MacOS/Ecamm Plugin Loader
    0x5ca000 - 0x5e4fff com.ecamm.ichatusbcam v2.2.1 (2.2.1) /Library/InputManagers/Ecamm/Plugins/iChatUSBCam.plugin/Contents/MacOS/iChatUSB Cam
    0x1761000 - 0x1764fff com.ecamm.screenview ScreenView v1.0.3 (1.0.3) /Library/InputManagers/Ecamm/Plugins/iChatUSBCam.plugin/Contents/Resources/Scre en.component/Contents/MacOS/Screen
    0x1769000 - 0x1782fff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLDriver.bundl e/GLDriver
    0x178d000 - 0x1797fff com.apple.IOFWDVComponents 1.7.9 /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0x17d8000 - 0x17f3fff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x3ee2000 - 0x3f21fff tw.com.sonix.webcam.sn9c102 1.0 /Library/Components/Sonix SN9C102 WebCam.component/Contents/MacOS/Sonix SN9C102 WebCam
    0x3f4f000 - 0x405efff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x408d000 - 0x41f0fff com.apple.GeForceFXGLDriver 1.4.18 (4.1.8) /System/Library/Extensions/GeForceFXGLDriver.bundle/Contents/MacOS/GeForceFXGLD river
    0x4211000 - 0x4250fff com.apple.QuickTimeFireWireDV.component 7.1.3 /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x425b000 - 0x428dfff com.apple.QuickTimeIIDCDigitizer 7.1.3 /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/Quick TimeIIDCDigitizer
    0x42a7000 - 0x42ecfff com.apple.QuickTimeUSBVDCDigitizer 1.6.5 /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/Qui ckTimeUSBVDCDigitizer
    0x438b000 - 0x438cfff com.apple.aoa.halplugin 2.5.6 (2.5.6b5) /System/Library/Extensions/IOAudioFamily.kext/Contents/PlugIns/AOAHALPlugin.bun dle/Contents/MacOS/AOAHALPlugin
    0x5a56000 - 0x5a69fff com.apple.audio.AudioIPCPlugIn 1.0.0 (1.0) /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x5a86000 - 0x5abffff com.apple.audio.SoundManager.Components 3.9.1 /System/Library/Components/SoundManagerComponents.component/Contents/MacOS/Soun dManagerComponents
    0x6153000 - 0x61bcfff com.apple.AppleIntermediateCodec 1.0.1 (124) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x61d1000 - 0x624afff com.apple.applepixletvideo 1.2.5 (1.2d5) /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x8fe00000 - 0x8fe51fff dyld /usr/lib/dyld
    0x90000000 - 0x901bcfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90214000 - 0x90219fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9021b000 - 0x90268fff com.apple.CoreText 1.0.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90293000 - 0x90344fff com.apple.ApplicationServices.ATS 1.9.5 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90373000 - 0x9072dfff com.apple.CoreGraphics 1.258.38 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907ba000 - 0x90893fff com.apple.CoreFoundation 6.4.6 (368.27) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908dc000 - 0x908dcfff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908de000 - 0x909e0fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a3a000 - 0x90abefff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90ae8000 - 0x90b58fff com.apple.framework.IOKit 1.4 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b6e000 - 0x90b80fff libauto.dylib /usr/lib/libauto.dylib
    0x90b87000 - 0x90e5efff com.apple.CoreServices.CarbonCore 681.8 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ec4000 - 0x90f44fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f8e000 - 0x90fcffff com.apple.CFNetwork 129.19 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90fe4000 - 0x90ffcfff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x9100c000 - 0x9108dfff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x910d3000 - 0x910fdfff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9110e000 - 0x9111cfff libz.1.dylib /usr/lib/libz.1.dylib
    0x9111f000 - 0x912dafff com.apple.security 4.6 (29770) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913d9000 - 0x913e2fff com.apple.DiskArbitration 2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913e9000 - 0x91411fff com.apple.SystemConfiguration 1.8.3 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91424000 - 0x9142ffff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x91434000 - 0x9143cfff libbsm.dylib /usr/lib/libbsm.dylib
    0x91440000 - 0x914bbfff com.apple.audio.CoreAudio 3.0.4 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914f8000 - 0x914f8fff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914fa000 - 0x91532fff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x9154d000 - 0x9161afff com.apple.ColorSync 4.4.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9166f000 - 0x91700fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x91747000 - 0x917fefff com.apple.QD 3.10.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x9183b000 - 0x91899fff com.apple.HIServices 1.5.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918c8000 - 0x918ecfff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91900000 - 0x91925fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x91938000 - 0x9197afff com.apple.LaunchServices 181 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x91996000 - 0x919aafff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x919b8000 - 0x919fafff com.apple.ImageIO.framework 1.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a10000 - 0x91ad7fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b25000 - 0x91b3afff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91b3f000 - 0x91b5dfff com.apple.ImageIO.framework 1.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b63000 - 0x91bd2fff com.apple.ImageIO.framework 1.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91be9000 - 0x91bedfff com.apple.ImageIO.framework 1.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91bef000 - 0x91c4efff com.apple.ImageIO.framework 1.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91c53000 - 0x91c90fff com.apple.ImageIO.framework 1.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91c97000 - 0x91cb0fff com.apple.ImageIO.framework 1.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91cb5000 - 0x91cb8fff com.apple.ImageIO.framework 1.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91cba000 - 0x91cbafff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91cbc000 - 0x91da1fff com.apple.vImage 2.4 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91da9000 - 0x91dc8fff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91e34000 - 0x91ea2fff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91ead000 - 0x91f42fff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91f5c000 - 0x924e4fff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x92517000 - 0x92842fff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92872000 - 0x928fafff com.apple.DesktopServices 1.3.5 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9293b000 - 0x92b66fff com.apple.Foundation 6.4.6 (567.27) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92c84000 - 0x92d62fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x92d82000 - 0x92e70fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92e82000 - 0x92ea0fff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92eab000 - 0x92f05fff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92f23000 - 0x92f23fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92f25000 - 0x92f39fff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92f51000 - 0x92f61fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92f6d000 - 0x92f82fff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92f94000 - 0x9301bfff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x9302f000 - 0x9303afff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x93044000 - 0x93071fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9308b000 - 0x9309bfff com.apple.print.framework.Print 5.0 (190.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x930a7000 - 0x9310dfff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x9313e000 - 0x9318dfff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x931bb000 - 0x931d8fff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x931ea000 - 0x931f7fff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x93200000 - 0x9350dfff com.apple.HIToolbox 1.4.8 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x9365c000 - 0x93668fff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x9366d000 - 0x9368dfff com.apple.DirectoryService.Framework 3.1 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x936e1000 - 0x936e1fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x936e3000 - 0x93d16fff com.apple.AppKit 6.4.7 (824.41) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x940a3000 - 0x94113fff com.apple.CoreData 80 /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9414c000 - 0x9420ffff com.apple.audio.toolbox.AudioToolbox 1.4.3 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x94261000 - 0x94261fff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94263000 - 0x94436fff com.apple.QuartzCore 1.4.9 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9448c000 - 0x944c9fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x944d1000 - 0x94521fff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x94561000 - 0x945a6fff com.apple.bom 8.5 (86.3) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x945b2000 - 0x945eafff com.apple.vmutils 4.0.0 (85) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x9462d000 - 0x94649fff com.apple.securityfoundation 2.2 (27710) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x9465d000 - 0x946a1fff com.apple.securityinterface 2.2 (27692) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x946c5000 - 0x946d4fff com.apple.CoreGraphics 1.258.38 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x946dc000 - 0x946e8fff com.apple.CoreGraphics 1.258.38 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x9472e000 - 0x94746fff com.apple.CoreGraphics 1.258.38 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x9474d000 - 0x94a1cfff com.apple.QuickTime 7.1.3 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94adf000 - 0x94b50fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x94bc3000 - 0x94be3fff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x94ceb000 - 0x94e1bfff com.apple.AddressBook.framework 4.0.4 (485.1) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94ead000 - 0x94ebcfff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94ec4000 - 0x94ef1fff com.apple.LDAPFramework 1.4.1 (69.0.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94ef8000 - 0x94f08fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x94f0c000 - 0x94f3bfff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x94f4b000 - 0x94f68fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x952ae000 - 0x9531cfff com.apple.Bluetooth 1.7.8 (1.7.8f2) /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x9567f000 - 0x9570dfff com.apple.WebKit 418.9.1 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x95769000 - 0x957fffff com.apple.JavaScriptCore 418.3 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    0x9583c000 - 0x95b48fff com.apple.WebCore 418.21 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x95cd1000 - 0x95cfafff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x96eca000 - 0x96ee9fff com.apple.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x9755a000 - 0x9757ffff com.apple.speech.LatentSemanticMappingFramework 2.2 /System/Library/PrivateFrameworks/LatentSemanticMapping.framework/Versions/A/La tentSemanticMapping
    0x97600000 - 0x976c1fff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x976ec000 - 0x976edfff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLSystem.dy lib
    0x976ef000 - 0x976fcfff com.apple.agl 2.5.6 (AGL-2.5.6) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x97854000 - 0x97855fff com.apple.MonitorPanelFramework 1.1.1 /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x97ff1000 - 0x98118fff com.apple.viceroy.framework 273.5 /System/Library/PrivateFrameworks/VideoConference.framework/Versions/A/VideoCon ference
    0x988be000 - 0x988c1fff com.apple.DisplayServicesFW 1.8.1 /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x98b0a000 - 0x994c1fff com.apple.QuickTimeComponents.component 7.1.3 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x996e8000 - 0x996ecfff com.apple.QuickTimeH264.component 7.1.3 /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x996ee000 - 0x997d2fff com.apple.QuickTimeH264.component 7.1.3 /System/Library/QuickTime/QuickTimeH264.component/Contents/Resources/QuickTimeH 264.altivec
    0x9991e000 - 0x999e5fff com.apple.QuickTimeMPEG4.component 7.1.3 /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x99f04000 - 0x99f0ffff com.apple.IMFramework 3.1.3 (429) /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x99f1a000 - 0x9a073fff com.apple.MessageFramework 2.1 (752.2) /System/Library/Frameworks/Message.framework/Versions/B/Message

    Hi
    Further to my first post:
    Chat ended with error -8
    Video Conference Error Report:
    Video Conference Support Report:
    Video Conference User Report:
    Binary Images Description for "iChat":
    This part tells me that port 5060 is being blocked somewhere when it tries to connect to SNATMAP to start the SIP process. Some questions:
    How are you connected to internet?
    What make & model of modem are you using?
    Are you using a separate modem & router or a combined?
    Do both do NAT?
    Do you have VoIP?
    See if something at http://www.ralphjohnsuk.dsl.pipex.com/page3.html#_ports or http://www.ralphjohnsuk.dsl.pipex.com/page4.html helps.
    Steve

  • Newbie Flash Banners Help

    First I am new to Flash and have mostly worked in PS.
    I have created several animated banners in flash.  The file sizes are large.  I am trying to find a what is the best format and settings to use export these for upload into an website affiliate program (CJ).
    I also want to know if I should have taken all of the media from PS and "saved for web" and stripped them down before I imported them to flash.  I was hoping that there was a setting in Flash that would do that but I am not sure if there is one.   The files for web banners are supposed to very small.  I am just trying to understand how I should have created them and also how to publish them.   I converted all of the images symbols thinking that would help. That did not.
    Currently if I publish a gif they look horrible.  I know I doing something wrong, but I just direction. They look great in flash but I am stuck.  Any help is greatly appreciated.

    http://swf-head.blogspot.com/2009/09/flash-optimization-performance-vs-file.html
    You should save for web out of PS. If they need transparency, use png. If they are simply rectangles, use jpgs (about 65 - 70% out of PS). Then in flash, in the library right click on your jpg and hit Properties, uncheck "Use Imported Bitmap Data" and change that percentage to what ever you like - the higher the number the larger file size, the lower number the worse quality.
    Text in flash looks much better. Keep in mind that fonts can carry extra weight.
    Ned and KGlad are also right, make the images the correct size out of PS first.
    There is a lot that goes into optimization, read the link above, its only part of optimizing - the images part.

  • Spry Newbie needs some help

    It is the little things in life I was always told and all I
    am trying to do is to pretty much duplicate the form validation
    demo. However I am not even sure where to begin. I have created
    many forms and have had them submit and returned in an emial
    successfully but I am not quite sure how the Spry widgets work or
    how to apply them to an existing form or even a new one for that
    matter.
    Does the page have to be dynamic in order to use the Spry
    validation widget? Hopefully iy can be used on a static page. Are
    there any tutorials out there for creating a form in DW CS3 using
    the Spry validation widget?
    Thanks,
    Houston

    Hi,
    First of all, the Spry widgets works on static pages, so you
    don't necessary need to have a dynamic page.
    It is not to hard to make the demo from site, and I'll
    explain you the basic steps you should do to have these widgets
    working on your page. The css part, you can customize as you wish,
    the demo from site is just a customization.
    As I saw, you use Dreamweaver for creating this demo, so I'll
    give you the explanations for how to do it on DW.
    In a html page, add a form. Inside form add: a Spry Textfiled
    validation input (from the Spry tag), a Spry Select input and a
    Spry Textarea input.
    If you go in design view and select an widget, a blue border
    will appear and on the Property Inspector will appear all the
    properties you need to customize.
    To see exactly what does every property, please check the
    Dreamweaver help.
    This is the start to create you own form containing Spry
    widgets.
    Hope this help,
    Diana

Maybe you are looking for

  • PDF report generation fails with v7.01

    I have software that generates a PDF report. I upgraded FireFox to v7.01 and I now get an error that the printer is not activated even though I am saving the report to a disc file and not printing it. Any ideas or suggestions are appreciated.

  • Applying a border to an image in FrameMaker that doesn't show in RoboHelp?

    Would applying a conditional setting work best? Is there another way to get it to work?

  • How to schedule in java?

    Hi! I'm new to Java. I have a "backup database" project. I don't know how to perform it, how to make it run along Window. Describe as long as: - In main application, when user decide schedule their job, program will create a Job object (a class). -->

  • Unable to upgrade certain songs to iTunes Plus

    When I go to the iTunes Plus section it shows me a few songs and albums which I can upgrade but when I try to upgrade/buy I get a message that reads: "The item you tried to buy is no longer available" So what do I do?

  • Problem with keystore

    Good morning. I have a certificate issued by Thawte. The problem is that i lost the keystore that i used to create the certificate request. I import certificate in a new keystore. So that originates when I attempt start tomcat, i have the following e