Where does the jar for a custom tag libary need to go?

I am having trouble getting a custom tag library's classes found. These are located
in a jar file called blazix.jar.
I have the following GetName.jsp:
<%@ taglib prefix="blx" uri="/blx.tld" %>
<jsp:directive.page import="com.company.project.ejb.UserData"/>
<jsp:useBean id="user" class="UserData" scope="session"/>
<HTML>
     <BODY>
          <blx:getProperty name="user" property="*">
          <FORM METHOD=POST ACTION="SaveName.jsp">
               What's your name? <INPUT TYPE=TEXT NAME=username SIZE=20><BR>
               What's your e-mail address? <INPUT TYPE=TEXT NAME=email SIZE=20><BR>
               What's your age? <INPUT TYPE=TEXT NAME=age SIZE=4>
               <P><INPUT TYPE=SUBMIT>
          </FORM>
          </blx:getProperty>
     </BODY>
</HTML>
When I run this, I get the following:
Parsing of JSP File '/GetName.jsp' failed:
/GetName.jsp(1): Error in using tag library uri='/blx.tld' prefix='blx': cannot
find tag class: 'desisoft.jsp.tagext.SetProp'
probably occurred due to an error in /GetName.jsp line 1:
<%@ taglib prefix="blx" uri="/blx.tld" %>
The jar does contain the needed class (desisoft.jsp.tagext.SetProp), but how can
I tell WebLogic where to find it?
In other words, what directory does the blazix.jar need to go under? I tried
adding it to my classpath but that did not help.
Thanks!

I got it. Just needed to add my own lib directory under WEB-INF and copy the jar
to it.
Question though, why wouldn't this get generated for me? Would think it would
be a common thing to need.
"Darrin" <[email protected]> wrote:
>
BTW,
I placed the blx.tld file under the WEB-INF directory. It seems to find
it OK
there at least.
"Darrin" <[email protected]> wrote:
I am having trouble getting a custom tag library's classes found. These
are located
in a jar file called blazix.jar.
I have the following GetName.jsp:
<%@ taglib prefix="blx" uri="/blx.tld" %>
<jsp:directive.page import="com.company.project.ejb.UserData"/>
<jsp:useBean id="user" class="UserData" scope="session"/>
<HTML>
     <BODY>
          <blx:getProperty name="user" property="*">
          <FORM METHOD=POST ACTION="SaveName.jsp">
               What's your name? <INPUT TYPE=TEXT NAME=username SIZE=20><BR>
               What's your e-mail address? <INPUT TYPE=TEXT NAME=email SIZE=20><BR>
               What's your age? <INPUT TYPE=TEXT NAME=age SIZE=4>
               <P><INPUT TYPE=SUBMIT>
          </FORM>
          </blx:getProperty>
     </BODY>
</HTML>
When I run this, I get the following:
Parsing of JSP File '/GetName.jsp' failed:
/GetName.jsp(1): Error in using tag library uri='/blx.tld' prefix='blx':
cannot
find tag class: 'desisoft.jsp.tagext.SetProp'
probably occurred due to an error in /GetName.jsp line 1:
<%@ taglib prefix="blx" uri="/blx.tld" %>
The jar does contain the needed class (desisoft.jsp.tagext.SetProp),
but how can
I tell WebLogic where to find it?
In other words, what directory does the blazix.jar need to go under?
I tried
adding it to my classpath but that did not help.
Thanks!

Similar Messages

  • Where is the jar for me to import?

    import javax.servlet.http.*; <--- showing error
    import kr.pe.okjsp.util.*;
    import com.oreilly.servlet.MultipartRequest;
    public class WriteServlet extends HttpServlet {  <--- showing error
    long long time ago, there was
    server.jar
    but in java 5.0, where is the jar for me to import?
    It would be really appreciated. Do I have to download j2ee for this?
    My memory is fuzzy...
    Thanks -

    Yes, it is part of EE not SE. Or you can get it/them from your application server's lib dir (which may or may not be a better choice).

  • Where does the class for useBean go?

    I'm having trouble in jsp when I try to do a useBean. WebLogic can't seem to find my class. Where should the bean that I am trying to use go, and how should I refer to it in the .jsp file that needs to use it? Do I need to import the bean class?
    I have the following structure:
    proj_home
    '-->all .jsp and html files
    '---->Classes
    '------->com
    '----------->company
    '-------------->project
    '----------------->all class files for the project
    '---->src
    '------->com
    '----------->company
    '-------------->project
    '--------------->all source files for the project
    '---->WEB-INF
    Currently the bean is named UserData. It is in package com.company.project.
    I tried placing the UserData.class file everywhere I could think of but that didn't help.
    I then tried to import it into the bean that uses it like this:
    <jsp:directive.page import="com.company.project.UserData"/>
    But that gives me errors saying this:
    ...jsp_servlet\__savename.java:17: package com.company.project.ejb does not exist import com.company.project.ejb.UserData; //[ /SaveName.jsp; Line: 1]
    Well it does exist, but under the CLASSES directory.
    HELP!

    I was picking that up from your error message
    ..jsp_servlet\__savename.java:17: package com.company.project.ejb does not exist import com.company.project.ejb.UserData; //[ /SaveName.jsp; Line: 1]
    The folder structure needs to mirror the package structure exactly (standard java)
    So yes, If you have a com.company.project.ejb package with a class UserData within it
    "UserData.class" needs to be in folder "WEB-INF/classes/com/project/ejb/"
    If you don't have that class, then check your import statement - its asking for it.
    Good luck,
    evnafets

  • Where does the password for Elgamal algorithm is stored

    hi,
    i am doing a project in Intelligent security in java using Elagamal algorithm. The feature of Elgamal is that the password is not stored in database . Then where is the password is stored to check for a existing user .
    If i am an existing user then when i type the username and password then it should check or compare and tell that password is right or wrong . so where is the password is stored to compare ?? please give me the coding in java .
    i need the coding immediately , of how to get the password and to store and then to compare where the user is correct else message should display "type the correct password".
    Given below is my Main window coding plz help me where to include the coding,
         This simple extension of the java.awt.Frame class
         contains all the elements necessary to act as the
         main window of an application.
    // LOGIN WINDOW ( FIRST WINDOW ) FOR LOGIN AND EXISTING USER
    import java.awt.*;
    import java.io.*;
    import java.net.*;
    import java.util.*;
    import java.sql.*;
    import java.math.*;
    import java.security.*;
    import java.io.IOException;
    import javax.crypto.Cipher;
    import javax.crypto.IllegalBlockSizeException;
    import javax.crypto.KeyGenerator;
    import javax.crypto.SecretKey;
    public class Smart extends Frame
         public Smart()
              // This code is automatically generated by Visual Cafe when you add
              // components to the visual environment. It instantiates and initializes
              // the components. To modify the code, only use code syntax that matches
              // what Visual Cafe can generate, or Visual Cafe may be unable to back
              // parse your Java file into its visual environment.
              //{{INIT_CONTROLS
              setLayout(null);
              setBackground(new java.awt.Color(255,247,192));
              setSize(1200,900);
    // 157,135,178
              setVisible(false);
              label1.setText("USERID");
              add(label1);
              label1.setFont(new Font("Dialog", Font.PLAIN, 14));
              label1.setBounds(315,180,84,48);
              label2.setText("PASSWORD");
              add(label2);
              label2.setFont(new Font("Dialog", Font.PLAIN, 14));
              label2.setBounds(315,260,100,40);
              textField1.setBounds(430,180,216,36);
              //textField1.setBackground(new java.awt.Color(196,197,233));//textfieldcolor
              add(textField1);
              textField2.setEchoChar('*');
              //textField2.setBackground(new java.awt.Color(196,197,233));
              add(textField2);
              textField2.setBounds(430,260,213,36);
              button1.setLabel("SUBMIT");
              add(button1);
              button1.setBackground(new java.awt.Color(196,197,233));
              button1.setBounds(320,360,120,40);
              button2.setLabel("CLEAR");
              add(button2);
              button2.setBackground(new java.awt.Color(196,197,233));
              button2.setBounds(520,360,120,40);
              label3.setText("REGISTRATION FORM");
              add(label3);
              label3.setFont(new Font("Dialog", Font.BOLD, 20));
              label3.setBounds(324,54,550,80);
              button3.setLabel("NEW USER REGISTRATION");
              add(button3);
              button3.setBackground(new java.awt.Color(196,197,233));
              button3.setBounds(369,450,232,40);
              //add(textArea1);
              //textArea1.setBounds(0,360,576,52);
              setTitle("LOGIN PHASE Application");
              /*int mStrength = 16;
              SecureRandom mSecureRandom = new SecureRandom();
              p = new BigInteger(mStrength, 16, mSecureRandom);*/
              //{{INIT_MENUS
              //{{REGISTER_LISTENERS
              SymWindow aSymWindow = new SymWindow();
              this.addWindowListener(aSymWindow);
              SymAction lSymAction = new SymAction();
              button1.addActionListener(lSymAction);
              button2.addActionListener(lSymAction);
              button3.addActionListener(lSymAction);
         public Smart(String title)
              this();
              setTitle(title);
    * Shows or hides the component depending on the boolean flag b.
    * @param b if true, show the component; otherwise, hide the component.
    * @see java.awt.Component#isVisible
    public void setVisible(boolean b)
              if(b)
              setLocation(50, 50);
              super.setVisible(b);
         public static void main(String args[])
         try
                   //Create a new instance of our application's frame, and make it visible.
              (new Smart()).setVisible(true);
              catch (Throwable t)
                   System.err.println(t);
                   t.printStackTrace();
                   // Ensure the application exits with an error condition.
                   System.exit(1);
              public void addNotify()
              // Record the size of the window prior to calling parents addNotify.
              Dimension d = getSize();
              super.addNotify();
              if (fComponentsAdjusted)
                   return;
              // Adjust components according to the insets
              setSize(getInsets().left + getInsets().right + d.width, getInsets().top + getInsets().bottom + d.height);
              Component components[] = getComponents();
              for (int i = 0; i < components.length; i++)
                   Point p = components.getLocation();
                   p.translate(getInsets().left, getInsets().top);
                   components[i].setLocation(p);
              fComponentsAdjusted = true;
         // Used for addNotify check.
         boolean fComponentsAdjusted = false;
         //{{DECLARE_CONTROLS
         java.awt.Button button1 = new java.awt.Button();
         java.awt.Button button2 = new java.awt.Button();
         java.awt.Label label1 = new java.awt.Label();
         java.awt.Label label2 = new java.awt.Label();
         java.awt.Label label3 = new java.awt.Label();
         java.awt.Button button3 = new java.awt.Button();
         java.awt.TextField textField1 = new java.awt.TextField();
         java.awt.TextField textField2 = new java.awt.TextField();
         java.awt.TextArea textArea1 = new java.awt.TextArea();
         //BigInteger p;
         //{{DECLARE_MENUS
         class SymWindow extends java.awt.event.WindowAdapter
              public void windowClosing(java.awt.event.WindowEvent event)
                   Object object = event.getSource();
                   if (object == Smart.this)
                        Smart_WindowClosing(event);
         void Smart_WindowClosing(java.awt.event.WindowEvent event)
              System.exit(0);
         class SymAction implements java.awt.event.ActionListener
              public void actionPerformed(java.awt.event.ActionEvent event)
                   Object object = event.getSource();
                   if (object == button1)
                        button1_ActionPerformed(event);
                   else if (object == button2)
                        button2_ActionPerformed(event);
                   else if (object == button3)
                        button3_ActionPerformed(event);
         void button1_ActionPerformed(java.awt.event.ActionEvent event)
              //try{
              String ids = textField1.getText();
              String pss = textField2.getText();
              byte [] bt = ids.getBytes();
              BigInteger id = new BigInteger(bt);
              //by samy byte [] bts = pss.getBytes();
              //BigInteger ps = new BigInteger(bts);
         int mStrength = 16;
         SecureRandom mSecureRandom = new SecureRandom();
         BigInteger p = new BigInteger(mStrength, 16, mSecureRandom);
         System.out.println("p = "+p.toString(16));
         BigInteger g = new BigInteger(mStrength - 1, mSecureRandom);
         System.out.println("g= "+g.toString(16));
         BigInteger x = new BigInteger(mStrength - 1, mSecureRandom);
         System.out.println("x="+x.toString(16));
         //byte[] bt = id.getBytes();
         BigInteger idb = new BigInteger(bt);
         //System.out.println("id= "+idb.toString(16));
         BigInteger ps = idb.modPow(x, p);
         //String pw = new String("pass = "+ps.toByteArray());
         System.out.println("ps ="+ps.toString(16));
         BigInteger r =null;
    BigInteger ONE = BigInteger.valueOf(1L);
    BigInteger p_1 = p.subtract(ONE);
    SecureRandom sr = new SecureRandom();
    do {
    r = new BigInteger(p.bitLength(), sr);
    } while (r.compareTo(ONE) <= 0 || r.compareTo(p_1) >= 0);
         System.out.println("r= "+r.toString(16));
         BigInteger c1 =idb.modPow(r,p);
         System.out.println("c1= "+c1.toString(16));
         long time = System.currentTimeMillis();
         System.out.println("TIME ="+time);
         BigInteger one = new BigInteger( new Integer(1).toString());
         BigInteger T = new BigInteger( new Long(time).toString());
         BigInteger t =T.xor(ps);
         BigInteger t1 = t.mod(p.subtract(one));
         System.out.println("t="+t1.toString(16));
         BigInteger M = idb.modPow(t1, p);
         System.out.println("M="+M.toString(16));
         int rnd = r.intValue();
         BigInteger c2 =ps.modPow(r,p).multiply(M).mod(p);
         System.out.println("c2 ="+c2.toString(16));
         //(bia[0].modPow(a, p).modInverse(p)).multiply(bia[1]).mod(p);
         BigInteger val1 = (c1.modPow(x,p).modInverse(p)).multiply(c2).mod(p);
         BigInteger val2 = id.modPow(t1,p);
         System.out.println(val1.toString(16));
         System.out.println(val2.toString(16));
    send s=new send();
    // }catch( IOException e){
    //System.out.println("Exception caught ") ; }     
    //     catch( Exception e){
    //System.out.println("Exception caught ") ; }               
         void button2_ActionPerformed(java.awt.event.ActionEvent event)
              textField1.setText("");
              textField2.setText("");
         void button3_ActionPerformed(java.awt.event.ActionEvent event)
         {   Security s1 = null;
              try
    System.out.println("this is in Smart ");
         //Create a new instance of our application's frame, and make it visible.
              s1 = new Security();
              s1.setVisible(true);
              catch (Throwable t)
                   System.err.println(t);
                   t.printStackTrace();
                   //Ensure the application exits with an error condition.
                   System.exit(1);
              //s1.dispose();     

    I was picking that up from your error message
    ..jsp_servlet\__savename.java:17: package com.company.project.ejb does not exist import com.company.project.ejb.UserData; //[ /SaveName.jsp; Line: 1]
    The folder structure needs to mirror the package structure exactly (standard java)
    So yes, If you have a com.company.project.ejb package with a class UserData within it
    "UserData.class" needs to be in folder "WEB-INF/classes/com/project/ejb/"
    If you don't have that class, then check your import statement - its asking for it.
    Good luck,
    evnafets

  • Where does the Services for Object (GOS) store data?

    I have a requirement that I need to upload a Blocking Reason document for any blocked vendor.
    The normal process we follow for blocking is XK02->Extras-> Blocked Data or XK05.
    We want to check before the Vendor is saved with blocked data whether he/she (who is blocking the vendor) has uploaded the Blocking Reason Document .
    I found out that we have an option in Vendor screen for uploading a document under 'Services for Object' in XK02 as shown in the below (in the red box).
    After uploading the attachment it will show the uploaded document in the Attachment List as shown below.
    I don't know where this entry is stored. I checked in the table SOOD (SAPoffice: Object definition), but there is no entry in there.
    I would like to know on how to check whether the file has been uploaded at the time of saving the vendor.
    If anyone knows the table in which this data is stored, kindly point it out.
    Thank You,
    Sreejith Babu.

    Hi Sreehith,
    Please refer the following document: http://wiki.scn.sap.com/wiki/x/yIEEBQ
    These attachments can be downloaded using FM BDS_GOS_CONNECTIONS_GET
    Refer the following document: Printing or Downloading Service For Object Attachments to local desktop
    Regards,
    Vijay

  • Where does the magnet go for the reed switch? (i found the magnet after . .

    My hinges had broken on the display so I replaced the display.
    After putting back the unit together I found a magnet ?
    The unit was going to sleep with the screen open.
    I assume this is for the reed switch, where does the magnet go?
    in the computer?
    I found reference to the 12" ibook G4 1.2ghz with the reed switch under "end" key and the magnet in the screen. However I found the sensor "reed switch" in my screen in the right upper side.

    I found it.
    Message was edited by: Patrick Bagdasarian

  • Where does one search for ALL the APPS that are available?

    Where does one search for All the apps that are available ?

    If you don't see any messages, not have anti-malware running or the Firewall on, try installing the Mac OS X 10.6.8 Update Combo
    It's ok to do this even though you are already running v10.6.8 (according to your profile).
    Restart your Mac after the combo in installed, try the App Store.
    Also... if you have an app called Little Snitch installed, that can prevent a connection to the App Store.

  • Where does the ACS server get the DNS info for IP pools?

    I am trying to change the DNS servers that my VPN users are assigned from the IP pools on the ACS server. Where does the IP pools get the DNS server information. I have changed the DNS Ips on the windows server and rebooted. But the VPN clients are still being assigned the old DNS servers.

    ACS ip pools do not push DNS server information
    It is either being forwarded from VPN concentrator group setup or
    it is being send from ACS user/group setup > Radius(VPN 3000) attributes > [026/3076/005] Primary-DNS.
    Hope this helps.
    Regards
    Rohit

  • Where does the BPEL project goes when deployed to a Linux server?

    Hi,
    Where does the BPEL project goes (I need the path) when deployed from JDeveloper into a Linux server?
    Also I would like to know the file name. We have been searching for a *.jar file but we cannot find it.
    Please help.
    Amorsolo

    And also, one zip file with size 0KB get created under$ORACLE_HOME$ \integration\esb\oraesb\deploy.
    This will be named *'bpelservice_+<yourdomainname>+_<processname>'*
    Edited by: Arjun_M on Sep 10, 2009 6:13 AM
    Edited by: Arjun_M on Sep 10, 2009 6:13 AM
    Edited by: Arjun_M on Sep 10, 2009 6:13 AM

  • Where does the personalized page definition exist in the database?

    Hey all,
    Where does the personalized page definition exist in the database(which top)?From the functional adminitartor i see the path as "/oracle/apps/ar/creditmgt/analysis/casefolder/webui/customizations/responsibility/12345/pagename.xml" where does this structure actually exist in the file system? i want to know the header package or root directory of "/oracle/apps/ar/creditmgt/analysis/casefolder/webui/customizations/"
    one more question the gurus is if i want to migrate a personalization from on instance to another should i have the same above folder structure?
    Like i export the customized page from my T1 test instance to T1 file system now i move this to T2 file system...now in my T2 file system should i have similar structure like "XX_TOP/oracle/apps/ar/creditmgt/analysis/casefolder/webui/customizations/" for successful migration?
    Thanks & Regards,
    Sameer.T

    You perobably need someone more 'tecchie' than me to answer the first question. But, the structure will already exist as it is built into the application.
    To answer your second question, to transfer the personalisation from one instance to the other, you can use the Functional Administrator responsibility. Your DBA will need to create a 'common' directory which is available to both instances. If the two instances cannot 'talk to each other', then he may have to FTP the XML files from one instance to the other.
    When you export from instance A, the appropriate structure will be built underneath the root 'transfer' directory described above. In the target environment, you import the same structure.
    As personalisations are at various levels, e.g. responsibility, function etc. Beware that at the responsibility level, the match between the responsibility name on the source and target systems is done by the responsibikity key. As long as this is the same in both environments, the personalisation will be transferred. If it is different it won't work!
    I hope this helps answer the question.
    Regards
    Tim

  • Does Inprise 4.1 support Custom Tag? Please Help!

    Hi there
    Does Inprise 4.1 support Custom Tag? If so, could you please tell me where to place the .tld file and the classese or just tell me where to find information about that.
    Thank you very much!
    From
    Edmund

    Please help!! I still can't work it out...

  • Apple maps has received a poor performance rating just after introduction of the iPhone 5. I am running google maps app on the phone. Siri cannot seem to get me to a specific address. Where does the problem lie? Thanks.

    Apple maps has received a poor performance rating just after introduction of the iPhone 5. I am running Google Maps app on the phone. SIRI cannot seem to get me to a specific address. Where does the problem lie? Also can anyone tell me the hierarchy of use between the Apple Maps, SIRI, and Google maps when the app is on the phone? How do you choose one over the other as the default map usage? Or better still how do you suppress SIRI from using the Apple maps app when requesting a "go to"?
    I have placed an address location into the CONTACTS list and when I ask SIRI to "take me there" it found a TOTALLY different location in the metro area with the same street name. I have included the address, the quadrant, (NE) and the ZIP code into the CONTACTS list. As it turns out, no amount of canceling the trip or relocating the address in the CONTACTS list line would prevent SIRI from taking me to this bogus location. FINALLY I typed in Northeast for NE in the CONTACTS list (NE being the accepted method of defining the USPS location quadrant) , canceled the current map route and it finally found the correct address. This problem would normally not demand such a response from me to have it fixed but the address is one of a hospital in the center of town and this hospital HAS a branch location in a similar part of town (NOT the original address SIRI was trying to take me to). This screw up could be dangerous if not catastrophic to someone who was looking for a hospital location fast and did not know of these two similar locations. After all the whole POINT of directions is not just whimsical pasttime or convenience. In a pinch people need to rely on this function. OR, are my expectations set too high? 
    How does the iPhone select between one app or the other (Apple Maps or Gppgle Maps) as it relates to SIRI finding and showing a map route?  
    Why does SIRI return an address that is NOT the correct address nor is the returned location in the requested ZIP code?
    Is there a known bug in the CONTACTS list that demands the USPS quadrant ID be spelled out, as opposed to abreviated, to permit SIRI to do its routing?
    Thanks for any clarification on these matters.

    siri will only use apple maps, this cannot be changed. you could try google voice in the google app.

  • Where are the drivers for HP LaserJet 5P for Windows 8.1 (64bit)?

    Had been using HP LaserJet 5p printer with HP LaserJet 5p printer driver, but had printer disconnect for a few months due to not have black toner.  Now I want to use the printer and my control panel does not show HP Laser 5p printer for my tablet but shows it for my laptop.   I can not find the driver on the HP support list and the support list does not recognize  HP LaserJet 5p.   
    Where are the drivers for HP LaserJet 5p for windows 8.1 (64bit)??????

    Hi,
    Basic print drivers are available for the HP Laerjet 5P via Windows Update.
    Follow these steps to install the printer drivers on Windows 8.1:
    http://h20564.www2.hp.com/hpsc/doc/public/display?docLocale=en_US&docId=emr_na-c03470332#N100AA
    Shlomi
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • Random Vectors/images color inverted in print, but not in PDF. Where does the fault lie?

    Sent a PDF to the newspaper printer and some of the images had inverted/strange colors. However...
    In one case I had duplicate images of a pink vector flower. SOME of the flowers were inverted, to a dark blue/black, and some were fine(pink). These were embedded vectors.
    In other instances vectors, went from orange to blue/black, pink to blue/black, and yellow/white to blue black. I specify because in one vector image, a ring, the ring was yellow, but the diamond was white, and it all changed to the same blue/black in print.
    Finally, there were two greyscale Tiff photographs of a pair of ladies. These are not embedded, and have not been altered at all and since the last time this paper has been printed, (which printed fine). This time, they were inverted. Nothing else on the page was inverted.
    As far as I can tell, there is not a separation issue, and I have saved the file from InDesign CC to pdf using the same settings as dozens of times before. The pdf on my end looks fine. The printer says they just print what they receive, but as far as I can tell, there is no issue on our end. The fact that some duplicated images printed fine, and others did not seem to confirm this. Everything is properly linked. Has anyone else experienced this problem? Is this a pdf, InDesign, or even an adobe problem at all, or it is something on their end? I have heard of inverted colors before, but can't find a solution (especially as I can't even see the problem on my end.)
    Using Windows 8, up-to-date InDesign CC, and Acrobat Pro, Illustrator CS6 ver.16.2.0 64bit
    I have no idea what the printer uses.

    Where does the fault lie? - in an environment where they (the newsprinter) collect up front, have no responsibility for quality and arrogantly believe, perhaps correctly, that you'll be back with another paying job in the future.
    Check the file you sent via Acrobat Preflight or Output Preview for RGB elements.
    Check the file you sent via Acrobat Preflight - Checks - For Transparency Used
    Do any of these elements off color involve rgb or interact (with or near) any transparency?
    (InDesign could show these attributes via the links panel or a Live Preflight. Both can be (probably should be in your case) changed via the PDF Export)

  • I'm trying to use Dictation.  Where does the text go, and how can I retrieve it?  Thank you.

    I'm trying to use Dictation.  Where does the text go, and how can I retrieve it?  Thank you.

    You dictate after you open a blank page in any text editor. The text goes on the page.
    You can use Text Edit for example (in your applications folder).
    With the blank page open, go to the Edit menu and select Start Dictation. When you are finished, you save the file as you would any other document. You can retrieve it, edit it or anything else you want, because it is a file like any other you create with that text editor.

Maybe you are looking for

  • IDOC Custom Fields are not coming in MII

    Hi Guys, I am receiving Standard IDOC (MATMAS) with Custom segment. Custom segment having two Z-fields and One Standard field. While fetching the IDOC at MII end, I am able receive IDOC except Z-fields, Custom Segment is coming perfectly with the one

  • How can I change my app store country?

    For some reason itunes was able to change my country from Australia to UK and now I can't change back. I have tried but I wasn't allowed to do it because I still have money left to spend on my itunes account. Can someone please help me with this prob

  • Do you know how to change the Text Object for Billing Document?

    Hi, If you execute Transaction VOTX or VOTXn it will take you to Text Determination. The Billing Doc & Sales Document both has the VBBK as Text Object for me and is it like that for all. I need to change the Text Object to VBRK for Billing Doc, which

  • Camera raw opening in a weird language

    when I try to open CR2 files in Camera Raw through Bridge or Photoshop it appears in a foreign language (looks arabic or something). I have checked prefrences in all areas to make sure they are set to english and have also tried to re-install all of

  • Oracle Development Survey: Data Warehouses Customers

    At the start of most data warehouse projects, or even during a project, I am sure you as customers try to find answers to the following questions to help you plan and manage your environments: * Where can I find trend and comparison information to he