Open a python script containing bundle... problems!

I'm not sure how to extract the bundle from this python script. I won't go into much detail, but you can look at this example project I found that can replace InstallerPluginSample with python to create a bundle file. Your help will be much appreciated
http://pyobjc.sourceforge.net/examples/pyobjc-framework-InstallerPlugins/Install erPluginSample/index.html

this is the script I got closest with - I know its something to do with breaking those two commands up but i just dont know how to do it
on run {input, parameters}
          tell application "Terminal"
  activate
                    if (the (count of the window) = 0) or ¬
                              (the busy of window 1 = true) then
                              tell application "System Events"
  keystroke "n" using command down
                              end tell
                    end if
                    do script "cd /Users/behole/Desktop/FlickrUpload/" & "python uploadr.py -d" in window 1
          end tell
          return input
end run
this is the error I get in terminal after I run it
Last login: Mon Jul 23 15:37:17 on ttys000
be-holes-MacBook-Pro:~ behole$ cd /Users/behole/Desktop/FlickrUpload/python uploadr.py -d
-bash: cd: /Users/behole/Desktop/FlickrUpload/python: No such file or directory
be-holes-MacBook-Pro:~ behole$

Similar Messages

  • Running python script with system arguments from applescript

    Hi,
    I am trying to run a python code from within applescript. A string should be passed as an argument to the python script, i.e. from the terminal, I would do the following
    cd /Users/thatsme/Library/Scripts/myfolder
    python my_python_file.py abcdefg
    There are two ways I figure I could do this in applescript. "abcdefg" are contained in the variable strNote
    a) directly:
    do shell script "cd /Users/thatsme/Library/Scripts/myfolder; python my_python_file.py " & strNote
    b) calling Terminal
    tell application "Terminal"
      activate
              do script "cd /Users/claushaslauer/Library/Scripts/OO_latex; python my_python_file.py " & strNote
    end tell
    I would prefer option a) as I don't really want to have Terminal windows popping up. The strange thing is, that I see in the applescript results window the result of the print statements in the python script, but no output is generated (the python script contains a few os.system() commands.
    Option b) does what it is supposed to be doing, however, applescript does not wait until the script is finished running.
    Why does option a) nor work, and what do I need to change to make it work?

    Thank you guys for your help, this is really weird.
    Here is my full applescript
    set strNoteQ to "1+1=2"
    (* for whatever reason, this does not work *)
    do shell script "cd /Users/claushaslauer/Library/Scripts/OO_latex; python create_latex_pdf.py " & strNoteQ
    Below is my python skript.
    When I call it as
         python create_latex_pdf.py 1+1=2
    it creates a wonderful pdf.
    With the applescript above, it prints the print statements, it also generates the latex file temp.tex -- correctly, so I assume the string in this example is ok.
    However, it does not execute the latex related commands (the three os.system calls)
    Is it not a good idea / not possible to execute os.system in a python script that is called from applescript? <sorry if I had brought all the attention to the string issue>
    here is the python script:
    #!/usr/bin/env python
    # -*- coding: utf-8 -*-
    import sys
    import os
    import datetime
    import time
    def main():
        str_latex_note = sys.argv[1]
        print "%s" %  str_latex_note
        preamble = """\documentclass{article}
    \usepackage{amsmath,amssymb}
    \pagestyle{empty}
    \\begin{document}
    {\huge
    %s
    \end{document}"""% (str_latex_note)
        ## write latex file
        cur_path = r'/Users/mypath/Library/Scripts/OO_latex'
        cur_file = "temp.tex"
        fobj = open(os.path.join(cur_path, cur_file), 'w')
        fobj.writelines(preamble)
        fobj.close()
        ## process latex file
        print cur_path
        os.chdir(cur_path)
        cmd = 'latex temp.tex'
        print cmd
        print "running latex"
        os.system(cmd)
        cmd2 = 'dvips -E -f -X 1200 -Y 1200 temp.dvi > temp.ps'
        print "running dvips"
        os.system(cmd2)
        cmd3 = 'epstopdf temp.ps'
        print "running epstopdf"
        os.system(cmd3)
        print "done!"
    if __name__ == '__main__':
        main()

  • How can I use automator to open terminal change directory run a python script?

    Hi all,
    I dont really ever use automator - which may be my big problem - and I am trying to make an apllication that seems fairly simple in theroy. I want something that will lunch terminal, cd to the place where my python script lives and then run it. I have tried a number of suggested ways and can get the terminal to open and the directory to change but cant figure out how to run the script. This is my workflow if i did it manually each time
    - open terminal
    - type cd "the place where my file lives"
    - type python uploadr.py -d
    I can get terminal to open then cd to the right place but cant get the "python uploadr.py -d" to run without an error.
    any help would be very appricated
    thanks!!!
    J

    this is the script I got closest with - I know its something to do with breaking those two commands up but i just dont know how to do it
    on run {input, parameters}
              tell application "Terminal"
      activate
                        if (the (count of the window) = 0) or ¬
                                  (the busy of window 1 = true) then
                                  tell application "System Events"
      keystroke "n" using command down
                                  end tell
                        end if
                        do script "cd /Users/behole/Desktop/FlickrUpload/" & "python uploadr.py -d" in window 1
              end tell
              return input
    end run
    this is the error I get in terminal after I run it
    Last login: Mon Jul 23 15:37:17 on ttys000
    be-holes-MacBook-Pro:~ behole$ cd /Users/behole/Desktop/FlickrUpload/python uploadr.py -d
    -bash: cd: /Users/behole/Desktop/FlickrUpload/python: No such file or directory
    be-holes-MacBook-Pro:~ behole$

  • Python script won't open

    I have finally upgraded to Lion and I am slowly finding out small things that are making me go crazy.
    Before on Snow Leopard, I could just double click a python script and it would open up and do it's thing.
    Now, it won't even open. When you go into the info panel I can't find the Python Launcher option. It only
    gives me other apps such as Sublime Text, Text Wranger etc. How do I change this back to how it was
    behaving in snow leapard, without going through Terminal.
    Does anyone know why my numbers pad on the keyboard doesn't work anymore?

    nevermind

  • Dhcpcd hook problem: start python script within hook

    Dear fellow Arch fans,
    I'm encountering a rather annoying problem:
    When I lose my internet connection my pidgin client doesn't get 'informed' about this and I won't receive IMs for an unspecified amount of time. I thought that I could work around this by myself, therefore I wrote two scripts in Python which connect/disconnect all active Pidgin-accounts using DBus. Both of them work fine. I also wrote a dhcpcd hook which should "listen" for a "NOCARRIER" and a "BOUND" reason which for itself also works fine (puts some output in a logfile).
    The problem now is to invoke the python scripts from within the hook. My hook looks as follows:
    lf='/var/log/myhook.log'
    case $reason in
    NOCARRIER)
    echo "nocarrier branch" >> $lf
    sudo -u os python2 /usr/lib/dhcpcd/dhcpcd-hooks/\
    scripts/pidgin_dbus_discon.py >> $lf
    BOUND)
    sudo -u os python2 /usr/lib/dhcpcd/dhcpcd-hooks/
    scripts/pidgin_dbus_con.py >> $lf
    echo "bound branch" >> $lf
    echo $reason >> $lf
    esac
    A sample output from the logfile /var/log/myhook.log after two cable pulls looks like
    nocarrier branch
    CARRIER
    bound branch
    nocarrier
    CARRIER
    bound
    But even on unsuccessful invocation the pidgin_dbus_con.py-script should at least print
    con-script started
    con-script finished
    Does anyone have a clue what the problem might be here?
    I would appreciate any help!
    os
    Last edited by os (2010-12-29 13:47:15)

    If I enable dhcpcd like this: "systemctl enable dhcpcd", i.e. w/o using an interface name, it kind of works:
    May 16 19:42:57 epbyminw1076 dhcpcd[315]: eno1: waiting for carrier
    May 16 19:43:01 epbyminw1076 dhcpcd[315]: eno1: carrier acquired
    May 16 19:43:01 epbyminw1076 dhcpcd[315]: DUID 00:01:00:01:19:92:10:5e:6c:3b:e5:33:0a:0a
    May 16 19:43:01 epbyminw1076 dhcpcd[315]: eno1: IAID e5:33:0a:0a
    May 16 19:43:01 epbyminw1076 dhcpcd[315]: eno1: soliciting a DHCP lease
    May 16 19:48:18 epbyminw1076 dhcpcd[315]: eno1: offered 10.6.44.58 from 10.6.0.3
    May 16 19:48:18 epbyminw1076 dhcpcd[315]: eno1: ignoring offer of 10.6.44.58 from 10.6.0.6
    May 16 19:48:22 epbyminw1076 dhcpcd[315]: eno1: leased 10.6.44.58 for 259200 seconds
    May 16 19:48:22 epbyminw1076 dhcpcd[315]: eno1: adding route to 10.6.0.0/18
    May 16 19:48:22 epbyminw1076 dhcpcd[315]: eno1: adding default route via 10.6.0.1
    But it takes several minutes to obtain an IP-address.
    Last edited by yarmash (2014-05-16 17:12:51)

  • SSIS Job is getting failed with an error "0x00000005 : Failed to compiled scripts contained in the package.

    Hi All. Could anyone resolve my issue.
    I was created a package with an Script task written in VB.Net.
    The Package was executing Successfully in BIDS.
    But when i tried to exceute the same using Sql server Agent Job, Its getting Failed with the below error message
    "Executed as user: Admin. Microsoft (R) SQL Server Execute Package Utility  Version 11.0.2100.60 for 32-bit  Copyright (C) Microsoft Corporation. All rights reserved.    Started:  5:12:27 PM  Error: 2013-03-13 17:12:32.33    
    Code: 0x00000005     Source: Checking Alcon Files Checking Alcon Files     Description: Failed to compiled scripts contained in the package. Open the package in SSIS Designer and resolve the compilation errors. 
    End Error  Error: 2013-03-13 17:12:32.33     Code: 0x00000005     Source: Checking Alcon Files Checking Alcon Files     Description: BC30179 - enum 'ScriptResults' and enum 'ScriptResults' conflict
    in class 'ScriptMain'., ScriptMain.vb, 156, 22  End Error  Error: 2013-03-13 17:12:32.36     Code: 0x00000005     Source: Checking Alcon Files Checking Alcon Files     Description: The binary
    code for the script is not found. Please open the script in the designer by clicking Edit Script button and make sure it builds successfully.  End Error  Error: 2013-03-13 17:12:34.28     Code: 0x00000005    
    Source: Formating Excel Sheet Formating Excel Sheet     Description: Failed to compiled scripts contained in the package. Open the package in SSIS Designer and resolve the compilation errors.  End Error  Error: 2013-03-13 17:12:34.28    
    Code: 0x00000005     Source: Formating Excel Sheet Formating Excel Sheet     Description: BC30179 - enum 'ScriptResults' and enum 'ScriptResults' conflict in class 'ScriptMain'., ScriptMain.vb, 191, 22  End Error 
    Error: 2013-03-13 17:12:34.29     Code: 0x00000005     Source: Formating Excel Sheet Formating Excel Sheet     Description: The binary code for the script is not found. Please open the script in the
    designer by clicking Edit Script button and make sure it builds successfully.  End Error  Error: 2013-03-13 17:12:51.56     Code: 0x00000004     Source: Checking Alcon Files      Description:
    The binary code for the script is not found. Please open the script in the designer by clicking Edit Script button and make sure it builds successfully.  End Error  Error: 2013-03-13 17:12:51.56     Code: 0xC0024107    
    Source: Checking Alcon Files      Description: There were errors during task validation.  End Error  DTExec: The package execution returned DTSER_FAILURE (1).  Started:  5:12:27 PM  Finished: 5:12:51 PM 
    Elapsed:  24.336 seconds.  The package execution failed.  The step failed."
    Please give some solution to this.
    Thanks in advance

    Are you editing this job in SQL 2012? Is it wrapping your paths in \"? Like for example does the command line tab on the step look like this:
    /FILE "\"D:\yourPathGoesHere.dtsx\""  /CONFIGFILE "\"D:\yourPathGoesHere.dtsConfig\"" /CHECKPOINTING OFF /REPORTING E
    That's the problem I had, and I resolved it by recreating the whole thing via SQL Script and getting rid of all those \" things. I think that is preventing SSIS from looking up the precompiled binaries for your Script Task. So you should edit the command
    line manually:
    /FILE "D:\yourPathGoesHere.dtsx"  /CONFIGFILE "D:\yourPathGoesHere.dtsConfig" /CHECKPOINTING OFF /REPORTING E
    Please write back whether that helps you. David Dye's answer didn't help me at all.

  • Python script in dasylab using single input multiple output

    Hello
    For a project, I would like to use the python scripting module of dasylab 13. I got it to work for simple functions such as y=f(x), where i have one input and one output.
    The next step in order to get to where i want to be with my script is using a single input and generating two outputs.
    I defined it in the "predefined settings" that pops up first. The module created looked as it should, having one input and two outputs. However, when I wanted to edit the script (and double clicked the module) the module went back to having one input and one output.
    I searched the help and found the section "channel assignment constants". There describe the various constants, which should have been set in predefined settings. In my case it is CR_1_2.
    It also states to setup the meta data in the SetupFifo tab.
    Now here is my problem: How should i change the SetupFifo tab?
    I tried the command:
    self.SetChannelRelation(channel_no, Ly.CR_1_2)
    Unfotunately this didn't work, which doesn't supprise me, as I made this command up, based on the examples in the help file on the SetupFifo tab. Those are, however, for SetChannelFlags and SetChannelType, which I don't think I need yet...
    Has anyone experienced a similar problem? I also installed a trial version on another computer to check if it works there (it doesn't).
    Or does someone know a method to find out how to be able to change inputs and outputs the way i want?
    Every help will be greatly appreciated.
    Sincerely, Jarno

    You do not need to set the channel relation for "simple" channel relation like 1:2, 2:1, etc.
    Just set the relation you want in the configration dialog that open when you drop a script module into to worksheet.
    The channel relation and their python constants have nothing to do with the amount of inputs and outputs of a script module.
    The channel relation tells the "DASYLab core" how to guide meta data (channel names, units, etc) through a module.
    In function "DlgInit" you have to tell DASYLab how many inputs and outputs your module should have.
    Your module should have 2 outputs for each input: this combination of input and outputs is called a "channel".
    Because one channel has 2 outputs, the module can have max. 8 channels only.
    The dialog with the channelbar "thinks" in  channels, but DASYLab "thinks" in connectors (connectors are inputs/outputs).
    So, you are responsible to translate "channels" in "connectors" and vice versa
    In DlgInit you can ask DASYLab about the amount of inputs and outputs.
    self.NumInChannel <-- amout of connectors on modules left side
    self.NumOutChannel <-- amount of connectors on the right side
    self.DlgNumChannels <-- amount of activated channels in the dialog (something between 1 and DlgMaxChannels)
    Your module's channels have 1 input, 2 outputs each, so you can write either
    self.DlgNumChannels = self.NumOutChannel / 2
    or
    self.DlgNumChannels = self.NumInChannel
    If the module has 3 input and 6 outputs, the dialog will get 3 channels.
    In DlgOk you need to translate the amount of channels into the correct amount of connectors (inputs/outputs):
    For "one channel = 1 input + 2 outputs" this is:
    self.SetConnectors( self.DlgNumChannels, self.DlgNumChannels * 2 )
    DlgInit
    self.DlgNumChannels = self.NumInChannel
    # or: self.DlgNumChannels = self.NumOutChannel / 2
    self.DlgMaxChannels = 8 # or Ly.MAX_CHANNELS/2
    DlgOk
    self.SetConnectors( self.DlgNumChannels, self.DlgNumChannels * 2 )
    M.Sc. Holger Wons | measX GmbH&Co. KG, Mönchengladbach, Germany | DASYLab, DIAdem, LabView --- Support, Projects, Training | Platinum National Instrument Alliance Partner | www.measx.com

  • Drop Down Menu Opening another File Script

    I am using a drop down menu to generate other information in different selection. I received great help before but have encountered another problem.
    I have attached a example file.
    Once the user has selected the offense title and it generates the above information, I
    was wondering if you can script it to open another adobe form contained in the script i'm already using.. For example when
    user selects the Abandon Endanger child criminal negligence, (I already made this complaint
    in adobe) it would open the file.

    not 100% sure if your after a hidden subform to show up after a certain selection is made or if you want the user taken to a totally different form
    e.g. click option 4 and get a new document opened in you face - im guessing the second option in whihc case I think you should be able to do this by using the app.openDoc("examplename.pdf") command
    not one ive used myself but it should work much the same as the app.launchURL command which is usually quite stable
    so you would have some code on your preferred event
    to say something like
    if (this.rawValue = "whatever value you want to trigger action";
    app.openDoc("examplename.pdf")
    alternatively if you other form is also online you could probably trigger it using the app.launchURL function - although the app.openDoc is meant to be the appropriate function for this type of thing
    hope that helps - if not just clarify what your after and well try again!
    cheers

  • MacPro with10.7.3. running a Python script in terminal I see a : "There is no more application memory available on your startup disk". Python uses 10G of 16G RAM and  VM =238G with 1TB free. Log: macx-swapon FAILED - 12. It only happens with larger inputs

    On my MacPro with10.7.3. while running a Python script in terminal, after a while, in several hours actually,  I see a system message for the Terminal app: "There is no more application memory available on your startup disk". Both RAM and VM appear to be fine at this point, i.e. Python uses only 10G of 16G RAM and  VM =238G with ~1TB free. Log reads: " macx-swapon FAILED - 12" multiple times. Furthermore, other terminal windows can be opened and commands run there. It only happens with larger inputs (text files), but with inputs that are about half the size everything runs smoothly.  So the issue must be the memory indeed, but where to look for the problem/fix?

    http://liulab.dfci.harvard.edu/MACS/README.html
    Have you tried with the --diag flag for diagnostics? Or changing verbose to 3 to show debug messages? Clearly one of three things is happening;
    1. You ARE running out of disk space, but once it errors out the space is reclaimed if the output file is deleted on error. When it fails, does your output have the content generated up to the point of termination?
    2. The application (Terminal) is allocated memory that you are exceeding
    3. The task within Terminal is allocated memory that you are exceeding
    I don't know anything about what this does but is there a way to maybe run a smaller test run of it? Something that takes 10 minutes? Just to see if it works.

  • Communicat​ing with Keithley 2602A using python script

    Hi everyone,
    I want to enable communication between my PC and Keithley 2602A SourceMeter Instrument so that I can send commands to the SMI without using Test Script Builder (TSB) - a scripting/remote controlling program that enables communication between itself and the host computer.
    The reason why I want to do this is because I want to program in Python to carry out a series of tasks involving other hardwares and adjusting the voltage on the SMI at the same time. I can't use TSB to do this because TSB is solely for controlling the SMI and not other hardwares. I need to use Python scripts to consolidate all the hardware control. So far, communicating with other hardwares from my PC using Python scripts is not a problem because I have readily available libraries for them.
    I have found PyVisa which I thought could solve the communication problem. So I installed PyVisa and wrote the following code to test the communication.
    import visa
    keithley = visa.instrument("COM1")  #SMI connected to COM1
    keithley.write("smua.source.output = smua.OUTPUT_ON")  #send this command to SMI
     However, the communication was not successful as I got the error message as shown below:
    C:\Documents and Settings\cho\Desktop\Python Ex>keithley_test.py
    Traceback (most recent call last):
      File "C:\Documents and Settings\cho\Desktop\Python Ex\keithley_test.py", line 2, in <module>
        keithley = visa.instrument("COM1")
      File "C:\Python26\Lib\site-packages\pyvisa\visa.py", line 292, in instrument
        return SerialInstrument(resource_name, **keyw)
      File "C:\Python26\Lib\site-packages\pyvisa\visa.py", line 680, in __init__
        "delay", "send_end", "values_format")))
      File "C:\Python26\Lib\site-packages\pyvisa\visa.py", line 358, in __init__
        "lock")))
      File "C:\Python26\Lib\site-packages\pyvisa\visa.py", line 132, in __init__
        keyw.get("lock", VI_NO_LOCK))
      File "C:\Python26\Lib\site-packages\pyvisa\vpp43.py", line 753, in open
        byref(vi))
      File "C:\Python26\Lib\site-packages\pyvisa\vpp43.py", line 398,
    in check_status raise visa_exceptions.VisaIOError, status
    pyvisa.visa_exceptions.VisaIOError: VI_ERROR_RSRC_BUSY: The resource is valid, but VISA cannot currently access it.
    Can anyone tell me what went wrong? How can I control the Keithley 2602A using a Python script run from my PC?

    Hi DavItron, this is a very old thread but it's one of the top google results when I looked up info on how to implement some Python code with PyVISA to drive the Keithley 2602A so I will post this response so that other searchers can find the info.
    You can store data in named variables in the Keithely 2602A and then "print" them to the remote interface using something like the following:
    import visa
    ps = visa.Instrument("GPIB::Address of your instrument")
    ps.write("smua.source.levelv=10")
    ps.write("smua.source.output=smua.OUTPUT_ON")
    ps.write("currenta, voltagea = smua.measure.iv()")
    ps.write("smua.source.output=smua.OUTPUT_OFF")
    current = ps.ask("print(currenta)")
    voltage = ps.ask("print(voltagea)")
    For what I do which is mostly setting and measuring a bias point, then holding that while I trigger a measurement on another instrument, this is fine for me.  If you want to do  sweeps with a lot of data points it's probably more efficient to use the buffers directly, but I haven't needed that yet.
    Hope that helps somebody!

  • When i update to the latest version (7.0.3), there is a message appear to me when i open any application that contains notification such as (What'sApp or BBM),this message said (Connect to iTunes to use push Notification),How I can to stop these message?

    When i update to the latest version (7.0.3), there is a message appear to me when i open any application that contains notification such as (What'sApp or BBM) , this message said (Connect to iTunes to use push Notification) , How I can to stop these messages that appear to me constantly?

     Hi,
    One of my ex-colleagues has installed a NI-DAQ 6.5 in our system. [And I do not see any other naitional instruments card in the CPU of the computer, may be he removed it] I deleted the account and all his files in the system. When I am trying to install version8.0, its not getting installed and giving me a message that I should uninstall the previous version by going to Add/Remove programs in the control panel.
    I tried doing that, but the "Change/Remove" button does not seem to work...[There is no response and so unable to install the new version...]
    Any idea how can this problem be solved?
    It is a windowsXP operating system with SP2 installed on a machine with P4 processor.
    Thanks

  • Safari doesn't open Pop-up & Script Windows?!

    Why Safari doesn't open Pop-up & Script Windows?
    I always have to use other browsers like Firefox for opening them
    Example link (Download Datasheet):
    http://www.grapheast.com/ge-software/cp.php?id=70
    Can anyone help please?

    With Safari open, from the Menu Bar click Safari. Where says; Block Pop Up windows, Deselect that.
    Keep in mind pop up windows can contain malicious code.
    Carolyn

  • Not able to playback siebel open ui functional scripts from OTM

    Hi All,
    I have recorded a Siebel Open UI functional script using web wizard of OpenScript.It contains navigating url,typing username and password,clicking enter button.
    When I tried to playback from OpenScript,it works fine.But when I tried to execute from OTM,broser is launched and navigated to the url,then it failed.
    I am getting "Failed to playback: No browser launched" error from OTM report.
    OATS Version : 12.4.0.2 Build 129
    IE Version : 9.0.8112.16421
    I have found one more strange thing,after playing back from openscript,if the Siebel Open UI login page exists in the browser,then OTM is able to playback with the scripts,it is logging in to the application.
    Can anyone help me to fix this issue?
    Thanks,
    Sandy.

    Informatica Domain File path D:\Informatica\9.1.0 - domains.infa
    Informatica Power Center Path D:\Informatica\9.1.0\server
    Yes, I m able to connect to the Informatica repository through the Informatica client.
    I tried adding the windows machine name to the hosts file, but didn't help.
    veeravalli - I've followed all the instructions in the document. I rechecked all the details corresponding to the host, domain and port number and they are correct.
    Thanks!

  • I bought and installed many fonts for a project and one font in particular which is showing up in the font list on a new file, is missing when I open an existing file containing that font. I can't understand why that's happening and the font is Centrale S

    Hi
    I am encountering a missing font error on Adobe Illustrator for a font that I recently bought - Centrale Sans Bold. This font is clearly installed in the system's font folder and is also showing in the font list on Adobe Illustrator. But when I open an existing file containing this font it is giving the error "The document uses fonts or characters which are not available or are in a different format than originally specified".
    We have also bought Centrale Sans regular from a different website as we couldn't find both on one, could that be clashing somehow?
    Also the existing file was created on MAC plattform and we are using a windows plattform to open it. That to me doesn't seem like an issue as all other files are opening up fine and I have bought around 47 fonts and only this font seems to be not working. I have also written to the website I bought it from but I have also bought around 20-25 fonts from them and all the other fonts are working fine too. Maybe its an illustrator related problem?
    Please help!!!!!!

    There is one way its getting fixed. Once I update my Adobe Illustrator CC to Adobe Illustrator CC 2014 it is further allowing me to go into the system folder and allocate the font to the file so that it can replace it. My only concern now is that our MAC partners who will receive these files back from us have Adobe CS6. We will down save it to CS6 but I hope they won't experience any font issues because of us using CC 2014? Any light you can shed on this?

  • Error opening a Test Script inUFT from Solution Manager

    This error is the subject of a call with SAP and HP but I wondered if anyone else has come across this problem.
    We work with Solution Manager 7.1 (SP11) and HP's UFT 11.53 to create automated testing. We ustilise the two free seat licences for UFT that are provided via enterprise support. We do not use HP's Quality Centre.
    On some occasions when trying to open a test script for editing UFT tries to open and then closes again. The error message below is displayed in solution manager.
    “External Test Tool Quick Test Professional Is Busy and Cannot Create a New Test Script”
    When this happens the local cache files are wiped. We have managed to salvage some of these scripts by pasting in copies of the cache file from another PC but some we had to recreate from scratch.

    If you don't have one already create a gateway instance on your Content Server.
    Change or create the RFC destination :  SAPKPROTP   type = T
    Check the radio button to start on Expicit Host 
    Enter the program = c:\winnt\sapkprotp.exe
    Enter target  host - use the hostname of the server for your Content Server
    Enter the Gateway information
    Regards,
    Brian

Maybe you are looking for