When copying a state, symbols get lost (latest CS6 Update)

This is driving me absolutely NUTS. I'm working in Fireworks on a daily basis and I use symbols a lot. But ever since the last update for Fireworks CS6, every time I copy a state, it doesn't copy the symbols as well.
If the symbol is grouped (whether with other elements, or not), the symbol gets copied.
It's been a pain these past days to work around this issue. But when searching the forums, I discovered that nobody else seems to have this problem, so maybe I did something wrong? Can anyone help?

Hi all.
Yesterday, I received a request from Chad Thornton at Airbnb to create a command to fix this issue.
Luckily, the answer was easy to find and it works like a charm.
Download this command https://www.dropbox.com/s/z22ov4vom02w311/Duplicate%20State.jsf and put it somewhere in your 'Commands' folder.
Now, whenever you want to duplicate a state, use the command instead of the States panel menu, and all symbols will be there : )
Enjoy!

Similar Messages

  • HT1386 Switched from ipod to ipod touch. When trying to sync songs get lost. Show in the library and playlist but a message says cannot be found. An exclamation symbol with a circle aroung it shows on the missing songs. How can I sync the new ipod touch?

    Switched from ipod to ipod touch. When trying to sync, songs get lost. Songs show in the library and playlist but get a message that says songs cannot be found. An exclamation symbol with a circle aroung it shows on the missing songs. How can I sync the new ipod touch?

    The ! Next to a song:
    The song can’t be located; it may have been moved or deleted
    To find them try:
    iTunes: Finding lost media and downloads
    You can redownload iTunes purchases by:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • I would like to get the latest software update for my Itouch model MC540LL/A.

    I would like to get the latest software update for my Itouch model MC540LL/A.  The current software is ios 6.1.6 (10B500).  Is there a newer software update? If there is, how can I download it?   Thank you very much.

    It’s running the newest iOS version it can.
    (116797)

  • HT201270 helo, my iiphone is unlock and i upgrade to 5.1 version when the upgrade finish i get this question-An update to the carrier settings for your iPhone is available. Would you like to download it now? is there a resone not to upgrade, will he becom

    helo, my iiphone is unlock and i upgrade to 5.1 version when the upgrade finish i get this question-An update to the carrier settings for your iPhone is available. Would you like to download it now? is there a resone not to upgrade, will he become lock?

    If your phone is factory unlocked, or officially unlocked by your carrier, updating will NOT re-lock the phone.  If it was unlocke by unauthorized methods, any update or restore will re-lock it.

  • Did copy paste between projects get lost in LG 9?

    A thing I often did in LG 8, was copying a bunch of midi regions from one LG project to another.
    It was brilliant, as you just select the regions in one sequence, copy them, go to the other sequence, hit paste and it would ask if I wanted to paste them on track with the same name or something like that, and it would always put the regions on the right tracks in the same track setup.
    Now, in LG 9, when I try doing that, it doesn't ask me anything, and just sticks all the tracks at the bottom of my sequence when I hit paste.
    If I only had 5 tracks that wouldn't be such a big deal, but my template has 600 tracks, and dragging the regions on the right tracks takes way too much time.
    Is this a setting I need to click somewhere, or did this feature get lost in LG 9?
    I know about the import setting, but that takes too much time and in a template with 600 tracks I woulnd't instantly know which tracks I contain regions.
    Thanks

    when I export to DV, it still doesn't look as good as when I go straight from iMovie6 to iDVD?
    Doesn't look as good where? Remember that iMovie display is only a preview. Also QT Player defaults to low-res display of DV clips.
    I am using Expert Settings
    iMovie's expert settings are buggy so use the Full Quality preset instead.
    http://www.sjoki.uta.fi/~shmhav/iMovieHD_6_bugs.html#expertsettings

  • How come my iPod Touch will not let me get the latest software update and will only let me have the 3.1 update?

    My iPod will only let me get the 3.1 update and I don't know how to get a later update.

    What happens when you try?
    Error message?
    Do you have the original ipod touch?  If so, then  3.1 is the latest software.

  • Can't get the latest itunes update to download on my windows7 laptop. It gives runtime error window then error 7, windows error 114, any ideas

    First thing to say is I'm new at trying to slove my own computer issues, so I may be a little slow. The latest iTunes update will not install on my Windows 7 labtop,   I keep getting a runtime error window with Error 7 and Windows eror 1114. I have run a fix and reload the file with no resuts and can't seem to get it do download manually either, any ideas for this computer challanged person?

    See... Unable to install or open > http://support.apple.com/kb/TS5376
    Also See this User Tip by turingtest2
    https://discussions.apple.com/docs/DOC-6562

  • MBP freezes when it goes to sleep - started with latest OS Update (I think)

    Beginning on Friday (I believe it was right after I installed the latest OS Update) my MBP has been locking up when I close the lid. I can tell it's locked up because the screen is still light.
    When I open the lid again, the clock is stopped, there is no mouse, and everything is frozen solid. My only solution is to hold down the power button for a reset. I have done this five times since Friday.
    What might be happening? And, more importantly, what should I do to try to fix the problem?
    Thanks.

    http://discussions.apple.com/thread.jspa?messageID=9467312&#9467312

  • NullPointerException when connection to my WebServer get lost!

    I have write a simple web server which implements HTTP/1.1 based on David Brown's A Simple, Multithreaded Web Server: http://developer.java.sun.com/developer/technicalArticles/Networking/Webserver/
    Since the web server implement HTTP/1.1, the connection will be a persistent connection. When the server send the response to the client, it will wait for a while(a timeout period) to close the socket. socket.setSoTimeout(WebServer.timeout) will setup the timeout period and throw a exception when times out. I use:
    try{
    }catch(InterruptedIOException e){           
    inFromClient.close();
    outToClient.close();
    s.close();
    to catch the read time out and then close
    BufferedReader(inFromClient), DataOutputStream (outToClient) and Socket(socket).
    So now run the webserver, when there is no more request from the client, the server will idle for a while until the timeout happens. However at this right moment a NullPointerException was throwed. And it keeps pumping out this exception. Could anyone help me? Thanks ahead.

    Manuel,
    Thanks so much for your information. The runtime message I got is:
    java.lang.NullPointerException:
    At java.lang.Throwable.<init>(compiled code)
    At java.lang.exception.<init>(compiled code)
    At java.lang.RuntimeException.<init>(compiled code)
    At java.lang.NullPointerException.<init>(compiled code)
    At java.io.FileInputStream.<init>(compiled code)
    At java.net.SocketInputStream.<init>(compiled code)
    At java.net.PlainSocketImpl.getInputStream.<init>(compiled code)
    At java.net.socket.getInputStream.<init>(compiled code)
    At worker.handleClient.(compiled code)
    At worker.run.(compiled code)
    At java.lang.thread.run.(compiled code)
    You might be right when talking about that not initialised some variables correctly. Could you help me more about this problem.
    My code is quite like the URL(A simple,Multithread WebServer) I gave in my question message. Worker is a class implements HttpConstants, Runnable(multithread). worker calls handleClient() to parse client request and give corresponding response. Here is my modified handleClient(), followed will be my whole file code(WebServer.java):
    void handleClient() throws IOException, NullPointerException {
    String requestMessageLine;
    StringTokenizer tokenizedLine;
    BufferedReader inFromClient = new BufferedReader (
    new InputStreamReader ( s.getInputStream() ));
    DataOutputStream outToClient = new DataOutputStream(
    s.getOutputStream());
    String connection=null;
    boolean connExist=false;
    /* we will only block in read for this many milliseconds before we fail with
    * java.io.SocketTimeoutException, at which point we will abandon the connection.
    * This is how we implement persistent connection as specified in http/1.1, where
    * the server will block for a while(timeout) when reading from a client
    * connection. Different from http/1.0, where the server close the connection after
    * sending each object.
    s.setSoTimeout(WebServer.timeout);
    try{
    /* Handle the request line (first line) of the client request message */
    requestMessageLine = inFromClient.readLine();
    p(requestMessageLine);
    tokenizedLine = new StringTokenizer (requestMessageLine);
    String requestMethod = tokenizedLine.nextToken();
    if (requestMethod.equals("GET")) {
              isGet = true; }
    else if (requestMethod.equals("HEAD")) {
              isGet = false; }
    else {
         /* We do not support this method */     
    outToClient.writeBytes("HTTP/1.1 " + HTTP_BAD_METHOD + " unsupported method type: ");
    outToClient.writeBytes (requestMethod);
    outToClient.writeBytes (CRLF);
    outToClient.flush();
    return;
    String fileName=tokenizedLine.nextToken();
    if (fileName.startsWith("/") == true) {
    fileName = fileName.substring(1);
    File targ = new File(WebServer.root, fileName);
    if (targ.isDirectory()) {
    File ind = new File(targ, "index.html");
    if (ind.exists()) {
    targ = ind;
    String requestHeaderLine=null;
    String ct=(String)map.get(fileName.substring(fileName.lastIndexOf(".")));
    String tokenString;
    String firstToken;
    boolean acceptable=true;
    boolean acceptExist=false;
    /* Handle the rest lines (header lines) of the client request message */     
    while((requestHeaderLine=inFromClient.readLine()).length()!=0) {
              p(requestHeaderLine);
              tokenizedLine = new StringTokenizer(requestHeaderLine);
         firstToken = tokenizedLine.nextToken();
    /* Find the ACCEPT headerline from the client, if exists, handle it. */     
              if (firstToken.indexOf("Accept:")>=0) {
              acceptExist=true;
              String type= requestHeaderLine.substring(8);
    /* If the client won't accept any type, then try to find out if
    * the request entity is a acceptable type. */
              if(type.indexOf("*/*")<0) {                      
                   if(type.indexOf(ct)<0) {
                   acceptable=false; }
    /* Find value of the CONNECTION headerline from the client. */
              if (firstToken.indexOf("Connection")>=0) {
              connExist=true;
              connection=tokenizedLine.nextToken();
    if (isGet) {
         if(acceptable==true||acceptExist==false){
              /* If acceptable or there is no Accept header, send the file. */          
                   boolean OK = printHeaders(targ, outToClient);
                   if (OK) { 
                   sendFile(targ, outToClient); }
    else {  send404(targ, outToClient);     }
              /* if isGet is false, then handle the HEAD method */
              else if(acceptable==false){
              /* If unacceptable, send 406 client error information. */
              outToClient.writeBytes("HTTP/1.1 " + HTTP_NOT_ACCEPTABLE +
    " unacceptable media-type: ");
    outToClient.writeBytes ("*."+fileName.substring(fileName.lastIndexOf(".")+1));
    outToClient.writeBytes (CRLF);
    outToClient.flush();
    return;
    } else {  boolean OK = printHeaders(targ, outToClient);  }
    if(connExist==true){
    if(connection.equals("close")==true) {
    s.close();
    return;
    }catch(InterruptedIOException e){
    // inFromClient.close();
    //outToClient.close();
    s.close();
    }catch(NullPointerException e){         
         inFromClient.close();
    outToClient.close();
    s.close();
    ******** WebServer.java
    /* A multi-threaded HTTP/1.1 web server */
    import java.io.*;
    import java.net.*;
    import java.util.*;
    class WebServer implements HttpConstants {
    /* static class data/methods */
    /* print to stdout */
    protected static void p(String s) {
    System.out.println(s);
    static DataOutputStream log = null;
    /* print to the log file */
    protected static void log(String s) throws IOException{
    synchronized (log) {
    log.writeBytes(s+"\r\n");
    log.flush();
    /* our server's configuration information
    * is stored in these properties
    protected static Properties props = new Properties();
    /* Where worker threads stand idle */
    static Vector threads = new Vector();
    /* the web server's virtual root */
    static File root;
    /* timeout on client connections */
    static int timeout = 0;
    /* max # worker threads */
    static int workers = 5;
    /* load www-server.properties from java.home */
    static void loadProps() throws IOException { 
    File f = new File(System.getProperty("java.home")+File.separator+
    "lib"+File.separator+"www-server.properties");
    if (f.exists()) {
    InputStream is =new BufferedInputStream(new FileInputStream(f) );
    props.load(is);
    is.close();
    String r = props.getProperty("root");
    p("Root:"+r);
    if (r != null) {
    root = new File(r);
    if (!root.exists()) {
    throw new Error(root + " doesn't exist as server root");
    r = props.getProperty("timeout");
    if (r != null) {
    timeout = Integer.parseInt(r);
    r = props.getProperty("workers");
    if (r != null) {
    workers = Integer.parseInt(r);
    r = props.getProperty("log");
    /* if no properties were specified, choose defaults */
    if (root == null) {
    root = new File(System.getProperty("user.dir"));
    if (timeout < 20000) {
    timeout = 20000;
    if (workers > 25) {
    workers = 5;
    static void printProps() {
    p("root="+root);
    p("timeout="+timeout);
    p("workers="+workers);
    public static void main(
    String[] a) throws Exception {
    int port = 7700;
    if (a.length > 0) {
    port = Integer.parseInt(a[0]);
    loadProps();
    printProps();
    /* start worker threads */
    for (int i = 0; i < workers; ++i) {
    Worker w = new Worker();
    (new Thread(w, "worker #"+i)).start();
    threads.addElement(w);
    ServerSocket ss = new ServerSocket(port);
    while (true) {
    Socket s = ss.accept();
    Worker w = null;
    synchronized (threads) {
    if (threads.isEmpty()) {
    Worker ws = new Worker();
    ws.setSocket(s);
    (new Thread(ws, "additional worker")).start();
    } else {
    w = (Worker) threads.elementAt(0);
    threads.removeElementAt(0);
    w.setSocket(s);
    class Worker extends WebServer implements HttpConstants, Runnable {
    final static int BUF_SIZE = 2048;
    static final String CRLF="\r\n";
    boolean isGet;
    /* buffer to use for requests */
    byte[] buf;
    /* Socket to client we're handling */
    private Socket s;
    Worker() {
    buf = new byte[2048];
    s = null;
    synchronized void setSocket(Socket s) {
    this.s = s;
    notify();
    public synchronized void run() {
    while(true) {
    if (s == null) {
    /* nothing to do */
    try {          
    wait();
    } catch (InterruptedException e) {
    /* should not happen */
    continue;
    // while(true) {
    try {
    handleClient();
    } catch (Exception e) {
    e.printStackTrace();
    void handleClient() throws IOException, NullPointerException {
    String requestMessageLine;
    StringTokenizer tokenizedLine;
    BufferedReader inFromClient = new BufferedReader (
    new InputStreamReader ( s.getInputStream() ));
    DataOutputStream outToClient = new DataOutputStream(
    s.getOutputStream());
    String connection=null;
    boolean connExist=false;
    /* we will only block in read for this many milliseconds before we fail with
    * java.io.SocketTimeoutException, at which point we will abandon the connection.
    * This is how we implement persistent connection as specified in http/1.1, where
    * the server will block for a while(timeout) when reading from a client
    * connection. Different from http/1.0, where the server close the connection after
    * sending each object.
    s.setSoTimeout(WebServer.timeout);
    try{
    /* Handle the request line (first line) of the client request message */
    requestMessageLine = inFromClient.readLine();
    p(requestMessageLine);
    tokenizedLine = new StringTokenizer (requestMessageLine);
    String requestMethod = tokenizedLine.nextToken();
    if (requestMethod.equals("GET")) {
              isGet = true; }
    else if (requestMethod.equals("HEAD")) {
              isGet = false; }
    else {
         /* We do not support this method */     
    outToClient.writeBytes("HTTP/1.1 " + HTTP_BAD_METHOD + " unsupported method type: ");
    outToClient.writeBytes (requestMethod);
    outToClient.writeBytes (CRLF);
    outToClient.flush();
    return;
    String fileName=tokenizedLine.nextToken();
    if (fileName.startsWith("/") == true) {
    fileName = fileName.substring(1);
    File targ = new File(WebServer.root, fileName);
    if (targ.isDirectory()) {
    File ind = new File(targ, "index.html");
    if (ind.exists()) {
    targ = ind;
    String requestHeaderLine=null;
    String ct=(String)map.get(fileName.substring(fileName.lastIndexOf(".")));
    String tokenString;
    String firstToken;
    boolean acceptable=true;
    boolean acceptExist=false;
    /* Handle the rest lines (header lines) of the client request message */     
    while((requestHeaderLine=inFromClient.readLine()).length()!=0) {
              p(requestHeaderLine);
              tokenizedLine = new StringTokenizer(requestHeaderLine);
         firstToken = tokenizedLine.nextToken();
    /* Find the ACCEPT headerline from the client, if exists, handle it. */     
              if (firstToken.indexOf("Accept:")>=0) {
              acceptExist=true;
              String type= requestHeaderLine.substring(8);
    /* If the client won't accept any type, then try to find out if
    * the request entity is a acceptable type. */
              if(type.indexOf("*/*")<0) {                      
                   if(type.indexOf(ct)<0) {
                   acceptable=false; }
    /* Find value of the CONNECTION headerline from the client. */
              if (firstToken.indexOf("Connection")>=0) {
              connExist=true;
              connection=tokenizedLine.nextToken();
    if (isGet) {
         if(acceptable==true||acceptExist==false){
              /* If acceptable or there is no Accept header, send the file. */          
                   boolean OK = printHeaders(targ, outToClient);
                   if (OK) { 
                   sendFile(targ, outToClient); }
    else {  send404(targ, outToClient);     }
              /* if isGet is false, then handle the HEAD method */
              else if(acceptable==false){
              /* If unacceptable, send 406 client error information. */
              outToClient.writeBytes("HTTP/1.1 " + HTTP_NOT_ACCEPTABLE +
    " unacceptable media-type: ");
    outToClient.writeBytes ("*."+fileName.substring(fileName.lastIndexOf(".")+1));
    outToClient.writeBytes (CRLF);
    outToClient.flush();
    return;
    } else {  boolean OK = printHeaders(targ, outToClient);  }
    if(connExist==true){
    if(connection.equals("close")==true) {
    s.close();
    return;
    }catch(InterruptedIOException e){
    // inFromClient.close();
    //outToClient.close();
    s.close();
    }catch(NullPointerException e){         
         inFromClient.close();
    outToClient.close();
    s.close();
    /* Server Response Header */
    boolean printHeaders(File targ, DataOutputStream outToClient) throws IOException {
    boolean ret = false;
    int rCode = 0;
    /* Implement section 3.1 HTTP version */
    if (!targ.exists()) {
    rCode = HTTP_NOT_FOUND;
    outToClient.writeBytes("HTTP/1.1 " + HTTP_NOT_FOUND + " not found");
    outToClient.writeBytes (CRLF);
    ret = false;
    } else {
    rCode = HTTP_OK;
    outToClient.writeBytes ("HTTP/1.1 " + HTTP_OK+" OK");
    outToClient.writeBytes (CRLF);
    ret = true;
    String doingMethod=null;
    if (isGet==true) { doingMethod=" GET "; }
    else { doingMethod=" HEAD "; }
    if (log == null) {
    p("logging to stdout");
    p("From " s.getInetAddress().getHostAddress()doingMethod +
    targ.getAbsolutePath()+"-->"+rCode); }
         else {
         log("From " s.getInetAddress().getHostAddress()doingMethod +
    targ.getAbsolutePath()+"-->"+rCode); }
    outToClient.writeBytes ("Server:Multithreaded WebServer(HTTP/1.1, Port 5278)");
    outToClient.writeBytes (CRLF);
    /* Implement section 3.3-- Date/Time format: asctime-date */
    outToClient.writeBytes ("Date: " + ((new Date()).toString()).substring(0, 20)+
    ((new Date()).toString()).substring(24, 28));
    outToClient.writeBytes(CRLF);
    if (ret) {
    if (!targ.isDirectory()) {
    outToClient.writeBytes ("Content-length: "+targ.length());
    outToClient.writeBytes (CRLF);
    outToClient.writeBytes ("Last Modified: " + (new Date(targ.lastModified())));
    outToClient.writeBytes (CRLF);
    String name = targ.getName();
    int ind = name.lastIndexOf('.');
    String ct = null;
    if (ind > 0) {
    ct = (String) map.get(name.substring(ind));
    if (ct == null) {
    ct = "unknown/unknown";
    outToClient.writeBytes ("Content-type: " + ct);
    outToClient.writeBytes (CRLF);
    } else {
    outToClient.writeBytes ("Content-type: text/html");
    outToClient.writeBytes (CRLF);
    outToClient.writeBytes (CRLF);
    return ret;
    void send404(File targ, DataOutputStream outToClient) throws IOException {
    outToClient.writeBytes (CRLF);
    outToClient.writeBytes (CRLF);
    outToClient.writeBytes ("Not Found\n\n"+"The requested resource was not found.\n");
    void sendFile(File targ, DataOutputStream outToClient) throws IOException {
    InputStream inFile = null;
    outToClient.writeBytes (CRLF);
    if (targ.isDirectory()) {
    /* here, we take advantage of the fact that FileURLConnection will
    * parse a directory listing into HTML for us.
    File ind = new File(targ, "index.html");
    if (ind.exists()) {
    targ = ind;
    inFile = new FileInputStream(ind);
    } else {
    URL u = new URL("file", "", targ.getAbsolutePath());
    inFile = u.openStream();
    } else {
    inFile = new FileInputStream(targ.getAbsolutePath());
    int numofBytes = (int) targ.length();
    byte[] b=new byte[numofBytes];
    try {
    int n;
    while ((n = inFile.read(b)) > 0) {
    outToClient.write(b, 0, n);
    } finally {
    inFile.close();
    /* mapping of file extensions to
    content-types /
    static java.util.Hashtable map =
    new java.util.Hashtable();
    static {
    fillMap();
    static void setSuffix(String k, String v) {
    map.put(k, v);
    static void fillMap() {
    setSuffix("", "content/unknown");
    setSuffix(".uu", "application/octet-stream");
    setSuffix(".exe", "application/octet-stream");
    setSuffix(".ps", "application/postscript");
    setSuffix(".zip", "application/zip");
    setSuffix(".sh", "application/x-shar");
    setSuffix(".tar", "application/x-tar");
    setSuffix(".snd", "audio/basic");
    setSuffix(".au", "audio/basic");
    setSuffix(".wav", "audio/x-wav");
    setSuffix(".gif", "image/gif");
    setSuffix(".jpg", "image/jpeg");
    setSuffix(".jpeg", "image/jpeg");
    setSuffix(".htm", "text/html");
    setSuffix(".html", "text/html");
    setSuffix(".text", "text/plain");
    setSuffix(".c", "text/plain");
    setSuffix(".cc", "text/plain");
    setSuffix(".c++", "text/plain");
    setSuffix(".h", "text/plain");
    setSuffix(".pl", "text/plain");
    setSuffix(".txt", "text/plain");
    setSuffix(".java", "text/plain");
    interface HttpConstants {
    /** 2XX: generally "OK" */
    public static final int HTTP_OK = 200;
    public static final int HTTP_CREATED = 201;
    public static final int HTTP_ACCEPTED = 202;
    public static final int HTTP_NOT_AUTHORITATIVE = 203;
    public static final int HTTP_NO_CONTENT = 204;
    public static final int HTTP_RESET = 205;
    public static final int HTTP_PARTIAL = 206;
    /** 3XX: relocation/redirect */
    public static final int HTTP_MULT_CHOICE = 300;
    public static final int HTTP_MOVED_PERM = 301;
    public static final int HTTP_MOVED_TEMP = 302;
    public static final int HTTP_SEE_OTHER = 303;
    public static final int HTTP_NOT_MODIFIED = 304;
    public static final int HTTP_USE_PROXY = 305;
    /** 4XX: client error */
    public static final int HTTP_BAD_REQUEST = 400;
    public static final int HTTP_UNAUTHORIZED = 401;
    public static final int HTTP_PAYMENT_REQUIRED = 402;
    public static final int HTTP_FORBIDDEN = 403;
    public static final int HTTP_NOT_FOUND = 404;
    public static final int HTTP_BAD_METHOD = 405;
    public static final int HTTP_NOT_ACCEPTABLE = 406;
    public static final int HTTP_PROXY_AUTH = 407;
    public static final int HTTP_CLIENT_TIMEOUT = 408;
    public static final int HTTP_CONFLICT = 409;
    public static final int HTTP_GONE = 410;
    public static final int HTTP_LENGTH_REQUIRED = 411;
    public static final int HTTP_PRECON_FAILED = 412;
    public static final int HTTP_ENTITY_TOO_LARGE = 413;
    public static final int HTTP_REQ_TOO_LONG = 414;
    public static final int HTTP_UNSUPPORTED_TYPE = 415;
    /** 5XX: server error */
    public static final int HTTP_SERVER_ERROR = 500;
    public static final int HTTP_INTERNAL_ERROR = 501;
    public static final int HTTP_BAD_GATEWAY = 502;
    public static final int HTTP_UNAVAILABLE = 503;
    public static final int HTTP_GATEWAY_TIMEOUT = 504;
    public static final int HTTP_VERSION = 505;

  • Go To Section: when clicking link current page gets lost

    External links - for those links on the home page that point to other web sites like repository documnets etc, is it possible to have the web page display in a separate window and not interrupt current CRM page ?As of now when I click external link new window opens up but CRM blanks out with message: Launch Transaction is starting in new window !

    Hi Emir,
    Please, find the "Lanch Transaction ID" for your specific link on the homepage, and uncheck "Stateful".
    This option is starting your webpage/transaction in the new window. If you uncheck it, the webpage will be launched within WEB UI window.
    Launch transaction CRMC_IC_ACTIONPROF and find the "Launch Trans. ID" for your link and maintain the "Stateful" option.
    Let me know if it helps.
    Regards,
    Vadim.

  • When I open firefox I get an error message "update could not be installed check for duplcates"

    Error message: The update could not be installed. Please make sure there are no other copies of Firefox running on your computer, and then restart Firefox and try again.
    I have uninstalled all versions of Firefox. Then went to the Internet through Explorer and downloaded from scratch. A few days later I started getting the message again.

    If there are problems with updating then best is to download the full version and uninstall the currently installed version and delete the Firefox program folder to remove any leftover files.
    Download a fresh Firefox copy and save the file to the desktop.
    *Firefox 10.0.x: http://www.mozilla.org/en-US/firefox/all.html
    Uninstall your current Firefox version, if possible.
    *Do NOT remove personal data when you uninstall the current version or you lose your bookmarks and other data because all profile folders will be removed.
    Remove the Firefox program folder before installing that newly downloaded copy of the Firefox installer.
    *It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    *http://kb.mozillazine.org/Uninstalling_Firefox
    Your bookmarks and other profile data are stored elsewhere in the Firefox Profile Folder and won't be affected by a reinstall, but make sure that you do not select to remove personal data if you uninstall Firefox.
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    *http://kb.mozillazine.org/Profile_backup
    *http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Clean_reinstall

  • HT1923 I can't get the latest itunes update to work

    I'm trying to copy any remaining files from my iPhone 3gs on to itunes ahead of upgrading to an iphone 4. I also use an ipod classic 120 gb on the same itunes account.
    Itunes asked me to update to the latest version (10.6.3.25) but the Mobile Device Support won't update its stuck at version 5.1.1.4 and I can't uninstall it either. Even after going through all the steps to manually remove it, it hasn't uninstalled.
    What do I do next?

    Let's try a standalone Apple Mobile Device Support install. It still might not install, but fingers crossed any error messages will give us a better idea of the underlying cause of why it's not installing under normal conditions.
    Download and save a copy of the iTunesSetup.exe (or iTunes64setup.exe) installer file to your hard drive:
    http://www.apple.com/itunes/download/
    Download and install the free trial version of WinRAR:
    http://www.rarlab.com/
    Right-click the iTunesSetup.exe (or iTunes64setup.exe), and select "Extract to iTunesSetup" (or "Extract to iTunes64Setup"). WinRAR will expand the contents of the file into a folder called "iTunesSetup" (or "iTunes64Setup").
    Go into the folder and doubleclick the AppleMobileDeviceSupport.msi (or AppleMobileDeviceSupport64.msi) to do a standalone AMDS install.
    (If it offers you the choice to remove or repair, choose "Remove", and if the uninstall goes through successfully, see if you can reinstall by doubleclicking the AppleMobileDeviceSupport.msi again.)
    Does it install (or uninstall and then reinstall) properly for you? If so, can you get a normal iTunes install to go through properly now?
    If instead you get an error message during the install (or uninstall), let us know what it says. (Precise text, please.)

  • How do I get the latest ios update on my iPod touch 2nd generation?

    My iPod touch 2nd generation won't update past ios 4.2.1.  I have tried many different times, but everytime I try, a message pops up saying that ios 4.2.1 is the highest operating system when I know that ios 6 has just come out.  This is frustrating because since the operating system is still ios 4, it is very slow and crashes frequently.  Since it is so slow, I have begun to use it less and less for certain things because it is so slow.

    "My iPod touch 2nd generation won't update past ios 4.2.1. "
    That is absultely correct.
    " I have tried many different times, but everytime I try, a message pops up saying that ios 4.2.1 is the highest operating system"
    That is also correct.  Ios 4.2.1 is the latest available software for the ipod touch 2nd gen

  • Well when are we going to get the 8.1 update?

    Are we going to get the update or do I switch to T-Moble?

        We definitely don't want to see you consider a move to a different service, plopitola. We are already hard at work with Nokia and Microsoft to ensure our Windows Phone users get great updates, but I don't have specific detail on the next release for your phone. Any new information about new software will be available at http://vz.to/1z29BKF when it's announced. Please let us know if there's something we can help with in the meantime.
    JenniferH_VZW
    Follow us on Twitter www.twitter.com/vzwsupport

  • When is Z10 STL100-1 getting the 10.1 update??!!

    Its really frustrating how all the other models got the update except for stl100-1

    Do you mean this? Please tell me specifically which step?
    This requires you have a a Windows PC computer.
    Disconnect your BlackBerry10 device from the PC.
    On the PC, turn off your BlackBerry Link and turn off the BlackBerry Desktop Software.
    Open your Internet Explorer (Firefox may also work) and navigate to www.BlackBerry.com/updates, Down the webpage , select the "Check for Updates" link.
    Connect your BlackBerry10 device with which you're having problems. 
    On the BlackBerry10 device , press and hold the top edge power button for 10 seconds until it is complete off, and then turn on by pressingthe the power button again.
    You will see a prompt appear and the BlackBerry smartphone will appear in a dropdown list just after the LED turns red. You should see "USB: UNKNOWN or USB: BlackBerry (PIN)
    When you see that prompt, as soon as possible, click on the OK Button.
    After these previous steps have been completed, there will be displayed a message: "Checking for BlackBerry Device Software updates. The BlackBerry 10 smartphone will now power itself off after 120 seconds."
    After that period, the BlackBerry10's LED is supposed to be lit green.
    Wait until after you see the LED turn green. Then, there will appear a prompt to install BlackBerry Device Software.
    Follow the remaining prompts to complete the install of the operating system.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

Maybe you are looking for

  • Good iphone car mount that works with case?

    I need a car mount for my iPhone so that I can use the phone's GPS app. I've looked around and so far I can only find mounts that work for iPhones without any case. I would rather not have to remove the case everytime I got in my car, so are there an

  • Guarantees made - Contingent Liabilities

    Hi All, Payment guarantees made created as special gl indicator, this entry should not have any financial impact. It's just a guarantee given (a contingent liability). Therefore, by booking this as a special GL transaction, will the entry reflect in

  • Finding Attachments

    There are times in my Mail where I create a new file for sending out as an attachment and I am unable to find the file right away. It seems as if it takes awhile for the mail have the file available. Any ideas?

  • Jdbc 9.2 work with RAC database

    Dear Sirs, I notice that jdbc 9.2 support the use of service name in the connection string, i.e : host:port_no:service_name, prior to 9.2, sid must be used to make the connection. Question 1. After using jdbc 9.2 with service name, can it be benefit

  • Forcing USB 3.0 port to act like USB 2.0 port?

    Hello all! Firstly I would like to say that I am aware that USB 3.0 is backwards compatible, but that does not answer my question. Long story short, I am attempting to use a logitech g27 controller through parallels, on windows 7, and it is giving me