Fscommand exec problem

Hello everybody,
I know similar questions have been many times asked on this forum, and I've read them and tried the diffrent solutions proposed, without attaining my goal.
My goal is to launch a software some_software.exe with an executable projector created  with Flash in ActionScript 3.
The software some_software.exe must absolutely be in a sub-subfolder compared to the position of the projector launcher.
I've tried many things I read on this forum and others, like :
fscommand("exec","Products/some_software/some_software.exe")
or
fscommand("exec","./Products/some_software/some_software.exe")
or
fscommand("exec",".//Products/some_software/some_software.exe")
I know very well that it is said in Flash MX CS3's help file that the executable to launch some_software.exe must be in a fscommand folder.
I have tried :
fscommand("exec","Products/some_software/fscommand/some_software.exe")
with no more success.
I have also tried to launch some_software.exe in a sub-sub-folder from a batch file .bat.
During my direct tests while launching the batch file, this one containing :
@ echo off
start Products/some_software/some_software/some_software.exe
exit
The batch file worked fine, even with paths in the subfolders very deep.
But when I launch the .bat file indirectly, with the Flash projector, in which I wrote :
fscommand("exec","batch_file.bat")
the batch file seems to open very briefly the black MS-DOS subscreen, this subscreen disappearing immediately, and some_software.exe was never launched !
Did anyone have the same problem ? Were you able to make it work ?
If it's the case, many thanks by advance if you can show me a solution to my problems, or, even better, if you can propose the sources of your solution compressed in a .zip file !
Many thanks for your help,
Roland

http://forums.adobe.com/thread/60643?tstart=0

Similar Messages

  • Problem with fscommand exec

    Hi everyone ;)
    im creating a Flash Projector to use in a interactive cd.
    I need to open .doc files
    i try this:
    on (release) {
    fscommand ("exec", "test.doc");
    i put the test.doc in a subfolder named fscommand on the root
    of the
    projector.
    i try to put the .doc in the same folder of the projector
    nothing happens
    anyone knows what im doing wrong?
    I use Flash 8
    Ps.: Sorry my bad english... i'm from brazil
    Tks

    ToKa wrote:
    > Hi everyone ;)
    >
    > im creating a Flash Projector to use in a interactive
    cd.
    > I need to open .doc files
    > i try this:
    >
    > on (release) {
    > fscommand ("exec", "test.doc");
    > }
    >
    > i put the test.doc in a subfolder named fscommand on the
    root of the
    > projector.
    > i try to put the .doc in the same folder of the
    projector
    Unfortunately you can't do that. EXE is for executable type
    of files only.
    Such as EXE, COM or BAT, not doc, gif, rtf, jpg etc...
    You could use BAT file to open it but that's not very neat
    solution.
    Another way would be with 3rd party tools.
    Try Jstart. I have been using Jstart for many years now, very
    reliable tool,
    here is the url.
    http://flashjester.com/?section=tricks_jtools_jstart
    JStart will allow you to not only launch a program, but use
    parameters to make
    the program open files, perform special actions and just
    about anything you can
    use parameters for. You can also choose to launch files with
    their default
    associated program.
    Another solution is provided by Rick Turoczy, it's pretty old
    but it should
    still work. Perhaps give it a try.
    http://www.flashgeek.com/tutorials/07_launchapp_01.asp
    Easy to use tool that allow you to launch basically anything
    from the projector.
    As long as there is system default application supporting
    particle file.
    Best Regards
    Urami
    Beauty is in the eye of the beer holder...
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • Fscommand exec on mac to open pdf works in a cs3 projector file but not in a cs5 projector file

    Hi,
    I could succesfully open a external pdf with the following command in Flash cs3 on a Mac:
    fscommand("exec", "test.app");
    test.app (inside an fscommand folder) is an apple script that opens the pdf inside the fscommand folder, to make it work I needed to copy the fscommand folder into the MacOs Folder of the Mac Projector File. The same steps don't seem to work with Flash cs5. I can't downgrade my cs5 project to cs3.
    Is this problem a bug in Flash cs5?
    Has anyone solved this problem?
    Thank you.

    I had this same issue today - could not get a mac projector, FP 10, built in cs5, to run fscommand("exec", "test.app") no matter what I tried. I also couldn't find any definitive threads via google, so here's everything I know about fscommand("exec") for anyone who's looking.
    I wanted to run a custom batch (.bat) file on windows and a custom applescript file on mac. I needed to restart a legacy, cross-platform kiosk application on a click (unfortunately could not use AIR).
    On the Mac (Flash CS5) - First off - Flash CS5 on Mac did not work no matter what I tried
    I also tried opening up the .app package contents and copying the fscommand folder into that, with no luck.
    You have to create the projector in CS4 (I down-saved to CS4 and used my PC running CS4 to publish) and put the "callee" .app in a folder named fscommand alongside the projector.
    I used these directions to create an .app of my applescript that restarts my projector: http://soapbox.lafayette.edu/node/517
    Here's the applescript I wrote:
    tell application "kiosk"
        -- kill the "caller" app if running
        quit
    end tell
    set myFile to (path to me)
    tell application "Finder"
       -- the delay wasn't needed in practice, but might be of help
       -- delay 1
        open application file "kiosk.app" of container of container of myFile
    end tell
    Now when I call
    fscommand("exec", "restart.app");
    on a mac, my kiosk restarts as expected.
    For PC peeps, I used this awesomely simple solution on windows (Flash CS4)
    http://www.northcode.com/blog.php/2007/08/07/Conquering-FSCommand-EXEC-Part-1-Proxy
    I put two files in my fscommand folder (at the same directory level as my projector):
    - restart.exe (proxy.exe from above link renamed)
    - restart.bat
    The .bat file simply has 1 line that starts my projector (in the parent folder):
    ..\kiosk.exe
    I call
    fscommand("exec", "restart.exe");
    and then have a 1 second timeout to kill the first "caller" projector. I wrapped the function as it didn't seem to work otherwise:
    setTimeout(function(){fscommand("quit");}, 1000);
    Yes, this means that I have two instances of the kiosk running at the same time for about 1 second.
    Apologies if my response was slightly off-topic, but I hope the info helps someone avoid losing a whole evening on a pressing deadline like me!

  • Fscommand("exec".... substitute???

    I feel like ahab chasing moby dick.
    I am trying to create a flash projector program that sends
    variables to an external program (which is priadoblender-compiled
    php)
    i thought fscommand("exec", userReg.exe + var1 + var2 + var3
    + var4) would work because of MX2004 let it happen, but I am now
    working in flash 8 professional.
    I know this doesn't work. I have read up and down.... forums,
    blogs, white papers etc.
    I am looking for a simple alternative to this problem. I
    thought AFsaver might be the solution, but for the love of god, I
    can't figure out the syntax and the documentation on afsaver is
    slim to none.
    is there some program that will allow me to just pass
    variables to an external program that will work in flash 8?
    the premise is basic.
    1) have flash projector call a program , perhaps with
    fscommand
    2) pass variables to it, (any amount between 1-50 vars) the
    speudocode example I have above would be ideal...
    I don't know how simple this is to manufacture. but I believe
    it would be simple enough to read the program name and parse out
    the variables from a single string.
    if AFsaver has a way to do this, that would be great too. I
    would just need to know the syntax to make it work properly.

    try third part tools like SWiSHstudio or Flash Jester or SWF
    Studio. Also
    look at free ones like the open source screenweaver. If all
    you need is to
    pass parameters to an exe, then you may not need the more
    expensive third
    party tools.
    Jeckyl

  • FullScreenTakeOver, fullscreen, and fscommand exec

    I am not a programmer. I switched to CS3 for flv ease of
    skins, but I'm finding AS3 to be extremely difficult to learn.
    I have an .fla that I am publishing as a Mac projector and a
    Windows projector. It took me 2 days just to learn the new way to
    handle simple buttons and now the Mac projector is already acting
    up on other simple commands. I haven't even had a chance to test
    the Windows .exe because I can't get the Mac version to work. I'm
    hoping the problems are the same so I only have to deal with this
    once.
    I'm at the point where I'm trying to get this to work:
    //in first frame
    fscommand("fullscreen", "true");
    myvideo.fullScreenTakeOver = false;
    //in different scene
    myButton.addEventListener(MouseEvent.CLICK, openSyllabus);
    function openSyllabus(event:MouseEvent) {
    fscommand("exec", "syllabus.app");
    seems simple enough right?
    Here are the problems:
    1. fullscreen is not actually fullscreen. It has a menu bar
    the top of the window.
    2. "myvideo" is an FLVPlayback component. It is contained in
    an swf called "video.swf". video.swf is loaded into an mc in my
    projectors main timeline called "videoSpot_mc" like this:
    teleButton.addEventListener(MouseEvent.CLICK, newvid);
    function newvid(event:MouseEvent) {
    var loadit = new Loader();
    addChild(loadit);
    loadit.load(new URLRequest("video.swf"));
    videoSpot_mc.addEventListener(MouseEvent.MOUSE_DOWN, newvid);
    But when video.swf loads into videoSpot_mc it goes to a black
    screen despite having "myvideo.fullScreenTakeOver = false;" in
    frame one of the main timeline. I tried it in frame 1 of
    "video.swf" timeline, too and it just made the movie freeze. What's
    wrong here?
    3. fscommand is not opening "syllabus.app" which is a simple
    application that in turn opens "syllabus.pdf".
    I am working on a Mac OS 10.4.10 publishing from Flash CS3
    v.9.0.3 in AS3.
    What am I doing wrong??? I really need these answers fast or
    I will probably lose this client. Thanks in advance.

    Thanks, but it needs to be a hybrid cd. If only the windows
    version works then its useless.
    I got the fullScreenTakeOver = false; to work. I also found
    out that if you put
    fscommand("fullscreen", "true") in the first frame and then
    fscommand("fullscreen", "false") in the second frame and then
    fscommand("fullscreen", "true") in the third frame, then the menu
    bar will go away like it used to by just putting it in the first
    frame.
    The fscommand("exec", "myapp.app") never worked. I searched
    every forum on the web and found only more people with the same
    problem. I ended up switching back to AS2 Flash Player 8 and
    created fullscreen video and other effects myself through AS2.
    fscommands all worked swell. No issues.
    I find Flash 9 and AS3 to be bad product "advancements" and
    am happy I used the trial version before paying out the money for a
    product with so many flaws and setbacks.

  • [AS] fscommand "exec"

    Estoy ejecutando en un botónde flash la siguiente
    accion:
    on(release){
    fscommand("exec","archivo.bat");
    Y el archivo.bat (que esta dentro del directorio fscommand)
    contiene lo
    siguiente:
    start subdirectorio\archivo.exe
    Pues el problema es que parece que me lo ejecute pues aparece
    la ventana de
    msdos pero no lo hace.
    Que es lo que sucede? Lo he hecho de esta manera para crear
    subdirectorios
    en la carpeta fscommand para poder ejecutar.
    Gracias

    Parece ser que el flash cs3 por seguridad no interpreta bien
    las rutas del
    bat... en cambio con flash8 va ok... cosas de la
    tecnología :-S supongo que
    ya aparecerá alguna solución con el cs3 sino mal
    vamos.
    "Luciano A. Ferrer" <[email protected]>
    escribió en el mensaje
    news:fcosd6$ov8$[email protected]..
    > "Markus" <[email protected]_no_spam> escribió
    en el mensaje
    > news:fcorhc$nsc$[email protected]..
    >> He probado de sacar el start pero entonces no
    ejecuta nada... tengo
    >> windows 2000
    >
    >
    http://www.google.com.ar/search?q=fscommand+exec+windows+2000
    >
    > que tengas una buena lectura :)
    >
    >
    >
    >> "Luciano A. Ferrer"
    <[email protected]> escribió en el mensaje
    >> news:fcoql0$msj$[email protected]..
    >>> ----- Original Message -----
    >>> From: "Markus" <[email protected]_no_spam>
    >>> Newsgroups: macromedia.general.espana
    >>> Sent: Monday, September 17, 2007 4:18 PM
    >>> Subject: [AS] fscommand "exec"
    >>>
    >>>
    >>>> Estoy ejecutando en un botónde flash la
    siguiente accion:
    >>>> on(release){
    >>>> fscommand("exec","archivo.bat");
    >>>> }
    >>>> Y el archivo.bat (que esta dentro del
    directorio fscommand) contiene lo
    >>>> siguiente:
    >>>> start subdirectorio\archivo.exe
    >>>>
    >>>> Pues el problema es que parece que me lo
    ejecute pues aparece la
    >>>> ventana de msdos pero no lo hace.
    >>>> Que es lo que sucede? Lo he hecho de esta
    manera para crear
    >>>> subdirectorios en la carpeta fscommand para
    poder ejecutar.
    >>>> Gracias
    >>>
    >>> Probá sacar el start, según tengo
    entendido es para windows viejos
    >>>
    >>>
    >>> Por otro lado, alguién sabe cómo
    conseguir algo similar a esto pero para
    >>> una
    >>> MAC?
    >>>
    >>> Saludos!
    >>> Luciano
    >>>
    >>>
    >>
    >>
    >
    >

  • Fscommand "exec" doesn't work in Mac (Flash Player 10.1)

    Hi All,
    I am trying to launch an external application using fscommand in Mac ('fscommand' works fine on Windows). I have done following things to make it work:
    Written an apple script to launch a pdf and saved it as "test.app"
    I copied "test.app" to "fscommand" directory. (fscommand is a directory under 'flash projector.app')
    Tried to launch the "test.app" using fscommand, as shown below:
                fscommand("exec", "test.app");   
    But, my efforts went in vain. It did not work. I even tried to copy "fscommand" dir to "Flash Debugger Player.app/Contents/MacOS/", but still I can't make it work.
    More Info:
    Mac version: Mac OS X 10.6.2
    Hardware: Intel Core duo 2
    Flash Player Version: 10.1 (standalone projector)
    Is it something I am missing or is it a bug in Flash Player 10.1? Does anybody could make it work; Please let me know!

    Praveen,
    Im in the same boat. - Im trying to open a mac projector .app from inside another .app by using Fscommand "exec".
    After reading this
    http://www.morgadinho.org/2007/03/12/launching-an-app-with-fscommand-on-mac-os-x/
    have created applescripts with .app extension inside Fscommand folder, but to no avail.
    Have heard anything/ had any resolution yet?
    james

  • Pass parameter with fscommand exec

    Hi,
    I am writing a text file with batch file and this batch file which is called from fscommand.
    I need to pass a parameter from fscommand. Is is possible ?
    Following is flash and batch file code.
    Flash Source
    import flash.events.Event;
    bt.addEventListener(MouseEvent.CLICK,save);
    function save(e:Event){
        fscommand("EXEC","write.bat");
    Batch file
    ECHO This is my new text1 %1 > "temp.txt"
    Thanks ------------------- Amit

    As mentioned in one of your other posts you could use FileReference.save(...) this does require user interactive however and Flash Player 10.
    Alternatively you could create a userId and save the data in an online database (but obviously this isn't local)
    If you are using AIR you could create a local database
    Otherwise I don't do not know of a way to achieve what you are after

  • Fscommand exec

    Hi,
    Why fscommand exec don't run on Flash CS3 ???
    What's the way now to launch an application with the
    projection ?
    thanks
    JP

    no response of Adobe
    just say to be impossible ?

  • Fscommand exec foldername with space

    Hi,
    I'm trying to use fscommand exec with a relative path and the
    folder name has a space in it.it 's not working.ANy idea how it'll
    work.
    fscommand("exec", ".\\folder space\\xyz.exe"); //do not work
    fscommand("exec", ".\\folderspace\\xyz.exe"); //works if I
    create a folder without space .

    no response of Adobe
    just say to be impossible ?

  • Fscommand("exec", "some.exe -nextparametr");

    I have this code:
    fscommand("exec", "loader.exe");
    and i want to have next parametr:
    fscommand("exec", "lader.exe -nextparametr");
    Is it possible? Please help
    PS: sorry, my english is bad (I'm from CZ);

    Yes its possible using FlashJester JStart
    http://jstart.flashjester.com
    Look at this example
    http://www.flashjester.com/index.php?section=faq&cPath=28_41#176
    Regards
    FlashJester Support Team
    e. - [email protected]
    w. -
    http://www.flashjester.com
    There is a very fine line between "hobby" and
    "mental illness."

  • Java.lang.Runtime.exec problem in ubuntu 9.10

    Hi:
    I tried to run some command in the java code , for example "grass64 -text /home/data/location", this command works well in the terminal, however when I call it in the java code I got some excepetions.
    My code is :
    public class Grass {
         public static String grassBatJob="GRASS_BATCH_JOB";
         public void run(String cmd,String jobPath) {
              //set the environments variables
              Map<String, String> env=new HashMap<String, String>();
              env.put(grassBatJob, jobPath);
              String gisDataBase="/home/kk/grass/GrassDataBase";
              String location="spearfish60";
              String mapset="PERMANENT";
              cmd=cmd+" "+gisDataBase+"/"+location+"/"+mapset;
              CommandLine line=new CommandLine(cmd);
              //the real cmd should be >>grass64 -text /home/kk/grass/GrassDataBase/spearfish60/PERMANENT
              System.out.println("start line=="+line.toString());
              DefaultExecutor de=new DefaultExecutor();
              try {
                   int index=de.execute(line,env);
                   System.out.println(index);
              } catch (ExecuteException e) {
                   e.printStackTrace();
              } catch (IOException e) {
                   e.printStackTrace();
         public static void main(String[] args) {
              String jobPath=Grass.class.getResource("grass.sh").getFile();
              new Grass().run("grass64 -text", jobPath);
    The real cmd I want to execute is "grass64 -text /home/kk/grass/GrassDataBase/spearfish60/PERMANENT" with the envrionment variable "GRASS_BATCH_JOB=jobPath",it works well in the ternimal ,however in my application I got the exception"
    java.io.IOException: Cannot run program "grass64 -text /home/kk/grass/GrassDataBase/spearfish60/PERMANENT": java.io.IOException: error=2, No such file or directory
         at java.lang.ProcessBuilder.start(ProcessBuilder.java:459)
         at java.lang.Runtime.exec(Runtime.java:593)
         at org.apache.commons.exec.launcher.Java13CommandLauncher.exec(Java13CommandLauncher.java:58)
         at org.apache.commons.exec.DefaultExecutor.launch(DefaultExecutor.java:246)
         at org.apache.commons.exec.DefaultExecutor.executeInternal(DefaultExecutor.java:302)
         at org.apache.commons.exec.DefaultExecutor.execute(DefaultExecutor.java:149)
         at org.kingxip.Grass.run(Grass.java:27)
         at org.kingxip.Grass.main(Grass.java:38)
    Caused by: java.io.IOException: java.io.IOException: error=2, No such file or directory
         at java.lang.UNIXProcess.<init>(UNIXProcess.java:148)
         at java.lang.ProcessImpl.start(ProcessImpl.java:65)
         at java.lang.ProcessBuilder.start(ProcessBuilder.java:452)
         ... 7 more
    I wonder why?

    Thanks for all of your reply, and now I can run the command, however I met some problems when I tried to get the result of the exec.
    The core codes are shown below:
    String cmd="g.version";
    String[] exe={"bash","-c",cmd};
    Process p1=Runtime.getRuntime.exec(exe,env); // the env has been set
    GrassThread outThread=new GrassThread("out", p1.getInputStream());
    outThread.start();
    GrassThread errorThread=new GrassThread("error", p1.getErrorStream());
    errorThread.start();
    int exitVal = p1.waitFor();
    String resu=outThread.sb.toString();
    System.out.println("==========the output start========");
    System.out.println(resu);
    System.out.println("==========the output end========");
    System.out.println("ExitValue: " + exitVal); //------------------> line one
    public class GrassThread extends Thread{
         public StringBuffer sb=new StringBuffer();
         public GrassThread(String type,InputStream is) {
              this.type=type;
              this.is=is;
         public void run() {
              try {
                   InputStreamReader isr = new InputStreamReader(is);
                   BufferedReader br = new BufferedReader(isr);
                   String line = null;
                   while ((line = br.readLine()) != null) {
                        System.out.println(type + ">" + line);
                        sb.append(line).append("\r");  // ----------------------------> line two
    }I define a StringBuffer in the GrassThread to save the output (see the code where I marked by "line two"), and when the process complete, I check the StringBuffer to get the output (see code where I marked by "line one"), however the output in the console of the IDE are :
    ----------- output in the console of the IDE start -------------
    ==========the output start========
    ==========the output end========
    ExitValue: 0
    out>GRASS 6.4.0RC5 (2009)
    ----------output in the console of the IDE end--------------------
    I can not understand, in the code "line one", I first get the output using "System.out.println(resu);",then I print the exitvalue,but why the order of the output in the console is not what I expected?
    Another question, the code above assume the output can be got from the Process's getInputStream, however sometimes the output maybe come from the Process's getErrorStream, so how to handle it?
    Edited by: apachemaven on 2010-3-5 ??5:38

  • Runtime.exec problem

    we have a c program which does the encryption on the input files.
    IF we ran this program in unix os, it will take 30 secs to finish.
    But if we call this program using java by calling Runtime.getRuntime().exec(command)
    it takes 20 minutest to finish.
    We wonder why does it take this much time to finish.
    We are having thought that when the program runs in unix os it can get all the resources it want.
    but when run this through java, it is limited to JRE / JVM memory size. --->Am I right?
    Could you please clarify my doubt on the memory size. If I wrong, how can we fix this problem.
    Thanx

    In the case of unix
    u will just run the executable using a.out. For processor its just the execution of the executable, so 30 secs
    In case of java
    step1: It has to interpret the java program line by line after doing required loading, linking and initialization
    of the required libraries and class files.
    step2: It has to create a separate process using Runtime.getRuntime().exec() and wait for the result
    of that process
    so the total time will be step1 + step2 = some time + 30 sec = 20 minutes.

  • Runtime.getRuntime().exec problems

    i am trying to run files from my java application, i use the following command
    Runtime.getRuntime().exec("cmd /c start " + filePath);but it seems that it cant handle file path with spaces, like
    C:\Documents and Settings\Administrator\My Documents\My Web\Untitled-3.fla
    it works well with path like this
    C:\Downloads\1.rar
    am i right? and how to solve this problem? thanks

            final String[] command =
                "cmd.exe",
                "/C",
                "start \"" + filename + "\"",
            final Process p = Runtime.getRuntime().exec(command);this method can only trigger files in the same folder as the java application, isnt it?

  • System exec+ problem

    I'm using the system exec+ file to read in a msdos executable into labview, and to have it stay open until the user exits. Whats happening now is that when its reading in my program (awc.exe), it pops up an error message (in dos) that says "cannot find fonts." The font files are in the directory (c:\awc) with the executable. Do I need to link the font files somehow to awc.exe, or is this being caused by some other problem?

    jdaltonnal wrote:
    > I'm using the system exec+ file to read in a msdos executable into
    > labview, and to have it stay open until the user exits. Whats
    > happening now is that when its reading in my program (awc.exe), it
    > pops up an error message (in dos) that says "cannot find fonts." The
    > font files are in the directory (c:\awc) with the executable. Do I
    > need to link the font files somehow to awc.exe, or is this being
    > caused by some other problem?
    Not sure about your awc.exe prog but I have had similar problems with
    other exe progs.
    The awc program is probably expecting c:\awc is set as the dos current
    directory; I don't think exec+ does this.
    Try this:
    Open a dos session manually in Windows.
    Don't change directory; keep the default one dos gives you.
    Type in the
    command you are passing to exec+; maybe c:\awc\awc.exe (or
    just awc.exe if c:\awc has been set in your path?) What happens?. Same
    problem? So now try running awc.exe again but first change to c:\awc
    directory. Does it now work ok. If so you need to set c:\awc as the
    working directory from within exec+. To complicate things you must set
    this current directory in the same dos session as awc.exe is called so
    you can't do this by running two exec+ commands.
    I use the following technique. Write a .bat (just a text file saved with
    the file extension .bat). You could call this awc.bat
    In this file put something like:
    c:
    cd \awc
    awc.exe
    then call exec+ to execute awc.bat instead of awc.exe
    You will need to tell exec+ to wait for execution to finish but I guess
    you already know that.
    Hope this works for you.
    Dave.

Maybe you are looking for

  • Samsung M500 and iSync

    The Samsung M500 is not supported on iSync. I can connect via Bluetooth. I have been able to download my contacts from the M500 and they appear as files in my Documents folder on the Mac. When I drag them to the address book, they appear as expected.

  • Requirement to change the accounting date

    Hi All, A customer wants to have the accounting date on the journal entries influence by the date they need the goods. Basically what they want is to create a requisition, fill at line level the date required and have this date being used as the acco

  • Making the whole flash video a link

    Hello, It's been awhile since I've worked with flash and I can't remember how to make an animation a link. Not just adding a button that links to a site, but the whole animation itself is actually a link so that when you hover over any part at any ti

  • Adobe Illustrator draw import?

    Whi I can't import .ai files in Adobe illustrator draw for iphone when i try to import individual files it shows my cc .ai files but they are not selectable (grey) why is that. And do you plan to make adobe draw for iphone fully functional with adobe

  • Al BT KB with MBP problem

    I've had for quite sometime now my Aluminum BT KB connected to my June 2009 MBP. This laptop is also connected to a Apple 24" display with the newest Apple BT mouse. The problem is when ever I want to do a Pram/Nvram reset by restarting the computer