Is it Possible to mark style information to be editable in a .DWT ????

We want to build a number of templates for our client to work
off of,..but
the issue is that there is one line of code in the Style area
at the top of
the page to control which layer of sub-navigation stays open.
I tried
defining that area as editable in Dreamweaver,..but it still
locks it out
when the pages are created from the template.... Is there a
way to
accomplish this??
this is the code i used..
<!--
@import url("../p7tbm/p7tbm_basic_01.css");
<!-- TemplateBeginEditable
name="Which-Sub-nav-list-is-visible" -->
#p7TBMsub01 {visibility: visible;}
<!-- TemplateEndEditable -->
-->
</style>
thanks for any suggestions,....

> <!--
> @import url("../p7tbm/p7tbm_basic_01.css");
> <!-- TemplateBeginEditable
name="Which-Sub-nav-list-is-visible" -->
> #p7TBMsub01 {visibility: visible;}
> <!-- TemplateEndEditable -->
if that's the exact code- you need to structure it
differently. The html
comment for the editable region is nested in the "hider"
comment for the
import link.
close off all the tags/comments for the @import of the
external file.
Then- have a <style> set of tags in an editable area
for the one you wish
the client to edit.
Alan
Adobe Community Expert, dreamweaver
http://www.adobe.com/communities/experts/

Similar Messages

  • Mark several cells in an editable ALV

    Hello,
    is there a possibility to mark several cells in an editable ALV at once?
    So that the User can enter the same value in several cells at the same time?
    I use the component SALV_WD_TABLE.
    Does anyone know if such a feature exists or may be implemented in future?
    I am grateful for every hint!
    Best Regards
    Manuel Nonnenmacher

    I took the code above from the turorial "Editing ALV in WD4a" and I found following sentence:
    Hint: In this tutorial the save functionality is only simulated to not change the flight data model content.
    Now is the question, how to do a NON-simulated save functionality??
    Best Regards
    Ingmar

  • Possible to mark and unmark every line of the list (ALV

    Hi Experts,
    I would like to develop stock compensation report for a client my requirement as below.
    It must be possible to mark and unmark every line of the list (ALV). On top of the list a button (Create Sales Document) is needed. Pressing this button starts the creation of the sales documents for every line of the list which is marked. The button is only active when the simulation flag is initial!
    Since this is a working list it must be possible to double-click on each line and see the line item details. The line item details should be shown as a ALV list as well. The list contains the following fields:
    u2022     Sold-to (VBPA-KUNNR u2013 VBPA-PARVW = u2018AGu2019)
    u2022     Name of sold-to (VBPA- ADRNR u2013 VBPA-PARVW = u2018AGu2019  ADRC-NAME1)
    u2022     Ship-to (VBPA-KUNNR u2013 VBPA-PARVW = u2018WEu2019)
    u2022     Name of ship-to (VBPA- ADRNR u2013 VBPA-PARVW = u2018WEu2019  ADRC-NAME1)
    u2022     Material number (VBRP-MATNR)
    u2022     Material description (VBRP-ARKTX)
    u2022     Old Price List (determination see above)
    u2022     New Price List (determination see above)
    u2022     Compensation Value List (determination see above)
    u2022     Compensation Quantity List (determination see above)
    u2022     New Compensation Quantity List (determination see above)
    After pressing the creation button a sales document for every marked line is created. When this is finished a log is issued for every line. The log shows the following information:
    u2022     Sold-to (VBPA-KUNNR u2013 VBPA-PARVW = u2018AGu2019)
    u2022     Name of sold-to (VBPA- ADRNR u2013 VBPA-PARVW = u2018AGu2019  ADRC-NAME1)
    u2022     Ship-to (VBPA-KUNNR u2013 VBPA-PARVW = u2018WEu2019)
    u2022     Name of ship-to (VBPA- ADRNR u2013 VBPA-PARVW = u2018WEu2019  ADRC-NAME1)
    u2022     Sales document number or error message if no document is created
    How to create check boxes for eachline in the ALV output for mark or unmark purpsoe and how to create create sales document button in the output and how to create the sales order process . please help me out.
    Moderator message: more "spec dumping", please work yourself first on your requirement.
    Edited by: Thomas Zloch on Mar 29, 2011 4:32 PM

    hi
    i have a code for drop down list use this
    this code is for selection-screen deop-down list yu can add this same code in ALV
    REPORT  ZCHETANA_PRAC10                         .
    Type-pools: VRM.
    data: name type vrm_id,
          list_month type vrm_values,
          list_year type vrm_values,
          value type vrm_value.
    selection-screen: begin of block b with frame.
    parameter: p_year(10) type c as listbox visible length 10,
               p_month(10) type c as listbox visible length 10.
    selection-screen: end of block b.
    at selection-screen output.
    value-key = 'JAN'.
    value-text = 'JAN'.
    append value to list_month.
    value-key = 'FEB'.
    value-text = 'FEB'.
    append value to list_month.
    value-key = 'MAR'.
    value-text = 'MAR'.
    append value to list_month.
    value-key = 'APR'.
    value-text = 'APR'.
    append value to list_month.
    value-key = '1998'.
    value-text = '1998'.
    append value to list_year.
    value-key = '1999'.
    value-text = '1999'.
    append value to list_year.
    value-key = '2000'.
    value-text = '2000'.
    append value to list_year.
    CALL FUNCTION 'VRM_SET_VALUES'
      EXPORTING
        ID                    = 'P_MONTH'
        VALUES                = list_month
    EXCEPTIONS
      ID_ILLEGAL_NAME       = 1
      OTHERS                = 2
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CALL FUNCTION 'VRM_SET_VALUES'
      EXPORTING
        ID                    = 'P_YEAR'
        VALUES                = list_year
    EXCEPTIONS
      ID_ILLEGAL_NAME       = 1
      OTHERS                = 2
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    start-of-selection.
    write:/ p_year,
           p_month.

  • This XML file does not appear to have any style information associated with

    Hi All,
    I have IDOC to XML file scenario.
    In SXMB_MONI, it showed the message processed successfully (checkered flag).
    I open the payload in the target, I'm able to see the XML format without error.
    then I checked in RWB the overall status is successful.
    But when I checked the detail (message content) I got the following message:
    "This XML file does not appear to have any style information associated with it".
    So physical file created is like corrupted.
    If using XML marker to open the file it show warning "Invalid Unicode Sequence".
    The thing is when rerun the whole interface again, which is mean the same idoc send from the source, the file created successfully. Sometimes need to rerun twice or more than that to get the file.
    Anyone has idea on what is wrong here?
    Thanks,
    Victor.

    Hi Baskar,
    Thanks for your reply.
    It's PI 7.0.
    Overall status is successful but when I go to RWB to check the message content i got the error message above.
    Target system is only normal FTPS server.
    XML file is created as well but it's showing error when we open it.
    The weird thing is without fixing anything if we rerun the same interface with same set of data sometimes the error is gone by itself.
    Thanks,
    Victor.

  • I keep getting "This XML file does not appear to have any style information associated with it."

    I keep getting a message that reads "This XML file does not appear to have any style information associated with it. The document tree is shown below." when I try to view certain images with the document tree reading something like this:
    <Error>
    <Code>AccessDenied</Code>
    <Message>Access Denied</Message>
    <RequestId>BCC4C0545EAAB7AE</RequestId><HostId>3LxcI9VY5wksYdmblAgu2dYu9ZfkLVZJWYhDtoIdRIE4HyARxC+ogJXkApL6U+tT</HostId>
    </Error>
    I tried updating Firefox and that didn't work. All I could find was that it could be a proxy thing, but I'm set to "no proxy" in my network settings so I'm stumped.

    You can try these steps in case of issues with web pages:
    You can reload web page(s) and bypass the cache to refresh possibly outdated or corrupted files.
    *Hold down the Shift key and left-click the Reload button
    *Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    *Press "Command + Shift + R" (Mac)
    Clear the cache and remove cookies only from websites that cause problems.
    "Clear the Cache":
    *Firefox/Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox/Tools > Options > Privacy > "Use custom settings for history" > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem.
    *Switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance
    *Do NOT click the Reset button on the Safe Mode start window
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Complex marker style

    Hi All,
    Can we define complex marker style (ic Vector Marker)?. The Mapbuilder application allows us to insert only one type of vector. I tried by updating DEFINITION column of USER_SDO_STYLES and ALL_SDO_STYLES using following statements
    update userl_sdo_styles set definition='<?xml version="1.0" standalone="yes"?>
    <svg width="1in" height="1in">
    <desc></desc>
    <g class="marker" style="stroke:#000000;fill:#FF0000;width:15;height:15;font-family:Dialog;font-size:12;font-fill:#FF0000">
    <rect fill="red" stroke="black" x="15" y="15" width="15" height="15"/>
    <rect fill="blue" stroke="black" x="15" y="15" width="15" height="15" rx="12" ry="18"/>
    <circle fill="yellow" stroke="black" cx="20" cy="22" r="5"/>
    </g>
    </svg>'
    where name = 'M.TEMP'
    update all_sdo_styles set definition='<?xml version="1.0" standalone="yes"?>
    <svg width="1in" height="1in">
    <desc></desc>
    <g class="marker" style="stroke:#000000;fill:#FF0000;width:15;height:15;font-family:Dialog;font-size:12;font-fill:#FF0000">
    <rect fill="red" stroke="black" x="15" y="15" width="15" height="15"/>
    <rect fill="blue" stroke="black" x="15" y="15" width="15" height="15" rx="12" ry="18"/>
    <circle fill="yellow" stroke="black" cx="20" cy="22" r="5"/>
    </g>
    </svg>'
    where name = 'M.TEMP' and owner='TEST'
    But Mapviewer couldn't render this. It will render only circle. I tried by inserting geometry to GEOMETRY column of the XXX_USER_STYLES but failed. The mapviewer UG document says it is for future use.
    We are developing sample web applictaion using oracle spatial and mapviewer.
    We need to translate microstation and autocad data to oracle spatial. These files contains lots of blocks (in autocad) or cells (in microstation ) . We will store autocad block or Microstation cell as point geometry on oracle spatial. There are couple of solution for this.
    1) We can use image to define marker but it won't be looks good on map if the marker is scalable. In our case most of the symbols are scalable.
    2) We can explode cells or blocks and store it as multiple geometries (A cell may have n number of elements) in oracle spatial but it will take huge memory on hard drive. We will use FME for conversion from microstation to oracle spatial. For example 1MB microstation dgn file may occupy 10MB on oracle spatial.
    3) We can explode these cell or block and store it has Aggregate geometry (Compound polygon or Line Strings) on spatial. Here also disadvantage huge amount of memory on hard drive. Also it is not possible to define 2 different colors as in autocad block.
    Please give me suggestion on this.
    Thanks,
    Sujnan

    Thank Joao,
    In third option the entire cell in microststion will be stored as single geometry in oracle spatial. For example a cell in microstation may contain two lines inslide a rectange. We will explode this cell and aggregate it and store it as single complex line string in oracle spatial. Here is one of such geometry
    SDO_GEOMETRY(2004, 26767, NULL, SDO_ELEM_INFO_ARRAY(1, 1003, 1,
    11, 2, 1, 15, 2, 1, 19, 1003, 1), SDO_ORDINATE_ARRAY(1937531.5, 589470.837,
    1937517.47, 589470.469, 1937517.84, 589456.403, 1937531.87, 589456.771,
    1937531.5, 589470.837, 1937519.78, 589468.413, 1937529.69, 589459.007,
    1937520.03, 589458.754, 1937529.44, 589468.666, 1937531.57, 589463.889,
    1937531.52, 589464.484, 1937531.43, 589465.073, 1937531.29, 589465.651,
    1937531.09, 589466.215, 1937530.85, 589466.759, 1937530.56, 589467.281,
    1937530.23, 589467.775, 1937529.85, 589468.238, 1937529.44, 589468.667,
    1937528.99, 589469.058, 1937528.51, 589469.408, 1937527.99, 589469.715,
    1937527.46, 589469.977, 1937526.9, 589470.19, 1937526.33, 589470.355,
    1937525.74, 589470.468, 1937525.15, 589470.531, 1937524.56, 589470.541,
    1937523.96, 589470.499, 1937523.37, 589470.406, 1937522.79, 589470.262,
    1937522.23, 589470.068,1937521.69, 589469.825, 1937521.16, 589469.536,
    1937520.67, 589469.203, 1937520.21, 589468.828, 1937519.78, 589468.414,
    1937519.39, 589467.964, 1937519.04, 589467.482, 1937518.73, 589466.971,
    1937518.47, 589466.435, 1937518.25, 589465.878, 1937518.09, 589465.305,
    1937517.98, 589464.72, 1937517.91, 589464.127, 1937517.9, 589463.531,
    1937517.95, 589462.936, 1937518.04, 589462.348, 1937518.18, 589461.769,
    1937518.38, 589461.206, 1937518.62, 589460.661, 1937518.91, 589460.14,
    1937519.24, 589459.645, 1937519.62, 589459.182, 1937520.03,
    9458.753,1937520.48, 589458.362, 1937520.96, 589458.012, 1937521.47,
    589457.705, 937522.01,589457.444, 1937522.57, 589457.23, 1937523.14,
    589457.066, 1937523.72, 589456.952, 1937524.32, 589456.89, 1937524.91,
    589456.879, 1937525.51, 589456.921, 1937526.1, 589457.014, 1937526.68,
    589457.158, 1937527.24, 589457.352, 1937527.78, 589457.595, 1937528.3,
    589457.884, 1937528.8, 589458.217, 1937529.26, 589458.592, 1937529.69,
    589459.007, 1937530.08, 589459.456, 1937530.43, 589459.939, 1937530.74,
    589460.45, 1937531, 589460.986, 1937531.21, 589461.542, 1937531.38,
    589462.115, 1937531.49, 589462.7, 1937531.55, 589463.293, 1937531.57,
    589463.889))
    This was the cell element in microstation. I think it is not possible to define 2 different colours for this.
    To solve this temporarily I am trying in this way.
    I will create all the cell elements in a specified location. Say its insertion point is 0,0 in microstation. We will store these cell elements in a table called SYMBOLS. In the actual table we will store point elements. I will write the function in Oracle that takes this point geometry, calculates distance from the 0,0 add this distance to coordinates of the cell geometry and returns new geometry.
    Here is Skelton of this function
    CREATE OR REPLACE FUNCTION getReplacedGeom(geom SDO_GEOMETRY) SDO_GEOMETRY VARCHAR2 IS
    BEGIN
    //Select cell_geom gm from symbol where id=25;
    //calculate distance b/n GEOM and insertion point of cell_geom (here it is 0,0)
    //add this distance all the coordinates of SDO_ORDINATE of the cell_geom
    RETURN newGeom; //modified geometry
    END getReplacedGeom;
    In mapviewer we can query like
    Select getReplacedGeom(geom) from equipment
    But can we add distance to all the x,y coordinates (SDO_ORDINATE) of the SDO_GEOMETRY?
    Thanks,
    Sujnan

  • Is it possible to get the information from the complete forms send to different email account

    When i have a paid account is it than possible to get the information from the different forms send to seperate emailaddresses.
    Who dont have a account from formscentral but just need the information directly in there own inboxes?
    Because we're looking for a good and simple way to make qoustion & complain forms. But these need to go to different people in the company.

    You can have notifications sent to multiple email addresses, but each will need to have a FormsCentral account.  They can be free accounts.  What you do is create your form and set up the email addresses that you want the information to go to to be Co-authors or Contributors.  The co-author/contributor accounts will then need to log into FormsCentral, go to the Options tab and check the email notifications checkbox. 
    I hope this helps.
    -Jeff

  • This XML file does not appear to have any style information...

    hello,
    i am a new oracle spatial developer and also i am new in XML. i want to see the demos in oracle 10g enterprise edition. i imported the necessary dump files and i created the necessary user defined as mvdemo/mvdemo. when i want to see the demos in mapviewer, i come accross this error:
    This XML file does not appear to have any style information associated with it. The document tree is shown below.
         <oms_error>
    Message:[XMLHelper] xml eşleme isteği incelenirken hata.
    Fri Feb 25 01:37:39 EET 2005
    Severity: 0
    Description:
    Message:[XMLHelper] xml eşleme isteğinde geçersiz geometri.
    Fri Feb 25 01:37:39 EET 2005
    Severity: 0
    Description:
    Message:GML Geometry type Point not suppoted.
    Description:
         at oracle.sdovis.JSDOGeometry.fromNodeToGeometry(JSDOGeometry.java:3185)
         at oracle.lbs.mapserver.core.XMLHelper4Mapper.parseGeoFeature(XMLHelper4Mapper.java:712)
         at oracle.lbs.mapserver.core.XMLHelper4Mapper.convert(XMLHelper4Mapper.java:223)
         at oracle.lbs.mapserver.core.XMLHelper4Mapper.convert(XMLHelper4Mapper.java:167)
         at oracle.lbs.mapserver.oms.getMapRequest(oms.java:678)
         at oracle.lbs.mapserver.oms.doPost(oms.java:314)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:810)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:322)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:790)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:270)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:186)
         at java.lang.Thread.run(Thread.java:534)
    </oms_error>
    for now, i dont know what to do.. if someone recommend any useful idea, i would be greatful.
    best regards..

    hello,
    thank you for your reply..
    i made some changes and i dont see the errors that i mentioned above any more. but still some problems..
    firstly, i decided to change the settings in the mapViewerConfig.xml file in order to add a new datasource. i copied it and that is the reason why you see the '!' in my explanation. the new situation in the mapViewerConfig.xml file like this:
    <map_data_source name="mvdemo"
    jdbc_host="c-0y5wp0jvd2bf8"
    jdbc_sid="orcl"
    jdbc_port="1521"
    jdbc_user="mvdemo"
    jdbc_password="nzKVD/KFZYkGc0uF7EL7/vPibuAPpQ9j"
    jdbc_mode="thin"
    number_of_mappers="3"
    />
    "c-0y5wp0jvd2bf8" is my computer name. jdbc password was encrypted when i started the mapviewer. this is the new screen of the mapviewer after starting:
    05/03/01 17:49:58 INFO [oracle.lbs.mapserver.oms] oms root path: C:\mapviewer10
    12_qs\mv1012qs\oc4j\j2ee\home\applications\mapviewer\web\
    05/03/01 17:49:58 Oracle Application Server Containers for J2EE 10g (10.1.2.0.0)
    initialized
    05/03/01 17:49:58 INFO [oracle.lbs.mapserver.core.MapperConfig] using default co
    nfig file: C:\mapviewer1012_qs\mv1012qs\oc4j\j2ee\home\applications\mapviewer\we
    b\WEB-INF\conf\mapViewerConfig.xml
    05/03/01 17:49:58 WARN [oracle.lbs.mapserver.core.MapperPool] destroying ALL map
    maker instances.
    05/03/01 17:50:17 INFO [oracle.sdovis.CacheMgr2] Spatial Data Cache opened. Regi
    on=SDOVIS_DATA.
    05/03/01 17:50:17 INFO [oracle.sdovis.CacheMgr2] max_cache_size=32 MB.
    05/03/01 17:50:17 INFO [oracle.sdovis.CacheMgr2] sub region sdovis_subreg_mvdemo
    _jdbc:oracle:thin:@c-0y5wp0jvd2bf8:1521:orcl created in cache.
    05/03/01 17:50:17 INFO [oracle.lbs.mapserver.core.MapperPool] added a mapper ins
    tance to the pool [data src=mvdemo]
    05/03/01 17:50:17 INFO [oracle.lbs.mapserver.core.MapperPool] added a mapper ins
    tance to the pool [data src=mvdemo]
    05/03/01 17:50:17 INFO [oracle.lbs.mapserver.core.MapperPool] added a mapper ins
    tance to the pool [data src=mvdemo]
    05/03/01 17:50:17 INFO [oracle.lbs.mapserver.core.MapperConfig] Map Recycling th
    read started.
    05/03/01 17:50:17 INFO [oracle.lbs.mapserver.oms] *** Oracle MapViewer started.
    when i open the page ( http://localhost:8888/mapviewer/ ) and press the submit button of the "sample map request" section to see the result of the demo, i come accross this error:
    This XML file does not appear to have any style information associated with it. The document tree is shown below.
         <oms_error>
    Message:[XMLHelper] xml eşleme isteği incelenirken hata.
    Tue Mar 01 17:53:51 EET 2005
    Severity: 0
    Description:
    Message:[XMLHelper] xml eşleme isteğinde geçersiz geometri.
    Tue Mar 01 17:53:51 EET 2005
    Severity: 0
    Description:
    Message:GML Geometry type Point not suppoted.
    Description:
         at oracle.sdovis.JSDOGeometry.fromNodeToGeometry(JSDOGeometry.java:3185)
         at oracle.lbs.mapserver.core.XMLHelper4Mapper.parseGeoFeature(XMLHelper4Mapper.java:712)
         at oracle.lbs.mapserver.core.XMLHelper4Mapper.convert(XMLHelper4Mapper.java:223)
         at oracle.lbs.mapserver.core.XMLHelper4Mapper.convert(XMLHelper4Mapper.java:167)
         at oracle.lbs.mapserver.oms.getMapRequest(oms.java:678)
         at oracle.lbs.mapserver.oms.doPost(oms.java:314)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:810)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:322)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:790)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:270)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
         at java.lang.Thread.run(Thread.java:534)
    </oms_error>
    in addition, i use firefox as my default browser. however, i tried it in the iexplorer also but gave the same error again.
    i look forward to taking a response. thank you very much for your care again.
    regards

  • I keep getting the message This XML file does not appear to have any style information axxociated with it. The document tree is shown below Is this a serious problem?

    My daughter and i use same computer she uses firefox and recently we have noticed on facebook apps we get the message This XML file does not appear to have any style information axxociated with it. The document tree is shown below

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

  • TS3297 This XML file does not appear to have any style information associated with it. The document tree is shown below."

    This is the message I get on top when I used BEST BUY REWARD ZONE to access itunes.  On the bottom, I get code;this happens when I use ie7 and google chrome.  I can, so far, get into iTunes directly;but for how long is anybody's guess.  Is Apple still associated with Best Buy?

    Never heard of it, but there ain't no such thing as a free lunch. The error message from IE7 tells you pretty much all you need to know. "There is no style information which might allow the information in the XML file to be presented in a way which might make it easier for you to interpret. Here is the raw content". I no idea why you think opening the XML file is necessary. The file is a text based representation of your iTunes library designed to be read by third party applications.
    tt2

  • HT1338 Ive deleted a complete user profile on my mac book. Is it possible to retrieve the information?

    Ive somehow managed to delete a complete user profile. Is it possible to retrieve the information?

    Try this:
    iTunes: Finding lost media and downloads
    Also go to iTunes>Preferences>Advanced and see if the it posint to where your music is located.

  • Using live HTTP header get This XML file does not appear to have any style information associated with it. The document tree is shown below

    Im using ReloadEvery 3.6.3 & Live HTTP Headers 0.16 plugin's for playin mobsters on myspace. After capturing the the script, editing & placing in the address bar I recieve a message: Failed Security. This XML file does not appear to have any style information associated with it. The document tree is shown below. There was nothing on the Tree. I know the script was edited correct cause it works on the other PC's. Operating system is win7 & Firefox is current. Thx.
    == The first time

    yea I got the same error for playing files on filestube and its just not that, ever since 2 days ago when I updated firefox everything have just started to ..uck up all the time, high cpu memory load without any addons and it wont terminate for another 20secs after I close it... I think I'll just reinstall with an older version, everything worked just fine then

  • Is it possible to populate an information field with the expect docURL?

    Hi,
    Is it possible to populate an information field with a function that checks for the expected docURL at checkIn time?
    I need to pass the value of the docURL of the checked in content item to a bpel process.
    Thanks.

    Thanks for the suggestion.
    To test:
    1. I created an information field called 'docURL'.
    2. Added a rule called 'docDisplayURL'.
    3. Selected global rule with Priority 1 and use rule activation condition.
    4. Added a condition called 'CheckIn'
    Selected 'Use Event'. 'On Submit'.
    Selected 'Use Action', ' CheckIn New', 'Check In Selected', 'Content Information', 'Content Update', 'Search', Clicked Ok.
    5. Selected the Fields Tab, Selected the 'Information Fields' in the Add Rule Field.
    6. Changed the Type to 'Info Only'.
    7. Selected the Is Derived Field and in Custom entered the following:
    <$DocUrl$>
    8. Now my rule 'displayDocURL' shows up.
    9. When I go to an item content information I don't see the 'DocUrl' field populated. What could I be doing wrong?
    Thanks
    Message was edited by:
    snarasim
    Message was edited by:
    snarasim
    Message was edited by:
    snarasim
    Message was edited by:
    snarasim

  • Could anyone tell me if it is possible to import the information from the Palm Pilot agenda and address book to some programs of the Iphone and Iphone?

    Could anyone tell me if it is possible to import the information from the Palm Pilot agenda and address book to some programs of the Iphone and Iphone?

    Look to your right under "More Like This" for related discussions. ----------------->

  • I'm using web developer1.1.9 ad-on. When I select a menu CSS- View Style Information, I see red outlined div's, etc. but I can't see these outlines anymore.

    I'm using web developer1.1.9 ad-on. When I select a menu CSS->View Style Information, I see red outlined div's, etc. but I can't see these outlines anymore.
    I tried uninstall and install both Firefox and Developer ad-on but it did not solve the problem.

    Firefox also have build-in web developer tools, so there is less need for extensions.
    *http://hacks.mozilla.org/2012/03/firefox-aurora-13-developer-tools-updates/
    *https://developer.mozilla.org/en/Tools/Page_Inspector
    *https://developer.mozilla.org/en/Tools/Page_Inspector/HTML_panel
    *https://developer.mozilla.org/en/Tools/Page_Inspector/Style_panel

Maybe you are looking for