Help!xml can't transform property

I want to transform xml using xslt and I download jakarta's xalan.But I find it seems has some problem.So I write a class to test the xalan package.My code is:
/////////////////////////////////Test30.java///////////////////////////////////////
import org.apache.xalan.xslt.XSLTProcessor;
import org.apache.xalan.xslt.XSLTResultTarget;
import org.apache.xalan.xslt.XSLTInputSource;
import org.apache.xalan.xslt.XSLTProcessorFactory;
//import com.lotus.xsl.*;
import org.xml.sax.SAXException;
import java.io.*;
import org.xml.sax.*;
10 public class Test30
11 {
12     public static void main(String[] args)
13     {
14          try
15          {
16          XSLTInputSource inputXML = new XSLTInputSource("trying1.xml");
17          XSLTInputSource inputXSL = new XSLTInputSource("trying.xsl");
18          XSLTProcessor processor = XSLTProcessorFactory.getProcessor();
19          processor.process(inputXML, inputXSL, new XSLTResultTarget(System.out));
20          }catch(Exception e)
21          {
22               System.out.println(e);
23          }
It is compiled successfully.But the console report error when I execute it.It report:"Exception in thread "main" java.lang.NoSuchFieldError: m_elemStack
at org.apache.xalan.stree.StreeDOMBuilder.startElement(StreeDOMBuilder.j
ava:221)
at org.apache.xalan.stree.SourceTreeHandler.startElement(SourceTreeHandl
er.java:525)
at org.apache.crimson.parser.Parser2.maybeElement(Parser2.java:1488)
at org.apache.crimson.parser.Parser2.parseInternal(Parser2.java:500)
at org.apache.crimson.parser.Parser2.parse(Parser2.java:305)
at org.apache.crimson.parser.XMLReaderImpl.parse(XMLReaderImpl.java:442)
at org.apache.xalan.xslt.XSLTEngineImpl.getSourceTreeFromInput(XSLTEngin
eImpl.java:744)
at org.apache.xalan.xslt.XSLTEngineImpl.process(XSLTEngineImpl.java:332)
at Test30.main(Test30.java:19)"
I test it in servlet and the problem is the same as this.
I don't know why this happen and I debug it all day.I can't find any error today.
Anyone can help me? :(

I used this example and it works fine for me :
public static void transformXML(String xml, String xsl, OutputStream oStream)throws Exception {
TransformerFactory tFactory = TransformerFactory.newInstance();
if(tFactory.getFeature(DOMSource.FEATURE) && tFactory.getFeature(DOMResult.FEATURE)) {
//Instantiate a DocumentBuilderFactory.
DocumentBuilderFactory dFactory = DocumentBuilderFactory.newInstance();
// And setNamespaceAware, which is required when parsing xsl files
dFactory.setNamespaceAware(true);
//Use the DocumentBuilderFactory to create a DocumentBuilder.
DocumentBuilder dBuilder = dFactory.newDocumentBuilder();
//Use the DocumentBuilder to parse the XSL stylesheet.
Document xslDoc = dBuilder.parse(xsl);
// Use the DOM Document to define a DOMSource object.
DOMSource xslDomSource = new DOMSource(xslDoc);
// Set the systemId: note this is actually a URL, not a local filename
xslDomSource.setSystemId(xsl);
// Process the stylesheet DOMSource and generate a Transformer.
Transformer transformer = tFactory.newTransformer(xslDomSource);
//Use the DocumentBuilder to parse the XML input.
Document xmlDoc = dBuilder.parse(xml);
// Use the DOM Document to define a DOMSource object.
DOMSource xmlDomSource = new DOMSource(xmlDoc);
// Set the base URI for the DOMSource so any relative URIs it contains can
// be resolved.
xmlDomSource.setSystemId(xml);
// Create an empty DOMResult for the Result.
DOMResult domResult = new DOMResult();
// Perform the transformation, placing the output in the DOMResult.
transformer.transform(xmlDomSource, domResult);
//Instantiate an Xalan XML serializer and use it to serialize the output DOM to System.out
// using a default output format.
Serializer serializer = SerializerFactory.getSerializer(OutputProperties.getDefaultMethodProperties("xml"));
serializer.setOutputStream(oStream);
serializer.asDOMSerializer().serialize(domResult.getNode());
} else {
throw new org.xml.sax.SAXNotSupportedException("DOM node processing not supported!");
}

Similar Messages

  • How can I transform XML-DB to Relational DB?

    How can I transform XML-DB to Relational DB?
    I want to transform Oracle 9i XML-DB to Oracle 8i R-db
    please tell me how to do this .
    thank you

    hi
    good
    its idoc_xml or idoc_xml_transform
    go through the below link hope it ll help you to solve your problem
    Check with below link :
    Re: IDOCS_OUTPUT_IN_XML_FORMAT -- IDOCS_OUTPUT_TO_FILE
    Re: any function module to write-xml schema of a idoctype to an internal table
    /people/michal.krawczyk2/blog/2005/11/13/xi-how-to-check-your-idocs-on-a-web-page-from-sapgui -> this will help you
    thanks
    mrutyun^

  • How to update the value in xml file using transformer after setNodeValue

    Hi,
    This is my code
    I want to set update the values in xml file using transformer..
    Any one can help me
    This is my Xml file
    <?xml version="1.0" encoding="UTF-8"?>
    <place>
    <name>chennai</name>
    </place>
    Jsp Page
    <%@page contentType="text/html"%>
    <%@page pageEncoding="UTF-8"%>
    <%@ page import="javax.xml.parsers.DocumentBuilderFactory,
    javax.xml.parsers.DocumentBuilder,org.w3c.dom.*,org.w3c.dom.Element"
    %>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>JSP Page</title>
    </head>
    <body>
    <% String str="";
    String str1="";
    try
    DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
    DocumentBuilder db = dbf.newDocumentBuilder();
    Document doc = db.parse("http://localhost:8084/XmlApplication1/sss.xml");
    out.println("Before change");
    NodeList n11 = doc.getElementsByTagName("name");
    Node n22= n11.item(0).getFirstChild();
    str1 = n22.getNodeValue();
    out.println(str1);
    out.println("After change");
    String name = "Banglore";
    NodeList nlst = doc.getElementsByTagName("name");
    Node node= nlst.item(0).getFirstChild();
    node.setNodeValue(name);
    NodeList n1 = doc.getElementsByTagName("name");
    Node n2= n1.item(0).getFirstChild();
    str = n2.getNodeValue();
    out.println(str);
    catch(Exception e)
    out.println(e) ;
    %>
    <h1><%=str%></h1>
    <%--
    This example uses JSTL, uncomment the taglib directive above.
    To test, display the page like this: index.jsp?sayHello=true&name=Murphy
    --%>
    <%--
    <c:if test="${param.sayHello}">
    <!-- Let's welcome the user ${param.name} -->
    Hello ${param.name}!
    </c:if>
    --%>
    </body>
    </html>

    hi check this exit...
    IWO10012

  • How I can change visible property of an af:table with an af:selectOneRadio?

    How I can change visible property of an af:table with an af:selectOneRadio? Anyone can help me with a tutorial, example or link?
    Thanks in advance.

    After you add the required libraries to your classpath
    you can do your use case as explained in this sample
    page source
    <?xml version='1.0' encoding='UTF-8'?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <f:view xmlns:f="http://java.sun.com/jsf/core" xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
        <af:document title="untitled2.jsf" id="d1">
            <af:messages id="m1"/>
            <af:form id="f1">
                <af:selectOneRadio label="radio" id="sor1" autoSubmit="true"
                                   valueChangeListener="#{ControlVisibilty.onRadioSelected}">
                    <af:selectItem label="0" value="0" id="si1"/>
                    <af:selectItem label="1" value="1" id="si2"/>
                </af:selectOneRadio>
                <af:table value="#{bindings.DepartmentsView1.collectionModel}" var="row"
                          rows="#{bindings.DepartmentsView1.rangeSize}"
                          emptyText="#{bindings.DepartmentsView1.viewable ? 'No data to display.' : 'Access Denied.'}"
                          fetchSize="#{bindings.DepartmentsView1.rangeSize}" rowBandingInterval="0"
                          selectedRowKeys="#{bindings.DepartmentsView1.collectionModel.selectedRow}"
                          selectionListener="#{bindings.DepartmentsView1.collectionModel.makeCurrent}" rowSelection="single"
                          id="t1" partialTriggers="::sor1" visible="#{ControlVisibilty.table}">
                    <af:column sortProperty="#{bindings.DepartmentsView1.hints.DepartmentId.name}" sortable="false"
                               headerText="#{bindings.DepartmentsView1.hints.DepartmentId.label}" id="c1">
                        <af:inputText value="#{row.bindings.DepartmentId.inputValue}"
                                      label="#{bindings.DepartmentsView1.hints.DepartmentId.label}"
                                      required="#{bindings.DepartmentsView1.hints.DepartmentId.mandatory}"
                                      columns="#{bindings.DepartmentsView1.hints.DepartmentId.displayWidth}"
                                      maximumLength="#{bindings.DepartmentsView1.hints.DepartmentId.precision}"
                                      shortDesc="#{bindings.DepartmentsView1.hints.DepartmentId.tooltip}" id="it1">
                            <f:validator binding="#{row.bindings.DepartmentId.validator}"/>
                            <af:convertNumber groupingUsed="false"
                                              pattern="#{bindings.DepartmentsView1.hints.DepartmentId.format}"/>
                        </af:inputText>
                    </af:column>
                    <af:column sortProperty="#{bindings.DepartmentsView1.hints.DepartmentName.name}" sortable="false"
                               headerText="#{bindings.DepartmentsView1.hints.DepartmentName.label}" id="c2">
                        <af:inputText value="#{row.bindings.DepartmentName.inputValue}"
                                      label="#{bindings.DepartmentsView1.hints.DepartmentName.label}"
                                      required="#{bindings.DepartmentsView1.hints.DepartmentName.mandatory}"
                                      columns="#{bindings.DepartmentsView1.hints.DepartmentName.displayWidth}"
                                      maximumLength="#{bindings.DepartmentsView1.hints.DepartmentName.precision}"
                                      shortDesc="#{bindings.DepartmentsView1.hints.DepartmentName.tooltip}" id="it2">
                            <f:validator binding="#{row.bindings.DepartmentName.validator}"/>
                        </af:inputText>
                    </af:column>
                    <af:column sortProperty="#{bindings.DepartmentsView1.hints.ManagerId.name}" sortable="false"
                               headerText="#{bindings.DepartmentsView1.hints.ManagerId.label}" id="c3">
                        <af:inputText value="#{row.bindings.ManagerId.inputValue}"
                                      label="#{bindings.DepartmentsView1.hints.ManagerId.label}"
                                      required="#{bindings.DepartmentsView1.hints.ManagerId.mandatory}"
                                      columns="#{bindings.DepartmentsView1.hints.ManagerId.displayWidth}"
                                      maximumLength="#{bindings.DepartmentsView1.hints.ManagerId.precision}"
                                      shortDesc="#{bindings.DepartmentsView1.hints.ManagerId.tooltip}" id="it3">
                            <f:validator binding="#{row.bindings.ManagerId.validator}"/>
                            <af:convertNumber groupingUsed="false"
                                              pattern="#{bindings.DepartmentsView1.hints.ManagerId.format}"/>
                        </af:inputText>
                    </af:column>
                    <af:column sortProperty="#{bindings.DepartmentsView1.hints.LocationId.name}" sortable="false"
                               headerText="#{bindings.DepartmentsView1.hints.LocationId.label}" id="c4">
                        <af:inputText value="#{row.bindings.LocationId.inputValue}"
                                      label="#{bindings.DepartmentsView1.hints.LocationId.label}"
                                      required="#{bindings.DepartmentsView1.hints.LocationId.mandatory}"
                                      columns="#{bindings.DepartmentsView1.hints.LocationId.displayWidth}"
                                      maximumLength="#{bindings.DepartmentsView1.hints.LocationId.precision}"
                                      shortDesc="#{bindings.DepartmentsView1.hints.LocationId.tooltip}" id="it4">
                            <f:validator binding="#{row.bindings.LocationId.validator}"/>
                            <af:convertNumber groupingUsed="false"
                                              pattern="#{bindings.DepartmentsView1.hints.LocationId.format}"/>
                        </af:inputText>
                    </af:column>
                </af:table>
            </af:form>
        </af:document>
    </f:view>The managed bean code is
    import javax.faces.event.ValueChangeEvent;
    public class ControlVisibilty {
        private boolean table;
        public ControlVisibilty() {
            setTable(false);
        public void onRadioSelected(ValueChangeEvent valueChangeEvent) {
            // Add event code here...
            if(valueChangeEvent.getNewValue().toString().equals("1"))
                setTable(true);
            else
                setTable(false);
        public void setTable(boolean table) {
            this.table = table;
        public boolean isTable() {
            return table;
    }

  • How can we transform a video from progressive to interlaced with final cut?

    How can we transform a video from progressive (720x1080 50p) to interlaced (PAL) with final cut pro???????
    The video is taken with Sony EX3

    Hi Nick
    Sorry but your first link says +"The file you are trying to access is temporarily unavailable."+ ... but tell me, are you viewing these interlaced encodes yourself on an interlaced monitor (eg are you burning them to disc and viewing on a TV) as they are meant to be seen, or are you just playing them back from file on your (progressive) computer display?
    By the way, I did manage to download your source file and encoded it here. Looks ok to me ... in a addition to the instruction above, I also changed the Field Dominance in the Encoder > Video Format tab to Top First (it defaulted to progressive due to the progressive source file).
    Let me know if that helps
    Andy

  • Optional attributes in XML to ABAP transformation

    Hi,
    I have to deserialize (transformation xml to abap) an xml input file.
    I want to use SAP ST (Simple Transformations).
    This xml format is using attributes
    Such attributes can be transformed in ST with
    <tt:attribute name="item_id" value-ref="MATNR"/>
    I realized 2 problems:
    1. If the xml file does not contain every attribute which is in the transformation.
    This can be solved by tt:cond
    Sample
              <tt:cond>
                <tt:attribute name="uom" value-ref="BASE_UOM"/>
              </tt:cond>
    Now attribute uom is optional. Without the tt:cond the ST prragrom would throw exception if it is not in the file.
    2. If the xml file contains an attribute which is not used in the transformation.
    I tried to use tt:skip but it is not working for "<tt:attribute name= ... value-ref=... name" but only for "<tt:value-ref=...".
    I only want to get the values I need out of the parameter list.
    How can I achieve this without defining a transformation for every parameter in the xml file?
    Thanks and regards
    Michael

    Hi,
    thanks for reply. It took me into the right direction. You have to distinguish between elements (ordered structured nodes) and attributes (unordered structured nodes). In my case they are using attributes for the values of a material master.
    Here is a snippet (sample of the XML):
    <?xml version="1.0" encoding="utf-8"?>
    <TcPLMXML>
      <TCifEngPart item_id="1-3000-3630-00"
                   seMaterialType="HALB"
                   uom="ST"
                   seWeight="2000.0" seWeightUnit="KG">
      </TCifEngPart>
      <TCifEngPart item_id="1-30000-41002-00"
                   seMaterialType="HALB"
                   uom="ST"
      </TCifEngPart>
    </TcPLMXML>
    and my transformation:
          <tt:loop ref="MATERIAL_LIST">
            <TCifEngPart>
              <tt:attribute name="item_id" value-ref="MATNR"/>
              <tt:attribute name="object_name" value-ref="MATL_DESC"/>
              <tt:attribute name="seMaterialType" value-ref="MATL_TYPE"/>
              <tt:attribute name="uom" value-ref="BASE_UOM"/>
              <tt:cond>
                 <tt:attribute name="seLength" value-ref="LENGTH"/>
                 <tt:attribute name="seWidth" value-ref="WIDTH"/>
                 <tt:attribute name="seHeight" value-ref="HEIGHT"/>
              </tt:cond>
              <tt:skip>
                 <tt:attribute name="seWeight" />
                 <tt:attribute name="seVolume" />
              </tt:skip>
            </TCifEngPart>
          </tt:loop>
    Length, width and hight are optional in the XML and will be transferred to the corresponding SAP fields if they are in the input file Weight and volume will be ignored.
    This means all attributes I don't need I have to put within the tt:skip.
    Without this skip the transformation throws an error.
    In consequence if the partner system add new attributes I have to enhance the transformation in SAP.
    Is there any other way?

  • XML form and metadata property of a resource

    Hi,
    Is there any way to set custom metadata property of KM resource by entering it into input field of XML form?
    Can we relate property of a KM resource to the field created in XML form?

    Hi Deepti,
    check out the last reply in this <a href="https://forums.sdn.sap.com/thread.jspa?threadID=9449">thread</a>. It tells you how to work with predefined property meta data in the XML forms builder.
    Hope this answers your question,
    Robert

  • Help with DBMS_XMLSCHEMA.copyEvolve Transforms Parameter

    Oracle 11gr2 on Linux VM
    SQL*Plus: Release 11.2.0.1.0 Production on Wed Feb 22 13:51:28 2012
    Copyright (c) 1982, 2009, Oracle.  All rights reserved.
    Enter user-name: jmendez
    Enter password:
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    PL/SQL Release 11.2.0.1.0 - Production
    CORE    11.2.0.1.0      Production
    TNS for Linux: Version 11.2.0.1.0 - Production
    NLSRTL Version 11.2.0.1.0 - Production I'm not sure how to properly use the DBMS_XMLSCHEMA.copyEvolve procedure. I'm trying to evolve a schema (ArchivalTypes) and its dependent schema (collection). There are lots of transformations for the collection schema but Archival Types is just a schema made up of Arrays referenced in the collection schema (and eventually 4 other schemas). I don't "think" I need an XSL for archivalTypes... so how do I enter a null value since the transforms parameter in the procedure requires XSL files to be specified in the exact order as the schema files were listed (sorry if I'm not making sense). Below is my command:
    BEGIN
      DBMS_XMLSCHEMA.copyEvolve(
        xdb$string_list_t('http://localhost/xsd/test/ArchivalTypes_test.xsd','http://localhost/xsd/test/Collection.xsd'),
        XMLSequenceType(XDBURIType('/u01/app/xsd/test/ArchivalTypesEvolve.xsd').getXML(),XDBURIType('/u01/app/xsd/test/Collection_Evolve.xsd').getXML()),
        XMLSequenceType(XDBURIType('/u01/app/xsd/test/Collection_Evolve.xsl').getXML()));
    END;
    /I appreciate any help I can get here.

    Actually, I don't know why I didn't think about this before but it worked without having to "evolve" ArchiveTypes. ArchiveTypesEvolve is included in the new collection.xsd like so:
         <xs:include schemaLocation="http://localhost/xsd/test/ArchivalTypesEvolve.xsd"/>Does it make sense then? When I do schema evolution I just specify Collection.xsd and it works?
    BEGIN
      DBMS_XMLSCHEMA.copyEvolve(
        xdb$string_list_t('http://localhost/xsd/test/Collection.xsd'),
        XMLSequenceType(XDBURIType('/u01/app/xsd/test/Collection_Evolve.xsd').getXML()),
        XMLSequenceType(XDBURIType('/u01/app/xsd/test/Collection_Evolve.xsl').getXML()));
    END;
    /Should I be concerned that it worked this way? All the mapping was correct and the data looks good. I just thought it would be a little more complicated since Collection_test used ArchivalTypes and the new Collection_Evolve uses ArchivalTypesEvolve.

  • Captivate 7 Web Page Widget misaligned - Transform Property

    I just upgraded to Captivate 7 and am using a Widget to embed Web Page content for the first time.
    The project looks fine when I preview it, but when I publish it and post it to our LMS (SumTotal Maestro), the widget appears skewed in the resulting course window, like the whole widget just shifted 60 pixels to the left and 30 pixels down.
    I have tried using multiple web sites, so I don't think that is the problem.
    There is the Transform Property, which gets set automatically when you drag the widget around the interface screen. On a hunch I moved the widget's Transform Property 60 pixels right and 30 pixels up. That worked, in that the updated widget looks better in the final published project. But now it's skewed both in the workspace and when I preview it, not to mention getting it precisely where it needs to be is going to be a process of moving a couple of pixels, publishing and seeing how it looks, then repeating.
    Has anyone encountered this? Is there a setting I'm missing somewhere that messes up the Transform property?
    Thank you!

    Here is the reply (in bold) I got from Suresh Jayaraman from Adobe when I logged this as a bug.
    "The issue you are facing has nothing to do with SCORM setting. Probably you might have heard about Click Jacking , One of the ways web sites prevent themselves from this attack is by not displaying when loaded in a Frame or iFrame. They achieve this by setting the X-Frame options. They website you were trying to load in Web object was Adobe forums which has this protection and it is the case with some other websites like Google.com, facebook.com as well. As Web object interaction on run time loads the website in an iFrame such protected websites when loaded doesn’t show up."
    "I have attached a test file which would help you to determine whether the website you are loading is Click Jacking protected or not. Change the website address and launch the page from a web server and if it loads all is well, it would load in your Web Object interaction as well. Now enable reporting and try the same page from SCORM.com and It should display the page."
    The test file he is referring to is a html file. Since I cannot attach the file here, I am copy-pasting the source code:
    <html>
       <head>
         <title>Clickjack test page</title>
       </head>
       <body>
         <iframe src="http://www.google.com" width="500" height="500"></iframe>
       </body>
    </html>
    To test, first I changed the website address in the above code to that of Adobe forums. When I had inserted this site in my Web Object interaction, this site failed to show up (see my previous posts). When I launched this test file shared by Suresh from a webserver, the result was same... the site did not open.
    Next, I changed the website address to http://infosemantics.com.au. This site worked in Web Object Interaction and it worked here as well.
    I did not test it in SCORM Cloud as I was convinced by the reason Suresh provided. (I hope I am not wrong.)
    Sreekanth

  • How do I get rid of the Microsoft Setup Assistant loop? I migrated my software/documents from another laptop so don't have the disk to reinstall. Please help! Can't open any Microsoft Office software, like Word, and stuck in a loop?

    I migrated my software/documents from another laptop so don't have the disk to reinstall. Please help! Can't open any Microsoft Office software, like Word (for 2008), and stuck in a loop?
    Whenever I select Word Microsoft Setup Assistant appears, asks for feedback, then after selecting okay (both on saying yes or no to feedback) goes on to a registration page. When I click on this it says I've already registered so I just click okay, and then move on to a update page. After this, if I click on Word, the process repeats itself.
    As I said, I don't have the disk to reinstall, and can't find the Office Settings to delete as many pages have suggested I should try. Safe Boot restarting also hasn't worked... Really stuck and need Word very soon for work.
    If you can help, that would be great, and feel free to ask any questions about the situation as I'm not an expert here.
    Cheers,
    Jack

    First, export your contact from iCloud.com and save them on your computer in a safe spot some where (like you desktop).  Use this to help you do this: http://support.apple.com/kb/PH3606
    Next, on both of your devices, go to Settings > iCloud and turn on contacts and select Merge. Then turn off contacts and select 'Delete form my [device]' when prompted.
    Now go back to iCloud.com and select a contact (yes they will all be messed up again) and select Command+A on a Mac or Control+A on a PC to select all of the contacts.  Tap the delete key on your keyboard (or right click /control click a contact and select delete).
    You iPhone, iPad and iCloud.com should not be empty for contacts.
    Go back to Settings > iCloud on both devices and turn on contacts again (you should not see merge this time).
    Next, go back to iCloud.com and import your contacts (those exported .vcards).  You can either drag and drop them into the empty contacts list in your web browser, or you can use the gear icon to import.
    You cleaned up contacts should import correctly into iCloud.com and sync to both of your devices.
    Good luck.

  • Pls help - How can I add a typekit font to muse?

    As Muse doesn't come with all typekit fonts already included in the dropdown list of webfonts, I'd like to know how I can add a typekit font to the dropdown menu so I can use it for my website. I have Adobe creative cloud membership.
    I've searched the whole of the web and can't find anything about this at all - only about adding one of the existing muse typekit fonts which I already know how to do.
    Why doesn't Adobe include all typekit fonts with Muse when you're already a full creative cloud subscriber?

    Done!
    Date: Thu, 20 Dec 2012 03:13:17 -0700
    From: [email protected]
    To: [email protected]
    Subject: Pls help - How can I add a typekit font to muse?
        Re: Pls help - How can I add a typekit font to muse?
        created by morgan_in_london in Help with using Adobe Muse - View the full discussion
    You're very welcome - can I be cheeky and ask for a "correct answer" to be noted? :^D
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/4935814#4935814
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4935814#4935814
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4935814#4935814. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Help with using Adobe Muse by email or at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • My phone says there's 0 bytes available but only 6 GB are used the phone is supposed to be 8 GB I have no pictures at all and only 6 apps this is really bothering me please help I can't even take pictures because it says I've no storage

    My phone says there's 0 bytes available but only 6 GB are used the phone is supposed to be 8 GB I have no pictures at all and only 5 apps this is really bothering me please help I can't even take pictures because it says I've no storage I also have no messages at all

    My iPhone is a 16GB and it says 9.0GB Available and 3.7GB used; I suspect the missing 2.3GB is occupied by the system software.

  • Help!Can't access iCloud (pics apps) even with correct password. Won't download my stored info on my new phone

    Help!Can't access iCloud (pics apps) even with correct password. Won't download my stored info on my new phone

    That happens because photo stream photos only remain in iCloud for 30 days, even though your last 1000 photo stream photos remain on your devices until deleted.  When you enabled photo stream on your iPod 4, you only received photo stream photos from the last 30 days as older photos are no longer in iCloud.  If you want to stream these older photos to your new iPod, you will have to create a shared photo stream on your old one that contains these photos (requires iOS 6 or higher) and invite yourself as a subscriber, as explained here: http://help.apple.com/icloud/#/mmc0cd7e99.

  • I have purchased a ringtone in the iTunes Store for my iPad, and I cannot find the download together with my music. I have received the invoice but I have no product. I am working with iOS6, if that helps. Can anybody help me?

    I have purchased a ringtone in the iTunes Store for my iPad, and I cannot find the download together with my music. I have received the invoice but I have no product. I am working with iOS6, if that helps. Can anybody help me?

    I am confused. Do you mean you found the music, not the tones, or you can't find either?
    If the former, then this is normal. You can't redownload tones from the Cloud.

  • Help I can only have max. 3 osx apps. open at the same time ?

    Help I can only have max. 3 apps. open at the same time ?
    If I have 3 apps. open, and try to open a 4th. this message comes up :
    The application "Mail" cannot be launched. -10810
    Of cause if I'm trying to open up something else than mail, lets say iPhoto, it will say "iPhoto".
    This is very weird to me, and I'm normally pretty good at solving issues myself, but I'm stuck with this one.
    Please help out

    I've had this quite a lot too. Do you find that under these conditions you can't load a disk image either?
    At first I put this down to Rosetta taking up a lot of resources. I was running OmniWeb with a lot of pages open in the workspaces so I've switched back to Safari until OmniWeb is UB. This morning I read that having Windows file sharing switched on helps to cause this problem. I switched this off, rebooted and ran disk utility to repair disk permissions and I've been running OK since then. I've currently got 13 apps open plus Finder and Widgets. They include 2 bigguns, Eclipse/MyEclipse and Visual Paradigm for UML. It'll probably stop working now I've written that.
    I run a MBP 17 with 2GB memory. My guess is that Windows file sharing does cause problems. I just hope Apple has resolved this in 10.4.7... whenever that is.
    Gareth

Maybe you are looking for

  • Multiple apple id's on iCloud?

    Will iCloud support multiple Apple ID's? I have a dedicated work ID and a dedicated personal ID that need to be separated as well as my wife's and kids' ID's. I'm setting up a home network (Airport Extreme with external hard drives and printer) and w

  • Force Quit doesn't work

    I have been kinda irritated with the following problem which is happening quite often: When I use Safari to surf, sometimes as it tries to download some videos or pdf files, it hangs and I can see the beach ball rotating indefinitely. I cannot force

  • Recovery disc from Lenovo

    Hi all.  I have a T500 ThinkPad, and my hard drive failed the other day.  I never got around to making any recovery media, even though I have had the machine for almost a couple years.  I have read on the Lenovo support page that I can get a recovery

  • How can i increase the volume of 6plus when make phonecalls

    How can I increase the volume when I make the phonecalls. I already tried the normal method like press the slide volume button but it doesn't work.Is there any other methods to solve the problem?

  • Determine Sender dynamically while Sending workitem notification to Outlook

    Dear Experts, We have configured Extended Notifications for workflow in our system. We have set SENDER_NAME_INT = wfadmin SENDER_ADDR_INT = wfadmin mail ID .  I want this to be determined dynamically. i.e. For MM related notification it should be pur