Save as method not working when variable is in the name...

Refer to code below.  "currentWord" contains the string "classthatisverylong". The first "filename" works great.  The second one does not.  How can I get around this?  Is there an easy way? Or even a hard way?  Im open to anything!
'fileName = "T:\Text Editing and Proofreading\Testing folder\classthatisverylong"
fileName = "T:\Text Editing and Proofreading\Testing folder\" & currentWord
docref.SaveAs fileName
docref.Close

I convert everything to forward slashes before scripting paths in Adobe. Also, instead of using a path variable I believe you should use a File object like in this example:
    var intResult = 1;
    var checkPath = new Folder(docSetup.savePath);
    if(!checkPath.exists)
        checkPath.create();
    if(!checkPath.exists)
        alert('Unable to save at location ' + docSetup.savePath);
    else
        try
            var fileName = docSetup.savePath + docSetup.docTitle;
            var filePath = new File(fileName);
            var saveOpt = new IllustratorSaveOptions();
            saveOpt.compressed = true;
            saveOpt.pdfCompatible = true;
            doc.saveAs(filePath,saveOpt);
            intResult = 0;
        catch(e)
            intResult = 2;
So, please try replacing backslashes with forward slashes and using the File object instead of a string value. I also separate the file name from the directory so I can create the directory if necessary.

Similar Messages

  • I have i phone 4s i there is problem of wifi my wifi is not working when i go to the wifi there is no working on off when i update it as a 6.1 ios on that time again it was good but after 2 days again the same problem i am too tired

    I have i phone 4s i there is problem of wifi my wifi is not working when i go to the wifi there is no working on off when i update it as a 6.1 ios on that time again it was good but after 2 days again the same problem i am too tired and i also reset network setting but nothing gonna be worked

    Sounds like the device was dropped at some point and damaged as a result.
    Take it to Apple for evaluation and a replacement.

  • The touch screen is not working when I am in the Music app of my iPod Touch.  How do I get it to begin working?  It just stopped today.

    The touch screen is not working when I am in the Music app of my iPod Touch.  How do I get it to begin working?  It just stopped today.
    Does anyone know what I can do?  I am unable to switch screens, and I can not see the track that is playing.  The only was I can switch between songs is to use the controls on my headphones.

    Try the stamdard fixes to rule out a software problem:
    - Reset. Nothing will be lost
    Reset iPod touch:  Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Restore from backup
    - Restore to factory defaults/new iPod.

  • My iphone text tone is not working when I plug in the earphone.

    Hi,
    My iphone text tone is not working when I plug in the earphone.
    My earphone is always plug into the iphone as I use it to answer calls. I notice that iphone does not alert me (sound) when there is a new messages. Instead the text sound is transfer to the earphone speaker.
    As the earphone is plug into the iphone and I am not putting it on always, I need it to still hear the text tone whenever I received new messages.
    Anyone pls help.. the problem still there even I updated..

    goh steven wrote:
    hi wjosten
    I don't put the iphone in my front pocket. I put in my bag pack so vibration is not useful to me. Pls help
    The iPhone is working exactly as it is designed.
    Your options are:
    1) Unplug the headset.
    2) Leave the headset plugged in and the earpiece in your ear at all times.
    3) Turn on vibrate and put the phone in your pocket.
    4) Leave feedback for Apple and hope they deem it worthy of their time to fix.
    This is a user to user forum, these are the only solutions we can offer you here.

  • ActionPerformed method not working when applet is loaded in browser window.

    Hey there guys. I need urgent help from anybody who has experience in deploying websites whose code is in java.
    I am having two problems as mentioned below...
    first, I have made a simple login screen using java swing and JApplet. there is a single button to login. the action performed for this button accesses a private method to check the username and password which are there in atext file. the applet is working perfectly in appletviewer but when i load the applet in a Internet Explorer window using HTML's Applet tag, the button is giving no response at all even when i enter the correct username and password.
    I guess it is either not calling the private function that is checking the username and password from the tes=xt file or it can not access the file. Please help as soon as possible as this is related to my college project.
    I am attaching the code herewith. Suggestions to improve the coding are also welcome.
    the second problem is that while writing my second program for generating a form which registers a user the html is not at all loading the applet into the browser and also if im trying to access a file to write all the details into the console is showing numerous amount of error after i press the button which i can't not understand. the only thing i can understand is that it is related to file access permissions. If anybody could put some light on the working of worker threads and thread safe activities of SwingUtilities.invokeandWait method it would be really appreciable.
    import java.io.*;
    import java.awt.*;
    import javax.swing.*;
    import java.awt.event.*;
    import javax.swing.event.*;
    import javax.swing.plaf.*;
    <applet code = "UserLogin" width = 300 height = 150>
    </applet>
    public class UserLogin extends JApplet implements ActionListener, KeyListener {
         private JLabel lTitle;
         private JLabel lUsername, lPassword;
         private JTextField tUsername;
         private JPasswordField tPassword;
         private JButton bLogin;
         private JLabel lLinkRegister, lLinkForgot;
         private JLabel lEmpty = new JLabel(" ", JLabel.CENTER);
         private JPanel panel1, panel2;
         public void init() {
              try {
                   UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
                   SwingUtilities.invokeAndWait(new Runnable() {
                        public void run() {
                             LoginGUI();
              catch(Exception e) {
                   e.printStackTrace();
         public void start() {
              setVisible(true);
         public void stop() {
              setVisible(false);
         private void LoginGUI() {
              super.setSize(300, 150);
              super.setBackground(Color.white);
              lTitle = new JLabel("<HTML><BODY><FONT FACE = \"COURIER NEW\" SIZE = 6 COLOR = BLUE>Login</FONT></BODY></HTML>", JLabel.CENTER);
              lUsername = new JLabel("Username : ", JLabel.CENTER);
              lPassword = new JLabel("Password : ", JLabel.CENTER);
              tUsername = new JTextField(15);
              tPassword = new JPasswordField(15);
              bLogin = new JButton("LOGIN");
    //          bLogin.setEnabled(false);
              bLogin.addActionListener(this);
              bLogin.addKeyListener(this);
              panel2 = new JPanel();
              GridBagLayout gbag = new GridBagLayout();
              GridBagConstraints gbc = new GridBagConstraints();
              panel2.setLayout(gbag);
              panel2.addKeyListener(this);
              gbc.anchor = GridBagConstraints.CENTER;
              panel2.setMinimumSize(new Dimension(300, 200));
              panel2.setMaximumSize(panel2.getMinimumSize());
              panel2.setPreferredSize(panel2.getMinimumSize());
              gbc.gridx = 1;
              gbc.gridy = 1;
              gbag.setConstraints(lUsername,gbc);
              panel2.add(lUsername);
              gbc.gridx = 2;
              gbc.gridy = 1;
              gbag.setConstraints(tUsername,gbc);
              panel2.add(tUsername);
              gbc.gridx = 1;
              gbc.gridy = 2;
              gbag.setConstraints(lPassword,gbc);
              panel2.add(lPassword);
              gbc.gridx = 2;
              gbc.gridy = 2;
              gbag.setConstraints(tPassword,gbc);
              panel2.add(tPassword);
              gbc.gridx = 2;
              gbc.gridy = 3;
              gbag.setConstraints(lEmpty,gbc);
              panel2.add(lEmpty);
              gbc.gridx = 2;
              gbc.gridy = 4;
              gbag.setConstraints(bLogin,gbc);
              panel2.add(bLogin);
              panel1 = new JPanel(new BorderLayout());
              panel1.add(lTitle, BorderLayout.NORTH);
              panel1.add(panel2, BorderLayout.CENTER);
              add(panel1);
              setVisible(true);
         public void keyReleased(KeyEvent ke) {}
         public void keyTyped(KeyEvent ke) {}
         public void keyPressed(KeyEvent ke) {
              if(ke.getKeyCode() == KeyEvent.VK_ENTER){
                   String username = tUsername.getText();
                   String password = new String(tPassword.getPassword());
                   if(username.length() == 0 || password.length() == 0) {
                        JOptionPane.showMessageDialog(new JFrame(),"You must enter a username and password to login", "Error", JOptionPane.ERROR_MESSAGE);
                   else {
                        boolean flag = checkUsernamePassword(username, password);
                        if(flag)
                             JOptionPane.showMessageDialog(new JFrame(),"Username and Password Accepted", "Access Granted", JOptionPane.INFORMATION_MESSAGE);
                        else
                             JOptionPane.showMessageDialog(new JFrame(),"Username or password Incorrect", "Access Denied", JOptionPane.INFORMATION_MESSAGE);
         public void actionPerformed(ActionEvent ae) {
              String gotCommand = ae.getActionCommand();
              if(gotCommand.equals("LOGIN")) {
                   String username = tUsername.getText();
                   String password = new String(tPassword.getPassword());
                   if(username.length() == 0 || password.length() == 0) {
                        JOptionPane.showMessageDialog(new JFrame(),"You must enter a username and password to login", "Error", JOptionPane.ERROR_MESSAGE);
                   else {
                        boolean flag = checkUsernamePassword(username, password);
                        if(flag)
                             JOptionPane.showMessageDialog(new JFrame(),"Username and Password Accepted", "Access Granted", JOptionPane.INFORMATION_MESSAGE);
                        else
                             JOptionPane.showMessageDialog(new JFrame(),"Username or password Incorrect", "Access Denied", JOptionPane.INFORMATION_MESSAGE);
         private boolean checkUsernamePassword(String username, String password) {
              String user = null, pswd = null;
              try {
                   FileInputStream fin = new FileInputStream("@data\\userpass.txt");
                   DataInputStream din = new DataInputStream(fin);
                   BufferedReader brin = new BufferedReader(new InputStreamReader(din));
                   user = (String) brin.readLine();
                   pswd = (String) brin.readLine();
              catch(IOException ioe) {
                   ioe.printStackTrace();
              if(username.equals(user) && password.equals(pswd))
                   return true;
              else
                   return false;
    }PLEASE HELP ME GUYS......

    RockAsh wrote:
    Hey Andrew, first of all sorry for that shout, it was un-intentional as i am new to posting topics on forums and didn't new that this kind of writing is meant as shouting. Cool.
    Secondly thank you for taking interest in my concern.No worries.
    Thirdly, as i mentioned before, I am reading i file for checking of username and password. the file is named as "userpass.txt" and is saved in the directory named "@data" which is kept in the same directory in which my class file resides.OK - server-side. That makes some sense, and makes things easier. The problem with your current code is that the applet will be looking for that directory on the end user's local file system. Of course the file does not exist there, so the applet will fail unless the the end user is using the same machine as the server is coming from.
    To get access to a resource on the server - the place the applet lives - requires an URL. In applets, URLs are relatively easy to form. It might be something along the lines of
    URL urlToPswrd = new URL(getCodeBase(), "@data/userpass.txt");
    InputStream is = urlToPswrd.openStream();
    DataInputStream din = new DataInputStream(is);
    So the problem is that it is reading the file and showing the specific output dialog box when i run it through appletviewer.. Huhh. What version of the SDK are you using? More recent applet viewers should report security exceptions if the File exists.
    ..but the same is not happening when i launch the applet in my browser window using the code as written belowHave you discovered how to open the Java Console in the browser yet? It is important.
    Also the answer to your second question
    Also, the entire approach to storing/restoring the password is potentially wrong. For instance, where is it supposed to be stored, on the server, or on the client?is that, as of now it is just my college project so all the data files and the username and password wiles will be stored on my laptop only i.e. on the client only. no server involved.OK, but understand that an applet ultimately does not make much sense unless deployed through a server. And the entire server/client distinction becomes very important, since that code would be searching for a non-existent file on the computer of the end user.

  • Page with PartialTriggers is not working when it loads for the first time

    Hi All,
    I am experiencing unexpected behavior when using partial triggers and this recurres every time the page loads and the second time it works fine.
    Here is the requirement, The page has a check box, when checked, two text boxes should be disabled. When unchecked the two fields should be enabled.
    (The fields are Start Date Time and End Date Time in the code below). I am also handiling the Date Validations on value change listener of Start Date time and have no issues on that.
    When I try to enter the dates on page load (The check box - "Process Full Indicator" is not selected), I enter the required fields (PEID, Dates and check the Process IAF and Process SMS check boxes and click on the ProcessRFI Button, the date fields are emptied and nothing happens. When i redo the same thing the second time, it works.
    The button invokes a BEPL process.
    One of the links suggested that I use the partialTrigger tag in the parent layout, I used in the panelFormLayout and it sill did not reflect.
    I am facing the same issue in an other page that is reteriving data from a DB Table. As I notice, both the pages are invoking dataControlls. Not too sure if it is related.
    Kindly help.
    <af:panelFormLayout id="pfl1"
    inlineStyle="font-weight:bold; height:181px;"
    >
    <af:inputText value="#{bindings.PEID.inputValue}"
    label="PEID"
    required="#{bindings.PEID.hints.mandatory}"
    columns="#{bindings.PEID.hints.displayWidth}"
    maximumLength="#{bindings.PEID.hints.precision}"
    shortDesc="#{bindings.PEID.hints.tooltip}" id="it1"
    inlineStyle="font-weight:bold;">
    <f:validator binding="#{bindings.PEID.validator}"/>
    </af:inputText>
    <!--af:inputText value="#{bindings.EnrichmentBatchID.inputValue}"
    label="Enrichment Batch ID"
    required="#{bindings.EnrichmentBatchID.hints.mandatory}"
    columns="#{bindings.EnrichmentBatchID.hints.displayWidth}"
    maximumLength="#{bindings.EnrichmentBatchID.hints.precision}"
    shortDesc="#{bindings.EnrichmentBatchID.hints.tooltip}"
    id="it3">
    <f:validator binding="#{bindings.EnrichmentBatchID.validator}"/>
    </af:inputText-->
    <af:inputDate value="#{bindings.StartDateTime.inputValue}"
    label="Start Date Time"
    shortDesc="#{bindings.StartDateTime.hints.tooltip}"
    id="id1" inlineStyle="font-weight:bold;"
    binding="#{backing_ProcessRFI.input_startDate}"
    valueChangeListener="#{backing_ProcessRFI.assignFromDateValue}"
    autoSubmit="true"
    required="true" immediate="true">
    <f:validator binding="#{bindings.StartDateTime.validator}"/>
    <af:convertDateTime pattern="#{bindings.StartDateTime.format}" type="both"/>
    </af:inputDate>
    <af:inputDate value="#{bindings.EndDateTime.inputValue}"
    label="End Date Time"
    shortDesc="#{bindings.EndDateTime.hints.tooltip}"
    id="id2" inlineStyle="font-weight:bold;"
    binding="#{backing_ProcessRFI.input_endDate}"
    partialTriggers="id1"
    required="true"
    valueChangeListener="#{backing_ProcessRFI.checkNullStartDateValue}"
    autoSubmit="true" immediate="true">
    <af:validateDateTimeRange minimum="#{backing_ProcessRFI.dtFromDate}"
    hintMinimum="End date should be greater than the Start Date"
    />
    <f:validator binding="#{bindings.EndDateTime.validator}"/>
    <af:convertDateTime pattern="#{bindings.EndDateTime.format}" type="both"/>
    </af:inputDate>
    <af:selectBooleanCheckbox value="#{bindings.ProcessIAFIndicator.inputValue}"
    label="Process IAF"
    required="#{bindings.ProcessIAFIndicator.hints.mandatory}"
    shortDesc="#{bindings.ProcessIAFIndicator.hints.tooltip}"
    id="it2"
    inlineStyle="font-weight:bold;">
    <f:validator binding="#{bindings.ProcessIAFIndicator.validator}"/>
    </af:selectBooleanCheckbox>
    <af:selectBooleanCheckbox value="#{bindings.ProcessSMSIndicator.inputValue}"
    label="Process SMS"
    required="#{bindings.ProcessSMSIndicator.hints.mandatory}"
    shortDesc="#{bindings.ProcessSMSIndicator.hints.tooltip}"
    id="it5"
    inlineStyle="font-weight:bold;">
    <f:validator binding="#{bindings.ProcessSMSIndicator.validator}"/>
    </af:selectBooleanCheckbox>
    <af:selectBooleanCheckbox value="#{bindings.ProcessFullIndicator.inputValue}"
    label="Process Full Indicator"
    required="#{bindings.ProcessFullIndicator.hints.mandatory}"
    shortDesc="#{bindings.ProcessFullIndicator.hints.tooltip}"
    id="it4"
    inlineStyle="font-weight:bold;"
    binding="#{backing_ProcessRFI.processFullIndicator}"
    valueChangeListener="#{backing_ProcessRFI.handleFullIndicator}"
    autoSubmit="true">
    <f:validator binding="#{bindings.ProcessFullIndicator.validator}"/>
    </af:selectBooleanCheckbox>
    <af:panelStretchLayout id="psl1" inlineStyle="height:40px;">
    <f:facet name="center">
    <af:panelGroupLayout layout="horizontal"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
    id="pgl2">
    <af:commandButton actionListener="#{bindings.ProcessRFI.execute}"
    text="Process RFI"
    disabled="#{!bindings.ProcessRFI.enabled}"
    id="cb2"
    attributeChangeListener="#{ProcessRFI.processResult}"/>
    <af:resetButton text="Clear" id="rb1"/>
    <f:facet name="separator">
    <af:spacer width="10" height="10" id="s2"/>
    </f:facet>
    </af:panelGroupLayout>
    </f:facet>
    </af:panelStretchLayout>
    </af:panelFormLayout>

    Hi John,
    My page is not a part of a task flow. The whole app is an Admin app comprising of multiple individual pages navigated using Menu.
    I have tried to run this page individually on my local machine as well as when deployed on the WLS server. The behavior is the same.
    Kindly advice,
    Thanks,
    Ram

  • I have an iPhone 4S I have done the recent update 6.1 and now my App Store is not working when I go into the feature tab I get an error " too many HTTP redirects" how do I fix this ? The other tabs are working and it is working on my iPad also

    I am having a problem getting into the App Store on my iPhone since the recent update, I have a 4s and it appears the feature tab is not working. When I try to go into the feature tab in the App Store I get a message "too many HTTP redirects" ?... Does anyone now hoe to fix this issue, the other tabs are working okay and everything is working on my iPad ?

    Look at iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    iPad: Issues connecting to Wi-Fi networks  http://support.apple.com/kb/ts3304
    iOS: Recommended settings for Wi-Fi routers and access points  http://support.apple.com/kb/HT4199
    Additional things to try.
    Try this first. Turn Off your iPad. Then turn Off (disconnect power cord for 30 seconds or longer) the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi.
    Go to Settings>Wi-Fi and turn Off. Then while at Settings>Wi-Fi, turn back On and chose a Network.
    Change the channel on your wireless router (Auto is best). Instructions at http://macintoshhowto.com/advanced/how-to-get-a-good-range-on-your-wireless-netw ork.html
    Another thing to try - Go into your router security settings and change from WEP to WPA with AES.
    How to Quickly Fix iPad 3 Wi-Fi Reception Problems
    http://osxdaily.com/2012/03/21/fix-new-ipad-3-wi-fi-reception-problems/
    If none of the above suggestions work, look at this link.
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
    Fix iPad Wifi Connection and Signal Issues  http://www.youtube.com/watch?v=uwWtIG5jUxE
    Fix Slow WiFi Issue https://discussions.apple.com/thread/2398063?start=60&tstart=0
    Unable to Connect After iOS Update - saw this solution on another post.
    https://discussions.apple.com/thread/4010130
    Note - When troubleshooting wifi connection problems, don't hold your iPad by hand. There have been a few reports that holding the iPad by hand, seems to attenuate the wifi signal.
    ~~~~~~~~~~~~~~~
    If any of the above solutions work, please post back what solved your problem. It will help others with the same problem.
     Cheers, Tom

  • Alerts not working when formula is in the cell

    I am having a problem where my alerts are not working in the preview mode.  They work fine when I hard code the alert range.  But I need the alert to change under differnt conditions and I am using an IF statement
    the formula is simple
    =IF('TXF Inputs'!D27=3, C34/2, C34)
    output is either 0.375 or 0.375/2 = 0.1875
    if i hardcode the cell with either of these values the alert works, but it does not work with the formula.  The confusing part is that I have other alerts that have IF statements in them and they all work.
    They also work fine in the main screen, ie it shows yellow if my default values =0.1875, but then when I preview or publish they don't work
    bw

    Can u give us the details like which component you are using for alerts.

  • Why does my printer not work when i plug in the internet? (ethernet)

    hey guys,
    i have the Mac connected to a large digital printer via the ethernet connection. works fine, no problems untill i plug in the internet. I get an error message in my software and can't print any jobs, but the internet works fine.
    I have a feeling that its a network problem, but don't want to mess around too much with the settings.
    This is a company internet connection.
    if anyone could advise of the possible network settings, I would be very greatful.
    thanks again.

    Your Mac sends traffic to the interface at the top of the list in
    System Preferences > Network
    When you plug in the second Ethernet, that Interface jumps to the top of the list and all traffic goes there.
    The solution is to cable that Printer to your Router, not to your Mac.
    Alternatively, you could add a small Switch and connect your Mac and the printer to it.
    If you really want to you can use Internet Sharing to add the Ethernet port going to the Printer to the Network connacted to the Internet.

  • Captivate 5.5 project -links are not working when i publish to the IE server

    I was wondering if someone had a solution to my Captivate 5.5 project with external links. 
    Here is my problem:
    I have a page that has an external link that opens another window. 
    For some reason the window will open in preview.  However, when I publish to the IE browser it does not work. 
    Does someone have a solution to this problem?  I saw some verbiage that stated adjusting something swf file.  I don't quite understand were to change this file.  Is it in Captivate?
    Any information you have is greatly appreciated.
    Thank you!
    Kat

    Google for information about Flash Global Security.
    It looks like you need to trust the publish folder location as a trusted location in your Flash Global Security settings.

  • My new ipod nano does not  work when you turn off the computer

    I bought a new iPod but I have a problem when you turn off the computer does not work. Shows that the battery is full and it was lightning. Ipod only works while connected to your computer. What should I do

    Hello pepi95,
    And welcome to Apple Discussions!
    If you just bought the nano, why not bring it back for a replacement or your money back? It's definitely a defective iPod. Not much else for options here. Sorry.
    B-rock

  • Why viber is not working when i am closing the app?

    in my iphone 4 mobile i am facing a problem. when i am closing my apps i am not getting any calls. when i am opening the apps then i am getting calls, sms and miscalls. I am connected with wifi. in this same connection others users are getting calls when they are closing the app. what is my problem? i have uninstalled the app and again i have installed it. but problem remains same. Anyone is not getting me!!!! Please reply as soon as possible.

    Try the stamdard fixes to rule out a software problem:
    - Reset. Nothing will be lost
    Reset iPod touch:  Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Restore from backup
    - Restore to factory defaults/new iPod.

  • WHEN i UPDATED TO 4, THE GOOGLE DROPDOWN DOES NOT WORK WHEN I CLICK ON THE ITEM I WANT TO GO TO LIKE IT DID WITH THE OLD VERSION.

    I INSTALLED 4 AND NOW WHEN I TYPE IN THE GOOGLE SEARCH AND AN ITEM IN THE DROP DOWN IS CHOSEN, IT DOES NOT GO TO THAT LINK. THE FEW LETTERS I HAVE TYPED IS ALL THAT SHOWS UP IN THE BOX AFTER I CLICK THE ITEM IN THE DROP DOWN.

    Can I change back to the older version of Firefox

  • A simple one: Save function does not work when a client is trying to save a form on his desktop i cr

    Hi, i have created a simple form in live cycle designer with just some fields the cleint can enter infomartion into.
    when ever they then open the PDf to fill in the fields, they can never save it, it seems to be the case everytime i make a form in live cycle designer. the documnet has no security settings on, and i cannot find anywhere else to enable/disable saving the documnet.
    Can anyone help?
    thanks.

    Ben,
    You are half correct with your thinking. The problem is two fold. The basic Adobe Reader program will only allow a user to view a form in all reality. Yes you can fill it in and print it, but saving the completed form is not something Reader is allowed to do on its own. The exception to this is having a Reader Extended form. A reader extended form has been given additional rights that allows the basic version of reader to perform additional tasks, that normally require Adobe Acrobat to accomplish. In order to be able to save your completed form you will need to either open the form with Adobe Acrobat, or reader extend the form first if you are going to do the same thing with Reader.

  • Why does my hp deskjet 3050 not work when i plug in the usb?

    I have installed the 10.7 update as well and when i add the printer it says that the software is not yet available.

    Update to the latest drivers:
    http://support.apple.com/kb/DL907

Maybe you are looking for

  • OVM 3.1.1 Repository Being Mapped with Diffferent /dev/mapper/ address

    Hello, I'm running OVM 3.1 on a Dell T420 server with onboard storage. The RAID 5 virtual disk that was housing my repository was inadvertently deleted. I was able to recreate a new VD and the server can now see the original ocsf2 partition that the

  • Need help with Premiere Pro 6 media/file management!

    I've been an Avid editor for 20+ years and understand media management in that world. I've recently learned FCP 7 and understand media management in that world. But for the life of me I cannot wrap my head around how Premiere Pro 6 manages media. I a

  • Safari unexpected quit

    Hi everyone, I downloaded VLC player and a rar reader app called UnrarX tonight for watching a movie, but then, I started to get the "unexpected quit" crash from safari, I deleted the apps I lately installed, and tried to delete the webpageIcons.db f

  • Can Contribute work in Web cluster environment

    Hi I have 2 web servers behind load balancer.  Our websites are identical on these two web servers. We use load balancer to direct http traffic to split the load of internet hits. We have a central server behind these 2 web servers. Our web editors c

  • HT2729 Itunes Progress bar stuck

    Hi everyone, My Itunes progress bar is stucked and doesn't show the progression of the songs. Do you know how to solve it? Thanks!!