Specifying a DOCTYPE breaks my layers

When I do not specify a DOCTYPE, my layers work but my rollover scripts do not. When I do specify DOCTYPE, my layers display incorrently. here is the same page with and without a DOCTYPE:
Without (rollovers not working)
http://zamiadesign.com/whatiszamia.html
With (layers not working)
http://rivercitybikecab.com/zamia/whatiszamia.html
Someone please help me, I need both rollovers to display and layers to align.

Yes this seems to work! However, in the process of adding DOCTYPE now I seem to have lost the tiling image in the background. I see white
at the bottom and it should be a tile of the orange/peach color:
http://zamiadesign.com/
vs. new page with DOCTYPE:
http://rivercitybikecab.com/zamia/
Thanks for your help!!!

Similar Messages

  • When using CSS in APEX  do you need to specify a DOCTYPE?

    Hi
    Have just started looking at creating my own CSS for APEX apps. Have read that for non-apex web pages that without a DOCTYPE being specified, browsers such as Mozilla & IE-6 go into Quirks mode, a backward compatibility feature that functions as if it has no knowledge of modern DOM.
    Does this affect apex pages and do you need to specify a DOCTYPE?
    regards
    Tony

    The built-in APEX HTML page templates don't include DOCTYPES, virtually all have table-based layouts, so whatever browser you bring along, they're gonna party like it's 1999 and everyone is down with Win IE5. This is due to DOCTYPE switching.
    The main thing that working this way achieves is that Oracle avoid having to include additional CSS rules and abstruse hacks to deal with CSS rendering bugs in each and every browser out there. Some people think this is A Good Thing.
    Web Standards are another Good Thing, and if properly implemented in each and every browser out there life as a web developer/designer would be a lot simpler. Including a DOCTYPE in your page is the starting point for standards-based development. You're declaring "this document is compliant with the stated version of (X)HTML". It's up to you to ensure that it is.
    Using an incomplete DOCTYPE:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN">
    proclaims your adherence to the XHTML 1.0 Strict standard, and you can take advantage of this by including a validator in your workflow to help you stick to it. However as it's incomplete, the browsers will still revert to rendering CSS in quirks mode, and using Javascript with a proprietary DOM.
    A complete DOCTYPE:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "html://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    says that you truly believe it's 2008 and will make the browsers render CSS in standards mode, and work with the W3C standard DOM. This is when you may have to deal with browser-dependent rendering bugs. Which might make it seem that Web Standards are more trouble than they're worth, but if you stick to them you won't have any real trouble with getting sites to work with Firefox, Safari and Opera, maybe IE7 and possibly IE6. And you can take advantage of better CSS support in the first 4 of these to apply more advanced techniques.
    So, you don't need a DOCTYPE in your APEX pages, but you can include one, and you have to if you want to do standards-based development (as seen here and here).
    APEX doesn't (yet?) create 100% standards-compliant code [and sometimes neither do template developers; content creators almost never] but it has improved in this area version on version.

  • DOCTYPE and window scrolling break mouse capture positioning in IE6/IE8

    If I specify the DOCTYPE header in my html page the following bug is observed:
    If you scroll the browser window down using the scroll wheel or the scroll bar and click on the map, the position is recorded with a vertical offset of the amount in which the window was scrolled. This problem happens in IE6 and IE8 (non compatibility mode) Firefox and IE7 work fine. Removing the DOCTYPE specification from the HTML document resolves the scroll button but causes other HTML compliant styling issues that I would prefer not to tackle.
    The doc types that cause the error that I have experimented with:
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    or
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
    The bug seems to be an IE6/8 bug or abnormality
    var mouseLoc = mapview.getMouseLocation();
    Some reference to this problem and a low level fix is described here
    http://unixpapa.com/js/mouse.html (under Finding Mouse Positions)
    I did override a method in the (unfortunately obfuscated) oraclemap.js
    Add the following method 'after' loading the oraclemaps.js
    This resolves the problem - so far - i am unsure of any side effects it causes.
    MVUtil._f175=function(x56)
    x56=(x56)?x56:((window.event)?event:null);
    var x57=0;
    var x58=0;
    if(x56.pageX)
    x57=x56.pageX;
    x58=x56.pageY;
    else if(x56.clientX)
    x57=x56.clientX+document.body.scrollLeft-document.body.clientLeft;
    x58=x56.clientY+document.body.scrollTop-document.body.clientTop;
    // BUG FIX - Included the scrollTop in the check below....
    if(document.body.parentElement&&(document.body.parentElement.clientLeft || document.body.parentElement.scrollTop))
    var x59=document.body.parentElement;
    x57+=x59.scrollLeft-x59.clientLeft;
    x58+=x59.scrollTop-x59.clientTop;
    Edited by: user11202763 on Oct 6, 2009 3:09 PM
    Edited by: user11202763 on Oct 6, 2009 3:21 PM

    Add the doc type to the FIRST line of the HTML file
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
    Add some javascript so that if you click on the map, it places a marker on the map at the point of the mouse click.
    Then show the map, resize the window so you have scroll bars (make it smaller). Scroll down and click the map, you will notice that the point clicked on is the offset by the distance that the window has been scrolled down.

  • Control break stmts

    Can anyone explain the concepts of Control break statements
    Give me a small simple sample program..

    Hi ,
    Check in 21 days of ABAP book or in abap docu.
    Control break statements are used to stop the control at a particular point.
    1. AT NEW f.
    2. AT END OF f.
    3. AT FIRST.
    4. AT LAST.
    Effect
    In a LOOP which processes a dataset created with EXTRACT , you can use special control structures for control break processing. All these structures begin with AT and end with ENDAT . The sequence of statements which lies between them is then executed if a control break occurs.
    You can use these key words for control break processing with extract datasets only if the active LOOP statement is proceesing an extract dataset.
    The control level structure with extract datasets is dynamic. It corresponds exactly to the sort key of the extract dataset, i.e. to the order of fields in the field group HEADER by which the extract dataset was sorted .
    At the start of a new control level (i.e. immediately after AT ), the following occurs in the output area of the current LOOP statement:
    All default key fields (on the right) are filled with "*" after the current control level key.
    All other fields (on the right) are set to their initial values after the current control level key.
    Between AT and ENDAT , you can use SUM to insert the appropriate control totals in the number fields (see also ABAP/4 number types ) of the LOOP output area (on the right) after the current control level key. Summing is supported both at the beginning of a control level ( AT FIRST , AT NEW f ) and also the end of a control level ( AT END OF f , AT LAST ).
    At the end of the control level processing (i.e. after ENDAT ), the old contents of the LOOP output area are restored.
    Notes
    When calculating totals, you must ensure that the totals are inserted into the same sub-fields of the LOOP output area as those where the single values otherwise occur. If there is an overflow, processing terminates with a runtime error.
    If an internal table is processed only in a restricted form (using the additions FROM , TO and/or WHERE with the LOOP statement), you should not use the control structures for control level processing because the interaction of a restricted LOOP with the AT statement is currenly not properly defined.
    With LOOP s on extracts, there are also special control break control structures you can use.
    Note
    Runtime errors
    SUM_OVERFLOW : Overflow when calculating totals with SUM .
    Variant 1
    AT NEW f.
    Variant 2
    AT END OF f.
    Effect
    f is a sub-field of an internal table processed with LOOP . The sequence of statements which follow it is executed if the sub-field f or a sub-field in the current LOOP line defined (on the left) before f has a differnt value than in the preceding ( AT NEW ) or subsequent ( AT END OF ) table line.
    Example
    DATA: BEGIN OF COMPANIES OCCURS 20,
    NAME(30),
    PRODUCT(20),
    SALES TYPE I,
    END OF COMPANIES.
    LOOP AT COMPANIES.
    AT NEW NAME.
    NEW-PAGE.
    WRITE / COMPANIES-NAME.
    ENDAT.
    WRITE: / COMPANIES-PRODUCT, COMPANIES-SALES.
    AT END OF NAME.
    SUM.
    WRITE: / COMPANIES-NAME, COMPANIES-SALES.
    ENDAT.
    ENDLOOP.
    The AT statements refer to the field COMPANIES-NAME .
    Notes
    If a control break criterion is not known until runtime, you can use AT NEW (name) or AT END OF (name) to specify it dynamically as the contents of the field name . If name is blank at runtime, the control break criterion is ignored and the sequence of statements is not executed. If name contains an invalid component name, a runtime error occurs.
    By defining an offset and/or length, you can further restrict control break criteria - regardless of whether they are specified statically or dynamically.
    A field symbol pointing to the LOOP output area can also be used as a dynamic control break criterion. If the field symbol does not point to the LOOP output area, a runtime error occurs.
    Note
    Runtime errors
    AT_BAD_PARTIAL_FIELD_ACCESS : Invalid sub-field access when dynamically specifying the control break criterion.
    AT_ITAB_FIELD_INVALID : When dynamically specifying the control break criterion via a field symbol, the field symbol does not point to the LOOP output area.
    ITAB_ILLEGAL_COMPONENT : When dynamically specifying the control break criterion via (name) the field name does not contain a valid sub-field name.
    Variant 3
    AT FIRST.
    Variant 4
    AT LAST.
    Effect
    Executes the appropriate sequence of statements once during the first ( AT FIRST ) or last ( AT LAST ) loop pass.
    Example
    DATA: BEGIN OF COMPANIES OCCURS 20,
    NAME(30),
    PRODUCT(20),
    SALES TYPE I,
    END OF COMPANIES.
    LOOP AT COMPANIES.
    AT FIRST.
    SUM.
    WRITE: 'Sum of all SALES:',
    55 COMPANIES-SALES.
    ENDAT.
    WRITE: / COMPANIES-NAME, COMPANIES-PRODUCT,
    55 COMPANIES-SALES.
    ENDLOOP.
    ON CHANGE OF and AT NEW are same and we don't use On change of now.
    All this AT NEW, AT FIRST, AT END OF and AT LAST are called control break statements of Internal tables and are used to calculate the TOTALS based on sertain key fields in that internal table
    FIrst to use these statements the ITAB has to be sorted by the key fields on whcih you need the SUM of the fields.
    Some time you will get * when mopving data from this int table to other table using these commands
    so you have to use
    READ TABLE ITAB INDEX SY-TABIX in AT..ENDAT..if you are using other fields between them
    DATA: sflight_tab TYPE SORTED TABLE OF sflight
    WITH UNIQUE KEY carrid connid fldate,
    sflight_wa LIKE LINE OF sflight_tab.
    SELECT *
    FROM sflight
    INTO TABLE sflight_tab.
    LOOP AT sflight_tab INTO sflight_wa.
    AT NEW connid.
    WRITE: / sflight_wa-carrid,
    sflight_wa-connid.
    ULINE.
    ENDAT.
    WRITE: / sflight_wa-fldate,
    sflight_wa-seatsocc.
    AT END OF connid.
    SUM.
    ULINE.
    WRITE: / 'Sum',
    sflight_wa-seatsocc UNDER sflight_wa-seatsocc.
    SKIP.
    ENDAT.
    AT END OF carrid.
    SUM.
    ULINE.
    WRITE: / 'Carrier Sum',
    sflight_wa-seatsocc UNDER sflight_wa-seatsocc.
    NEW-PAGE.
    ENDAT.
    AT LAST.
    SUM.
    WRITE: / 'Overall Sum',
    sflight_wa-seatsocc UNDER sflight_wa-seatsocc.
    ENDAT.
    ENDLOOP.
    regards,
    Prabhu
    Reward if it is helpful

  • Spatial Join on Topology feature layers

    I would like to be able to do a "spatial join" on topolgy feature layers. With sdo_geometry layers a spatial join finds ALL specified spatial interactions between complete layers. I would like to know if this is possible using topology feature layers, or if this functionality may be coming in the future along with (hopefully) sdo_topo_nn, sdo_topo_nn_distance, and sdo_topo_within_distance....?
    Alden

    Hi,
    updating millions of records could lock your resource and other users may have trouble connecting or reading data.
    In some cases, variable table is your friend, insert the data you needed to a variable table before issuing the update.
    with that, you may need to have (nolock) on each table. eg. 
    [LegislativeMapData2014].[dbo].[CONGRESS_2014] (nolock)
    Regards,
    gioVhan
    Please remember to mark the replies as answers if they help and unmark them if they provide no help.

  • Spry & DOCTYPE

    Hi folks
    I've got spry 1.6 installed and I've created a tabbed panel
    which also has another tabbed panel inside one of the tabs. They
    both use different css files as they both have different attributes
    set to it.
    I'm currently accessing the page with these tabbed panels
    using IE6 and FF 2.0.0.11. I've not set a DOCTYPE in the page and
    have it currently running in quirks mode.
    The tabbed panels work great and look excellent, however as
    soon as I add a DOCTYPE, the two panels cause an issue.
    I've attached 2 images to show you what it should look like
    and what happens when the DOCTYPE is added. This problem occurs
    with ALL DOCTYPES (including the XHTML Transitional too).
    Unfortunately I can't show you a working demo as I'm developing on
    an Intranet.
    As soon as the DOCTYPE is removed, it works fine again. I
    know the simple answer is not to use a DOCTYPE but I really need to
    use a DOCTYPE as I've got other scripts depending on it.
    Image
    - What It Should Look Like (In Quirks Mode)
    What
    It Does After The DOCTYPE Is Added In IE6 and FF 2.0.0.11
    Please help. I've been looking for a fix for quite some time
    now!
    Thanks
    Anis
    P.s. If you require more info - just let me know :)

    Hi Anis,
    All of our Tabbed Panels samples specify a DOCTYPE and work
    properly, so I'm thinking your problem has to do with some
    differences in the way your CSS is being interpreted within 2
    different modes. I can't actually help you without seeing your
    basic markup and the CSS you use for your tabbed panels (which btw,
    you can paste here if you'd like, or send it to me in a private
    message).
    --== Kin ==--

  • Insert Line Break with Syndicator

    Hello,
    I have a quite "simple" question: Is it possible to insert a linebreak after a record set using the MDM Syndicator? By default there are some values offered, like ',' or ';' and so on to seperate values, and you can specify seperators by your own. But how to specify a line break?
    Thanks for your replies!
    Andreas

    Andreas,
    As far as I know, there is no support for specifying the line break. The records automatically appear in separate rows (If you are using Flat file as Destination).
    If you still need to specify your own custom character at the end of each line, create a "Custom Item" and enter the required character in the "Formula" for Custom Item and map this custom Item to a newly created destination field (at the end of all destination items).
    Hope this helps,
    Regards,
    Rajani Kumar

  • Picking when to switch layers on dual layer DVDs

    I hope somebody can help.
    I'm burning a project that takes up more than a single layer. I've managed to get iDVD to burn it no problem. However, iDVD picks the spot where it switches to the second layer - right at the start of a piece of music. How do I pick the point (between scenes) when it switches. With the current project I only need to bring it forward by a couple of seconds. One option is just to add a 2 second black screen at the start of the film to move everything along slightly. However I'd prefer to be able to pick the place. I have iDVD 08 and Toast 6 titanium. I know I could probably do it with DVD Studio Pro but I'm not ready for the big upgrade to FC studio.
    Any pointers or suggestions are welcome.

    As you have found, you can not specify the layer break point with iDVD. Sorry.

  • Generate Multiple Invoices in One PDF

    Hi,
    I have requirement whereby I need to generate multiple invoices in one PDF file. I am using Oracle BI Publisher with Oracle APEX 4.0.2
    If there is only one invoice that needs to be generated in one PDF file then I already have the solution whereby I print the APEX page item session state values on Invoice Header and get the invoice line items from a SQL Query in my RTF template.
    However how to the do the same when multiple invoice needs to be generated in one single PDF file ?
    Any pointers will highly appreciated.
    Thanks & Regards,
    Ashish

    asagarwal wrote:
    However how to the do the same when multiple invoice needs to be generated in one single PDF file ?It should be pretty straight forward.
    Once you've got the query returning multiple rows, then just add a repeating group to your report (if an existing report, just select the section of the document that will repeat -> add-ins menu -> insert repeating group...; or right click selection -> BI Publisher -> Create group...), wherein the column values exist. You can even specify a page break at the end.
    By the way, this question is probably more suited for the {forum:id=245} forum.
    Ta,
    Trent

  • How do I change the overall size of a document including the contents?

    I have created a document for web at 1024 x 768. I would like to reduce the size of the document without having to resize all the content manually. Is there an easy way to do this?

    See my previous post: check 'Show Import Options' in Place box. then you'll get another dialog box, similar to this:
    Here you can specify page range, crop options, layers visibility.
    However, if your document contains too many pages to manage them manually (as it is on my screenshot), you should consider another option of placing - this nice Zanelli script:
    http://indesignsecrets.com/zanelli-releases-multipageimporter-for-importing-both-pdf-and-i ndd-files.php

  • How CAN I setup a custom local DTD to be used with XERCES

    Hi,
    can anyone help?
    I have to use a local DTD with XERCES which should be always used ("overwrite" the one specified in DOCTYPE if it exist, or should be used if no DOCTYPE is specified)
    I can not use EntityResolver because resolveEntity() is not called if there is no DOCTYPE specified.
    Also I can not use XSD because I have only DTD rules.
    Thanks,
    Cristian

    Thanks for your reply,
    what about using XERCES XNI?
    I could load a Grammar, as specified in the sample file xni.XMLGrammarBuilder from XERCES-J 2.8.1 samples, but I couldn't find a possibility to force it to be used with any document.
    Do you know? is it any possibility to do it?

  • DR8P Problems

    Hi,
     I cant seem to get my DR8P to burn any more, on any media. Here is a log from Nero it seems to indicate the first failure as
    Sense Key:  0x03 (KEY_MEDIUM_ERROR)
       Sense Code: 0x73
       Sense Qual: 0x03
    A quick google (03/73/03) shows that this is due to either dirty media, incompatible media or faulty firmware. I have tried upgrading to the latest firmware on the msi website but this didnt help either.
    Anyone got some smart suggestions
    Windows XP 5.1
    IA32
    WinAspi: File 'Wnaspi32.dll': Ver=4.60 (1021), size=45056 bytes, created 10/09/1999 14:06:00
    ahead WinASPI: File 'C:\Program Files\Ahead\nero\Wnaspi32.dll': Ver=2.0.1.74, size=164112 bytes, created 26/10/2004 18:35:34
    Nero version: 6.6.0.5 (Nero Express)
    Recorder:             <ATAPI DVD+/-R/RW8XMAX>   Version: 1.10 - HA 0 TA 1 - 6.6.0.5
     Adapter driver:      <nvatabus>                HA 0
     Drive buffer  :      2048kB
     Bus Type      :      default (0) -> ATAPI, detected: ?
    CD-ROM:               <SAMSUNG  DVD-ROM SD-616E >Version: F504 - HA 0 TA 0 - 6.6.0.5
     Adapter driver:      <nvatabus>                HA 0
    === Scsi-Device-Map ===
    CdRomPeripheral      : SAMSUNG DVD-ROM SD-616E       nvatabus Port 0 ID 0  DMA: Off
    CdRomPeripheral      : ATAPI DVD+/-R/RW8XMAX         nvatabus Port 0 ID 1  DMA: Off
    DiskPeripheral       : IC35L120AVV207-0              nvatabus Port 0 ID 3  DMA: Off
    DiskPeripheral       : Maxtor 7Y250M0                nvatabus Port 2 ID 2  DMA: Off
    === CDRom-Device-Map ===
    SAMSUNG DVD-ROM SD-616E    D:   CDRom0
    ATAPI DVD+/-R/RW8XMAX      E:   CDRom1
    =======================
    AutoRun : 1
    Excluded drive IDs:
    WriteBufferSize: 83886080 (0) Byte
    ShowDrvBufStat : 0
    BUFE           : 0
    Physical memory     : 1023MB (1048048kB)
    Free physical memory: 518MB (530464kB)
    Memory in use       : 49 %
    Uncached PFiles: 0x0
    Use Inquiry    : 1
    Global Bus Type: default (0)
    Check supported media : Disabled (0)
    4.8.2007
    ISO compilation
    21:36:19   #1 Text 0 File Isodoc.cpp, Line 6168
       Iso document burn settings
       Determine maximum speed : FALSE
       Simulate                : FALSE
       Write                   : TRUE
       Finalize CD             : FALSE
       Multisession            : TRUE
       Multisession type:      : Start multisession
       Burning mode            : DAO
       Mode                    : 1
       ISO Level               : 1 (Max. of 11 = 8 + 3 char)
       Character set           : ISO 9660
       Joliet                  : TRUE
       Allow pathdepth more than 8 directories : TRUE
       Allow more than 255 characters in path  : TRUE
       Write ISO9660 ;1 file extensions        : TRUE
    21:36:19   #2 Text 0 File Reader.cpp, Line 127
       Reader running
    21:36:19   #3 Text 0 File Writer.cpp, Line 122
       Writer ATAPI    DVD+/-R/RW8XMAX  running
    21:36:19   #4 ISO9660GEN -11 File geniso.cpp, Line 3286
       First writeable address = 0 (0x00000000)
    21:36:19   #5 Text 0 File Burncd.cpp, Line 3155
       Turn on Disc-at-once, using DVD media
    21:36:20   #6 Text 0 File DlgWaitCD.cpp, Line 257
       Last possible write address on media:  2295103 (510:01.28, 4482MB)
       Last address to be written:               1049 (  0:13.74,    2MB)
    21:36:20   #7 Text 0 File DlgWaitCD.cpp, Line 269
       Write in overburning mode: NO (enabled: CD DVD)
    21:36:20   #8 Text 0 File DlgWaitCD.cpp, Line 2310
       Recorder: ATAPI DVD+/-R/RW8XMAX, Media type: DVD+R
        Disc Manufacturer ID: RITEK, Media Type ID: F16, Product revision number: 1
        Disc Application Code: 0, Extended Information Indicators: 7
    21:36:20   #9 Text 0 File DlgWaitCD.cpp, Line 431
       >>> Protocol of DlgWaitCD activities: <<<
       =========================================
    21:36:20   #10 Text 0 File ThreadedTransferInterface.cpp, Line 829
       Setup items (after recorder preparation)
        0: TRM_DATA_MODE1 ()
           2 indices, index0 (150) not provided
           original disc pos #0 + 1200 (1200) = #1200/0:16.0
           relocatable, disc pos for caching/writing not required/ required, no patch infos
           -> TRM_DATA_MODE1, 2048, config 0, wanted index0 0 blocks, length 1200 blocks [ATAPI    DVD+/-R/RW8XMAX]
    21:36:23   #11 Text 0 File ThreadedTransferInterface.cpp, Line 1042
       Prepare recorder [ATAPI    DVD+/-R/RW8XMAX] for write in CUE-sheet-DAO
       DAO infos:
       ==========
        MCN: ""
        TOCType: 0x00; Session Closed, disc not fixated
        Tracks 1 to 1:
          1: TRM_DATA_MODE1, 2048/0x00, FilePos             0             0       2457600, ISRC ""
       DAO layout:
       ===========
        __Start_|____Track_|_Idx_|_CtrlAdr_|_RecDep__________
              0 |  lead-in |   0 |    0x41 | 0x00
              0 |        1 |   0 |    0x41 | 0x00
              0 |        1 |   1 |    0x41 | 0x00
           1200 | lead-out |   1 |    0x41 | 0x00
    21:36:23   #12 Phase 24 File dlgbrnst.cpp, Line 1832
       Caching of files started
    21:36:23   #13 Text 0 File Burncd.cpp, Line 4042
       Cache writing successful.
    21:36:23   #14 Phase 25 File dlgbrnst.cpp, Line 1832
       Caching of files completed
    21:36:23   #15 Phase 36 File dlgbrnst.cpp, Line 1832
       Burn process started at 2.4x (3,324 KB/s)
    21:36:23   #16 Text 0 File ThreadedTransferInterface.cpp, Line 2604
       Verifying disc position of item 0 (relocatable, disc pos, no patch infos, orig at #0): write at #0
    21:36:23   #17 Text 0 File Cdrdrv.cpp, Line 8332
       ---- DVD Structure: Physical Format Information (00h) ----
       Layer: 0, Address: 0 (0 h), AGID: 0; Length: 2050
        Book Type: DVD+R   (10), Part Version: 1
        Disc Size: 120 mm,      Maximum Rate: <not specified> (F h)
        Number of Layers: 1,    Track Path: Parallel Track Path (PTP),  Layer Type: recordable
        Linear Density:         0,267 um/bit,  Track Density:  0,74 um/track
        Starting Physical Sector Number of Data Area: 30000 h (DVD-ROM, DVD-R/-RW, DVD+R/+RW)
        End Physical Sector Number of Data Area:      26053F h
        End Sector Number in Layer 0:                 0 h
        Data in Burst Cutting Area (BCA) does not exist
         Disc Application Code: 0 / 0 h
         Extended Information indicators: 7 h
         Disc Manufacturer ID: RITEK...
         Media type ID: F16
         Product revision number: 1
         Number of Physical format information bytes in use in ADIP up to byte 63: 56
        Media Specific [16..63]:
             00 00 07 52 49 54 45 4B - 00 00 00 46 31 36 01 38    ...RITEK...F16.8
             23 54 37 12 02 50 6E 02 - 8C 68 16 16 0B 0B 0A 0A    #T7..Pn..h......
             01 1D 1E 0C 0C 12 12 01 - 00 00 00 00 00 00 00 00    ................
    21:36:23   #18 Text 0 File DVDPlusRW.cpp, Line 606
       Start write address at LBA 0
       DVD high compatibility mode: No
    21:36:43   #19 SCSI -1106 File Cdrdrv.cpp, Line 1432
       SCSI Exec, HA 0, TA 1, LUN 0, buffer 0x0A790000
       Status:     0x04 (0x01, SCSI_ERR)
       HA-Status   0x00 (0x00, OK)
       TA-Status   0x02 (0x01, SCSI_TASTATUS_CHKCOND)
       Sense Key:  0x03 (KEY_MEDIUM_ERROR)
       Sense Code: 0x73
       Sense Qual: 0x03
       CDB Data:   0x2A 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0x00
       Sense Data: 0x71 0x00 0x03 0x00 0x00 0x00 0x00 0x0A
                   0x00 0x00 0x00 0x00 0x73 0x03
    21:36:43   #20 CDR -1106 File Writer.cpp, Line 311
       Power calibration error
    21:36:43   #21 Text 0 File ThreadedTransfer.cpp, Line 228
       all writers idle, stopping conversion
    21:36:44   #22 SCSI -1046 File Cdrdrv.cpp, Line 1178
       SCSI Exec, HA 0, TA 1, LUN 0
       Status:     0x04 (0x01, SCSI_ERR)
       HA-Status   0x00 (0x00, OK)
       TA-Status   0x02 (0x01, SCSI_TASTATUS_CHKCOND)
       Sense Key:  0x05 (KEY_ILLEGAL_REQUEST)
       Sense Code: 0x30
       Sense Qual: 0x06
       CDB Data:   0x5B 0x01 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00
       Sense Data: 0x70 0x00 0x05 0x00 0x00 0x00 0x00 0x0A
                   0x00 0x00 0x00 0x00 0x30 0x06
    21:36:44   #23 CDR -1046 File WriterStatus.cpp, Line 167
       Illegal disc
    21:36:44   #24 TRANSFER -24 File WriterStatus.cpp, Line 167
       Could not perform end of Disc-at-once
    21:36:44   #25 Phase 38 File dlgbrnst.cpp, Line 1832
       Burn process failed at 2.4x (3,324 KB/s)
    Existing drivers:
    File 'Drivers\CDRALW2K.SYS': Ver=8.0.0.212 , size=2560 bytes, created 19/05/2006 23:16:24
    File 'Drivers\ASPI32.SYS': Ver=4.60 (1021), size=25244 bytes, created 10/09/1999 14:06:00
    File 'Drivers\PXHELP20.SYS': Ver=3.00.56a, size=43528 bytes, created 08/03/2007 01:51:00 (Prassi/Veritas driver for win 2K)
    File 'Drivers\nvatabus.sys': Ver=5.10.2600.0479 built by: WinDDK, size=87936 bytes, created 12/01/2005 08:32:20 (Adapter driver for rec)
    Registry Keys:
    HKLM\Software\Microsoft\Windows NT\CurrentVersion\WinLogon\AllocateCDROMs : 0 (Security Option)

    Quote
    Originally posted by danielhines
    I also have had this problem with Princo burning at 2x only. MSI technical support have taken 2 weeks already and I still do not have an answer if there is a firmware update to fix this problem.
    sometiems a disc is so low quality that the burner lowers the speed to even be able to burn.
    have that problem with cheap crap dvd's
    try  another ´brand.

  • CS5.5 Premiere → AE & RED audio disappearing

    Just talked my boss into upgrading CS5.5 (Mac) because we were having audio issues with CS5. So today I'm still getting this funky behavior when dealing with RED .R3D files in CS5.5
    I have some R3D clips edited in Premiere Pro CS5.5.  Every looks fine. Audio is synced.
    When I use AE CS5.5 and File> Import> Import Premiere Pro project…, I'm getting clips that don't have any audio. There's nothing in the waveform.
    But if I File> Import… the Premiere project as a footage item, the audio is fine. (But unfortunately, I lose my full-res 4K clips that I get with the Import>Import Premiere Pro project… method.
    There doesn't seem to be a rhyme or reason which clips will not have any audio and which will. It's maddening.
    And it's not clear when Import Premiere Pro project will break up layers into audio-only and video-only layers or have both audio & video in the same layer. (All my source RED footage has embedded audio tracks)

    Let's keep this conversation on the other thread that you started about this:
    http://forums.adobe.com/message/3826324#3826324
    It's hard to follow a fragmented conversation.

  • Office365 API : Windows 8.1 samples do not build, AuthenticationHelper class has errors

    just downloaded latest Office365 API samples for Windows 8.1 Store apps from http://dev.office.com/code-samples-detail/1511
    Alas I get the following build errors, even after having updated all nuget packages to their latest versions:
    Office365Samples\Office365StarterProject\Helpers\AuthenticationHelper.cs(156,44,156,63): error CS1061: 'Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext' does not contain a definition for 'UseCorporateNetwork' and no extension method
    'UseCorporateNetwork' accepting a first argument of type 'Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext' could be found (are you missing a using directive or an assembly reference?)
    Office365Samples\Office365StarterProject\Helpers\AuthenticationHelper.cs(341,28,341,87): error CS1502: The best overloaded method match for 'Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext.AcquireTokenAsync(string, string, Microsoft.IdentityModel.Clients.ActiveDirectory.UserCredential)'
    has some invalid arguments
    Office365Samples\Office365StarterProject\Helpers\AuthenticationHelper.cs(341,76,341,86): error CS1503: Argument 3: cannot convert from 'System.Uri' to 'Microsoft.IdentityModel.Clients.ActiveDirectory.UserCredential'
    Office365Samples\Office365StarterProject\Helpers\AuthenticationHelper.cs(343,24,343,30): error CS1061: 'Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationResult' does not contain a definition for 'Status' and no extension method 'Status' accepting
    a first argument of type 'Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationResult' could be found (are you missing a using directive or an assembly reference?)
    Office365Samples\Office365StarterProject\Helpers\AuthenticationHelper.cs(343,34,343,54): error CS0103: The name 'AuthenticationStatus' does not exist in the current context
    Building with VS2013 Update 4
    What am I doing wrong? Is latest nuget of Microsoft.IdentityModel.Clients.ActiveDirectory.* perhaps breaking it?
    PS is there an Office365 API forum on MSDN? If not, might be interesting to create one?
    edit:
    in case it helps: here is the list of nuget packages in the solution:
    <?xml version="1.0" encoding="utf-8"?>
    <packages>
      <package id="Microsoft.Azure.ActiveDirectory.GraphClient" version="2.0.5" targetFramework="win81" />
      <package id="Microsoft.Data.Edm" version="5.6.3" targetFramework="win81" />
      <package id="Microsoft.Data.OData" version="5.6.3" targetFramework="win81" />
      <package id="Microsoft.Data.Services.Client" version="5.6.3" targetFramework="win81" />
      <package id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="3.0.110281957-alpha" targetFramework="win81" />
      <package id="Microsoft.OData.Client" version="6.9.0" targetFramework="win81" />
      <package id="Microsoft.OData.Core" version="6.9.0" targetFramework="win81" />
      <package id="Microsoft.OData.Edm" version="6.9.0" targetFramework="win81" />
      <package id="Microsoft.Office365.Discovery" version="1.0.22" targetFramework="win81" />
      <package id="Microsoft.Office365.OAuth.Windows" version="1.0.22" targetFramework="win81" />
      <package id="Microsoft.Office365.OutlookServices" version="1.0.22" targetFramework="win81" />
      <package id="Microsoft.Office365.SharePoint" version="1.0.22" targetFramework="win81" />
      <package id="Microsoft.Spatial" version="6.9.0" targetFramework="win81" />
      <package id="Newtonsoft.Json" version="6.0.8" targetFramework="win81" />
      <package id="System.Spatial" version="5.6.3" targetFramework="win81" />
    </packages>

    Hello wolkenjager,
    This sample has not been updated to use this version of ADAL. As you suggest, the version you have specified appears to break the sample. We thank you for trying this out! :) We suggest that you revert to the version specified in the packages.config
    (2.10.10910.1511).
    With regards,
    Michael Mainer
    Michael | Microsoft Exchange Developer Content
    The
    Exchange Development Forum Guide has useful information for using the Exchange Development Forum.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • label tag: DW8 sometimes generates illegal XHTML 1.0/Transitional code

    Dreamweaver 8 sometimes generates XHTML 1.0/Transitional code
    that violates the DTD when using the <label> tag for adjacent
    radio buttons on a form.
    Consider the following example:
    1) Make a new HTML page using the XHTML 1.0/Transitional
    document type.
    2) Working in Design mode, insert a a new form element.
    3) With accessibility options turned on, insert a radio
    button. When the Input Tag Accessibility Attributes dialog appears,
    give the new button a label of "This is my label" and select the
    "Wrap..." style.
    4) Use the Property Inspector to assign a name and value of
    "choice1" to the new radio button.
    5) Using the arrow keys, position the cursor at the end of
    the new button's label text.
    6) Insert a second radio button there, and give it a label of
    "This is my second label."
    7) Use the Property Inspector to assign a name and value of
    "choice2" to the second radio button.
    Examine the resulting code. The code will be either valid or
    invalid, depending on exactly where the cursor was positioned in
    step 4. If you watch the Code window while you position the cursor
    in step 4, you will see that the cursor positions itself EITHER
    INSIDE OR OUTSIDE THE FIRST BUTTON'S </label> TAG, DEPENDING
    ON which direction you were going when you positioned the cursor at
    the end of the prior button's label. If you were moving the cursor
    from left to right, the cursor will be placed WITHIN the first
    button's closing </label> tag; if you overshot the end of the
    prior label and then backed up, the cursor will be placed BEYOND
    the closing </label> tag. In the former case, each button
    will get a separate <label> tag pair. In the latter case,
    BOTH BUTTONS WILL BE CONTAINED WITHIN A SINGLE <label> TAG
    PAIR, as in the following (illegal) example:
    <!--THIS CODE IS INVALID ACCORDING TO XHTML
    1.0/TRANSITIONAL-->
    <label>
    <input name="choice1" type="radio" value="choice1" />
    This is my label
    <input name="choice2" type="radio" value="choice2" />
    This is my second label
    </label>
    This is INVALID XHTML 1.0/TRANSITIONAL. Specifically, the DTD
    specifies that "Each label must not contain more than ONE field" (
    http://www.w3.org/TR/xhtml1/dtds.html).
    Here, Dreamweaver generates one label containing two fields. While
    IE6 and Opera 8.0 ignore the error and display it anyway, Firefox
    1.5 follows the DTD in this case and therefore cannot handle more
    than one radio button within a single label tag; the resulting form
    selects the first value no matter what the user clicks on.

    Max
    This is happening because in standards mode browsers are ignoring the height="70%" attribute on the table that is the first element of div.t13BodyMargin because (among other things) it's invalid XHTML. This is the kind of thing that happens when the built-in APEX themes &ndash; designed for quirks mode &ndash; are thrown into standards mode by specifying a DOCTYPE.
    You can remove that attribute from the template XHTML and try the following in your CSS:
      html, body {
      height: 100%;
    form#wwvFlowForm {
      position: relative;
      height: 100%;
      min-height: 100%;
    div.t13BodyMargin {
      padding-bottom: 2em;
    div.t13NewBottom {
      position: absolute;
      bottom: 0;
      width: 100%;
    }Note there was Re: Support for non-quirks HTML mode.
    If you're determined on going down the standards route, you should check your pages against a validator and fix any other invalid mark-up in the templates, but achieving 100% compliance is unlikely due to APEX engine-generated code you have no control over.
    However, if you have no real requirement for introducing the DOCTYPE declaration and are not prepared to pursue the additional effort in achieving near-compliance, it's pointless to do so as it will only introduce this kind of issue.

Maybe you are looking for

  • Income Tax  in Off cycle payments

    Hi Folks, Please provide u r inputs for the following conditions 1.I don't want Income tax deduction for Off cycle payments, if i comment INBTD function and run the Off cycle payment, will the off cycle amount will be considered for Taxation in the s

  • Any RH 9 HTML Link to Word users out there?

    Sorry to throw another one other here, but I'm currently testing a trial version of RH9 and I'm struggling with the new linking enhancements. Here's the "what's new in RH9" lingo: While importing or linking a document, you can modify the character an

  • Grub/boot using wrong monitor (dual-head setup)?

    I have a dual monitor set up, using two dvi slots on my radeon HD card. When I start up my system, regardless of the order of the cables, it first shows my bios slash screen on both monitors, then it goes to Grub2 and I see "Loading Grub.." on both m

  • Make field in Material master mandatory based on the material group

    Hello all, I need to make the field "post to inspection flag" mandatory based on the material group while creating the Material master. I found options for making the field mandatory based on Material type,Industry sector and plant NOT based on the m

  • Got internet connection but none of the apps will access

    I am new in the mac-world and I encountered a first problem: for some reason none of my applications have access to internet anymore though everything worked fine a couple of hours ago. Now it works neither with cable nor wirelessly. I had little sni