Webutil command into batch file

Hello,
We have a 10gR2 environment, with webutil.
I get a weird behaviour with CLIENT_HOST.
When I use this command
myCommand := 'cmd /c COPY c:\file1.txt c:\toto.sql ';
CLIENT_HOST(myCommand);
There is no problem.When I use put the COPY command into a .bat file, in order to execute the .bat file with CLIENT_HOST ... the command doesn't make the job.
There is no special information in the jInitiator console...
But here is the code I'd like to write :
myFile CLIENT_TEXT_IO.FILE_TYPE;
myCommand VARCHAR2(1000);
BEGIN
myFile := CLIENT_TEXT_IO.FOPEN('c:\myBatch.bat', 'W');
CLIENT_TEXT_IO.PUTF(myFile, 'COPY c:\file1.txt c:\toto.sql \n');
CLIENT_TEXT_IO.FCLOSE(myFile);
myCommand := 'cmd /c c:\myBatch.bat ';
CLIENT_HOST(myCommand);
END;
Also, when I doubleClick on the myBatch.bat file under Windows, the command works fine !
My problem is that I need to have a .bat file that gathers many commands. (this is not only about copying a file)
What puzzles me, is that I don't have such problem with our 8i environment !
That's why I was thinking about any special privilege/setup missing in our 10g environment / configuration...
Any idea or advice?
Thanks,
Olivier

Hi Olivier
The problem is that the operative system hasn’t written the file yet, even though the fclose command as been executed.
I used this type of code to check if the file is closed in the file system.
loop
l_counter := l_counter + 1;
if webutil_file.file_size('c:\myBatch.bat') > 0 then
CLIENT_HOST(myCommand);
exit;
end if;
if l_counter > 100 then
SET_ALERT_PROPERTY('UI_ERROR',alert_message_text,'Timeout. Copy can not be completed, due to file not being released by file system.' );
l_button := show_alert('UI_ERROR');
     exit;
end if;
end loop;
Hope this will help you solve the problem
Cheers
Nils Peter

Similar Messages

  • How to write sql command in batch file

    hi,
    i m using oracle 9i on windows. i want to know how can i write sql command on batch file. i want to use a batch file to use sql command like shutdowm & startup command and any select command too.
    so plz tell how can i do it ?
    thxs

    superdba wrote:
    thxs u all , i got it at i wanted to do.
    thaks u all for yr precious time.
    thxsYou've 67 questions with 63 UNanswered. Please mark this question as "answered" and give points to the users whose answer you accept as "helpful" or "correct"
    Kamran Agayev A. (10g OCP)
    http://kamranagayev.wordpress.com
    [Step by Step install Oracle on Linux and Automate the installation using Shell Script |http://kamranagayev.wordpress.com/2009/05/01/step-by-step-installing-oracle-database-10g-release-2-on-linux-centos-and-automate-the-installation-using-linux-shell-script/]

  • Please help how to run System commands and batch files thru java program

    Sir,
    I want execute OS commands like dir,cls..etc and batch files,.exe filesthru java program.
    I have tried it sofar thru Runtime.getRuntime().exec("execute.bat");
    but it is not working.anybody knows about how to run the system commands thru java please give me the code.
    thank you,
    regards,
    j.mouli

    I've seen other posts with this questions, and answers. Unfortunately I didn't pay much attention. But the basic idea is to exec command.com and pass the specifc batch or command as an argument.

  • DOS command for batch file

    Hi All,
    anybody knows how to call a batch file from java
    is there any DOS command aor dll file like url.dll by wich i can call my batch file from a java file
    or may be some body can tell me how to use FileUploadProtocal to call a batch file from java
    Please help me
    ASAP
    Thanks in advance

    Actuly I got these lines from a frnd
    String loadPath = "rundll10 url.dll,FileProtocolHandler D:\\a.bat";
    Process process = Runtime.getRuntime().exec(loadPath);
    but my original code was
    try{
         boolean imported = true;
         String _cmd = "cmd /c ";
         cmd =cmd+"sqlldr ";
         cmd = cmd + " userid=" + userId + "/" + passwd + "@"+ tnsEntry;
         cmd = cmd + " control=" + controlFilePath;
         cmd = cmd + " log=sql.log skip=1";
         System.out.println(_cmd);
         String envArr[] = new String[2];
         envArr[0] = "ORACLE_HOME=" + System.getProperty("ORACLE_HOME");
         envArr[1] = "PATH=" + System.getProperty("PATH");
              try{
                   Runtime r = Runtime.getRuntime();
         Process process = r.exec(_cmd);
              catch(RuntimeException re )
                   System.out.println("Failed to runtime run the process.123.."+re);
    it was not working even i m not getting any error or excep. so I tried that two lines above.
    but still frustating results

  • Passing keystrokes into batch file

    I need to execute a batch file, with the following keystrokes to be passed during its execution:
    y
    enter
    y
    How do i simulate the above 3 keystrokes into the batch file?
    Thanks

    It would be fairly simple to rewrite this in PowerShell.  Then you could use the Stop-Service cmdlet, which can automatically stop dependent services if you use the -Force parameter.  I haven't tested it, but this should do the trick.  You'll
    need to run PowerShell as an administrator to use the script, of course (same thing you'd have to do to run that batch file):
    Stop-Service -Name winmgmt -Force
    Set-Location -Path c:\windows\system32\wbem
    Rename-Item -Path .\Repository Repository.old
    Remove-Item -Path .\Repository -Force -Recurse
    regsvr32 /s %systemroot%\system32\scecli.dll
    regsvr32 /s %systemroot%\system32\userenv.dll
    mofcomp cimwin32.mof
    mofcomp cimwin32.mfl
    mofcomp rsop.mof
    mofcomp rsop.mfl
    Get-ChildItem -Path .\*.dll -Recurse | ForEach-Object { regsvr32 /s $_.FullName }
    Get-ChildItem -Path .\*.mof | ForEach-Object { mofcomp $_.FullName }
    Get-ChildItem -Path .\*.mfl | ForEach-Object { mofcomp $_.FullName }
    Restart-Computer -Force

  • Incorporating .jar files into Batch files

    Hello, I've created an application that requires .jar files to operate correctly. I was able to get them into eclipse, which made me happy. I was able to figure out how to get them into a .html file when I went to put it on the web which made me even happier. But, then I discovered that I cannot use a html file to call it because of the security access exceptions that are ensued by placing the application on the web. I've come to the conclusion that I will use a Batch file (.bat) to run the app. The way I knew how to get them into the html file was to use:
    <applet code="MYCLASS.class" archive="MYCLASS_JARFILE.jar">
    </applet>Now I need to figure out how to achieve the same effect as that into a batch file that uses:
    java MYCLASSAny help would be greatly appreciated. Thanks.

    The applet uses I/O from a MySQL server. When launching it through the website (Not where the database is hosted from) the applet causes the following exception:
    java.net.SocketException: java.security.AccessControlException: access denied (java.net.SocketPermission 127.0.0.1:3306 connect,resolve)The applet in the end will be placed on the same server as the database but I was unsure if this issue would still persist, assuming it would I converted the applet into and executable JAR file and run it through the batch file which does not cause the same error.
    I read up on the signing applets and such and saw in most forums and articles, that it was a hard way to go and was a hassle. I also found out other articles advocating the use of applet--->servlet--->database however, I know very little about servlets. Currently I only have a semester of Java and have been constantly practicing it since the end of the semester. I learned MySQL and how to use it and right now I have an applet that stores and reads data from the MySQL server I've set up on my home network and uses a java applet GUI to allow manipulation of the data.
    Edited by: sfeher1 on Jul 21, 2009 9:36 PM

  • Running Commands Through Batch File...

    Dear All,
    Can anyone help me how to run commands including connecting to Sqlplus,create schema,grant user and alter user, grant dba alltogether through Batchfile..
    I have connected to sqlplus by using sqlplus "system/test@instance"
    but on including create tablespace new datafile'D:\app\Sreejesh\oradata\Tablespace\new.tbs' size 1024m autoextend on next 500m; it is not responding..
    Please advice..

    0d2ecaa8-3418-461c-bf28-ab1c801f10a0 wrote:
    Dear All,
    Can anyone help me how to run commands including connecting to Sqlplus,create schema,grant user and alter user, grant dba alltogether through Batchfile..
    I have connected to sqlplus by using sqlplus "system/test@instance"
    but on including create tablespace new datafile'D:\app\Sreejesh\oradata\Tablespace\new.tbs' size 1024m autoextend on next 500m; it is not responding..
    Please advice..
    Can you debug code that you cannot see?
    Neither can anyone else.

  • Batch file gives error "is not recognized as internal command.." after first character

    For every batch file I create, I receive the same error displaying after only running the first character in the file: ' d' is not recognized as an internal or external command, operable command or batch file.
    This occurs whether I run 'dir' cd '../..' or java.exe
    I've confirmed the path environment variable has the correct paths, cmd.exe is assigned to comspec, I'm running as admin, etc. What have I not setup correctly to run batch files. I can run these same commands directly at the command line.
    I'm running the latest version of 8.1, on Toshiba Satellite C855

    We do not have access to your computer, we cannot read your mind, and we cannot see your screen.
    Please copy and paste the exact command you are using and also copy and paste the
    exact error message.
    -- Bill Stewart [Bill_Stewart]

  • About batch file

    Sir
    I Write one batch file for tranfering the text formated data to db2 .
    In batch file i write Single line of code.
    eg. db2cmd db2 connect to sample user db2admin using db2admin new db2admin confirm db2admin db2 import from dep.text of del insert into department
    But there is error .So how can i write this code .
    In this code databse connection is completed but import command is not fired on db2 how can i write this command in batch file . Help me.

    Why don't you post this to a DB2 forum, since it has nothing to do with Java and everything to do with DB2?

  • Batch file couldn't executes by SQL server agent

    I had a batch file which have pscp command and plink command. If i executes the job it goes into infinite loop and executing forever. I tried many things and checked many forums. All forums says we need to create proxy account in SQL server then only we
    can execute the batch file using SQL server agent. But i use another workaround to resolve the issue. 
    Find below the step:
    1. We need to create one text file and write "yes" into it. This is useful to give the indicator to batch file that this is a trust full command and command can be execute in cmd.
    2. We had below command in batch file
    pscp -pw Wa5nea2Hag9z C:\Projects\UDM\Hadoop_aggregation\Sessionlog_source_file\application_events_latest.csv  [email protected]:/var/lib/mysql/csv_files/ >> C:\Projects\UDM\Hadoop_aggregation\log.txt
    then i have just include "< C:\Projects\UDM\Hadoop_aggregation\test.txt" after pascp command
    like below:
    pscp -pw Wa5nea2Hag9z C:\Projects\UDM\Hadoop_aggregation\Sessionlog_source_file\application_events_latest.csv < C:\Projects\UDM\Hadoop_aggregation\test.txt [email protected]:/var/lib/mysql/csv_files/ >> C:\Projects\UDM\Hadoop_aggregation\log.txt
    The above command executes fine.
    Thanks
    Azhar Khan

    Hi Azhar.Khan0512,
    Glad to heard that the issue had been solved and thanks for your sharing. It will be very beneficial for other community members who have similar questions.
    If you have any more questions, please feel free to ask.
    Thanks,
    Wendy Fu
    Wendy Fu
    TechNet Community Support

  • Runtime.exec() and batch files

    I am having a problem on Windows 2000 while trying to execute a batch file with the Runtime.exec() method. Basically, the exit value returned from the call to Runtime.exec(), returned specifically by the waitFor() method in the Process class, is always zero, even if the batch file fails miserably. After looking into batch files further, it seems to me that the only way to get the exit value of the commands run in the batch file back to the Runtime.exec() call is to put "EXIT %ERRORLEVEL%" in the batch file. What this actually does is exit the command(cmd) shell that the batch file was running in with the exit code of the last command run. This is all great when calling the batch file with a Runtime.exec() call, but when you run it in a cmd window, the window closes when the batch file completes, because the call to EXIT exits the entire shell. I guess i'm just wondering, am i correct in assuming the exit value returned to the java process is going to be the exit value of the shell in which the batch file is running? I need to have the exit value actually indicate whether the batch file ran successfully or not, and if i have to put in the EXIT %ERRORLEVE% (which exits the cmd shell with the exit value of the last command run), then i'll do that, but if someone knows a better way of doing this, i am all ears. Thanks in advance

    To run any command from java code, the method is
    Runtime.getRuntime().exec( myCommandString )
    Where, myCommandString is something like "/full/pathname/command".
    If the pathname contains spaces (specifically in Windows), e.g. "c:\program files\windows\notepad", then enclose it in quotes within the quoted string. Or pre-tokenize them into elements of an array and call exec(String[] cmd) instead of exec(String cmd).
    From JDK1.3 there are two new overloaded Runtime.exec() methods. These allow you to specify starting directory for the child process.
    Note, there is a gotcha associated with reading output from commands. When the runtime exec's the process, it passes to it 3 streams, for stdin, stdout, and stderr; the out and err are buffered but the buffer size isn't very big. When your process runs, it reads (if needed) from in, and writes to out and err.
    If it doesn't write more than the buffer-size, it can run to completion.
    But if it tries to write more data to one or the other stream than the buffer can hold, the write blocks, and your process hangs, waiting for you to empty the buffer so it can write some more.
    So after the exec call, get the streams, and read from them in a loop until they both hit end-of-stream (don't block on either one, just read whatever is available from each, each loop iteration).
    Then when the streams have ended, call the process.waitFor() method to let it finish dying.
    Now, here is a code snippet how you achieve this.
    String strCommand = "cmd.exe /c " + strCommand;
    // For Solaris / unix it will be
    // String strCommand = "/usr/cobra/sol/runInstaller.sh";
    boolean bWait = true;
    //execute the command
    try
         Runtime r = Runtime.getRuntime();
         Process pr = r.exec(strCommand);
         Process pr = r.exec(callAndArgs);
         BufferedInputStream bis =new BufferedInputStream(pr.getInputStream ());
         int c=0;
         /** Outlet for IO for the process **/
         while (c!=-1)
              c=bis.read();
         /**Now wait for the process to get finished **/
         if(bWait == true)
              pr.waitFor();
              pr.destroy();
    catch(Exception e)
         System.out.println("Could not execute process " + strCommand);
         return(false);

  • When triggering a UBE filter to run an external batch file, it doesn't work, although the rule is triggered.

    UBE filters are not running a batch file as
    an external program. The batch file is located in the postoffice spool
    directory and has the correct permissions.
    <P>
    Change the RUN command to REJECT to check that it was actually triggered.
    <P>
    <B>Background:</B>
    <P>
    Example:
    <P>
    filter.cfg is as follows:
    <P>
    :Test Channel-To "ecxpert@host\.domain\.com" RUN "test.bat"<BR>
    :sendback Channel-To "ecxpert@host\.domain\.com" COPY "pvtest1@host\.domain\.com"
    <P>
    filter.opt is as follows:
    <P>
    # To parse header fields as well as envelope fields remove the comment (#) from the following<BR>
    # line. See Help for more information<BR>
    parseheader:1
    <P>
    test.bat resides in C:\Netscape\Suitespot\MailServer\Spool and is as follows:
    <P>
    date /t >> test.txt
    <P>
    This would be 100% correct for any Unix system, with the addition of a top line
    to the script determining what shell to use. However, with NT, shell type
    definition is not part of a batch file.
    Correcting the UBE filter in filter.cfg to read as follows cures the problem:
    <P>
    :Test Channel-To "ecxpert@host\.domain\.com" RUN "cmd.exe /c test.bat"
    <BR>
    :sendback Channel-To "ecxpert@host\.domain\.com" COPY "pvtest1@host\.domain\.com"
    <P>
    The following also works:
    <P>
    :Test Channel-To "ecxpert@host\.domain\.com" RUN "cmd.exe /c date /t test.txt"<BR>
    :sendback Channel-To "ecxpert@host\.domain\.com" COPY "pvtest1@host\.domain\.com"
    <P>
    The reasoning behind this is that batch files are scripts for CMD.EXE, the
    NT Shell, and therefore cannot be executed directly. CMD.EXE has the /C
    switch to run a following command, or batch file, and exit on completion.
    <P>
    Another solution would be to write an executable program in BASIC or any
    other chosen language to perform the same functions. However, do compile it to an
    executable before trying to use it since, for example, a *.BAS file will
    run in Windows but it means nothing to Messaging Server.

    Look at the documentation of Runtime.exec()
    There are versions of that method that allow you to specify the name of an executable (the name of your batch file) and also an array of strings with environment parameters. I've never used this myself, but it should work like this (lookup the documentation!):
    Runtime.getRuntime().exec("bla.bat", new String[] { "ROOTDIR=" + rootdir });

  • Rman backup fails on windows when using batch file

    Hello Gurus ..
    I am trying to setup incremental backup on my windows OS based server using RMAN command in batch file. When I use batch file in OS scheduler it is working fine, when I am calling same batch file from my LOCAL desktop PC it throws errors as below.
    D:\> \\3.193.211.19\sgdba\rman\bkp_acressit.bat
    D:\>rman catalog rman/******@acressit target / cmd
    file=E:\sgdba\rman\bkp_arch.rcv log E:\sgdba\rman\sit_arch_rman_backup.log
    RMAN-00557: could not open MSGLOG "E:\sgdba\rman\sit_arch_rman_backup.log"
    Argument Value Description
    target quoted-string connect-string for target database
    catalog quoted-string connect-string for recovery catalog
    nocatalog none if specified, then no recovery catalog
    cmdfile quoted-string name of input command file
    log quoted-string name of output message log file
    trace quoted-string name of output debugging message log file
    append none if specified, log is opened in append mode
    debug optional-args activate debugging
    msgno none show RMAN-nnnn prefix for all messages
    send quoted-string send a command to the media manager
    pipe string building block for pipe names
    timeout integer number of seconds to wait for pipe input
    checksyntax none check the command file for syntax errors
    Both single and double quotes (' or ") are accepted for a quoted-string.
    Quotes are not required unless the string contains embedded white-space.
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-00556: could not open CMDFILE "E:\sgdba\rman\bkp_arch.rcv"
    Contents of the batch file and RCV file as below:
    Batch File:
    rman catalog rman/*******@acressit target / cmdfile=E:\sgdba\rman\bkp_arch.rcv log E:\sgdba\rman\sit_arch_rman_backup.log
    RCV File:
    RUN {
    ALLOCATE CHANNEL ch1 TYPE
    DISK FORMAT 'E:\ORA_RMAN_BACKUP\ARCH_%d_%u_%s_%p';
    BACKUP ARCHIVELOG delete input;
    RELEASE CHANNEL ch1;
    EXIT;
    --------------------------xxxxxxxxxxxxxx------------------------
    * on my DB server I am login using my administrator account, on my PC I dont have admin account.
    * I have checked remote execution using local user as well as admin user.
    * I have checked the permission and my local ID & EVERYONE has all permission in that folder.
    Any help will be appriciated.
    Thanks & Regards
    Ashish

    Ashish wrote:
    hi Atil,
    u have guessed it correctly, I came to know that issue later I copy file on local PC and it works fine.
    Now I am working on netbackup server. I want to use the same script to initiate backup from netbackup server. Do you have any idea or any guidelines from you will appriciate.
    Thanks
    AshishAshish,
    Is it "symantec's netbackup"? I do not know that product and if it has an option to enter your own RMAN scripts. On the other hand, it should be able to create irman scripts according to your backup job definition.
    Regards
    Gokhan

  • Command line compiler (rhcl.exe) adds on rogue full pathways into [Merge Files] of .hhp

    I'm using RH 9 and generating chm outputs on my Win 7 64-bit computer.
    I have a core chm help file and several sub chm helps that get merged into it.
    I have a batch file that regularly compiles our help files locally and then copies them into a common local directory. It then copies them up to a mapped network drive where they are picked up by the nightly build of our installer.
    The problem I have, is that the command line compiler (rhcl.exe) is adding on a full pathway for all the sub helps listed in the [Merge Files] section of the core help's .hhp file, causing these problems:
    1) First of all, the pathways are wrong. The pathway it puts on is from the location of my .xpj file of my core help project. The output directory for the compiler is actually sending all the helps to a different local directory.
    2) These need to be relative, and should not have full pathways. The full pathways make it so that when I click on a subhelp TOC entry that subhelp's topic opens up in an entirely different window instead of merged into the core help's window. (See #13 on Peter's helpful site here about the problem with absolute paths: http://www.grainge.org/pages/authoring/rh9/using_rh9.htm)
    Here' what I want it to look like (the good):
    [MERGE FILES]
    pcdmisportable.chm
    pcdmistutor.chm
    pcdmisvision.chm
    pcdmislaser.chm
    pcdmiscmm.chm
    pcdmisUJB.chm
    pcdbasic.chm
    toolkitmodulesvwmp.chm
    pcdmisdci.chm
    toolkitmodules.chm
    pcdmisnc.chm
    pcdmisip.chm
    toolkitmodulesblade.chm
    pcdmisregistry.chm
    pcdmisfixturing.chm
    Here's what it looked like after the command line compile (the bad and the ugly):
    [MERGE FILES]
    d:\hg\pcdmisqa\pcdlrn\help\corehelp\pcdmisportable.chm
    d:\hg\pcdmisqa\pcdlrn\help\corehelp\pcdmistutor.chm
    d:\hg\pcdmisqa\pcdlrn\help\corehelp\pcdmisvision.chm
    d:\hg\pcdmisqa\pcdlrn\help\corehelp\pcdmislaser.chm
    d:\hg\pcdmisqa\pcdlrn\help\corehelp\pcdmiscmm.chm
    d:\hg\pcdmisqa\pcdlrn\help\corehelp\pcdmisUJB.chm
    d:\hg\pcdmisqa\pcdlrn\help\corehelp\pcdbasic.chm
    d:\hg\pcdmisqa\pcdlrn\help\corehelp\toolkitmodulesvwmp.chm
    d:\hg\pcdmisqa\pcdlrn\help\corehelp\pcdmisdci.chm
    d:\hg\pcdmisqa\pcdlrn\help\corehelp\toolkitmodules.chm
    d:\hg\pcdmisqa\pcdlrn\help\corehelp\pcdmisnc.chm
    d:\hg\pcdmisqa\pcdlrn\help\corehelp\pcdmisip.chm
    d:\hg\pcdmisqa\pcdlrn\help\corehelp\toolkitmodulesblade.chm
    d:\hg\pcdmisqa\pcdlrn\help\corehelp\pcdmisregistry.chm
    d:\hg\pcdmisqa\pcdlrn\help\corehelp\pcdmisfixturing.chm
    I've done the following ....
    I've checked my .xpj file and they have relative paths only.
    I've deleted my .cpd file.
    I've removed chm references from my rhbag.apj.
    ... and the hhp file still gets modified with pathways to my core project
    directory tacked on:
    It's strange; because if I compile without the command line, by opening the project and running the generation inside of RH, I don't get the problem where it re-writes the [Merge Files] section with the pathnames.
    Any ideas on where are these rogue full pathways coming from and how I can fix it? Or is it just a bug with the command line version of the compiler that Adobe will need to fix?

    I don't use command line generation but to the best of my knowledge, this has not been fixed.
    Please follow this link.
    http://www.Adobe.com/cfusion/mmform/index.cfm?name=wishform&product=38
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Using JSP to run batch file - command launches excel but doesn't open file

    I have written a jsp on a server which runs a batch file. Every command line in the batch works fine except the following:
    CALL "C:\Program Files\Microsoft Office\Office\Excel.exe" C:\Temp\spreadsheet.xls
    I can see that a command prompt has been opened and an instance of Excel has been created, but it does not open the file.
    I tried running the batch file on its own. It worked fine. I tried putting the java code in the jsp into a java class, that worked okay too. I think it might be to do with the fact that the client is trying lauch the application through the web, but it's missing some information such as paths.
    I am totally running out of ideas.. please help

    I guess if I know JSP stands for Java Server Pages..
    I would most probably know it runs on servers.Yes, you might, but if you were assuming that the path you gave would always lead to an executable running on the client you'd have a problem. It's worth asking.
    I must admit it's probably not the best idea, but if
    you can give me some advice on that, that would be
    greatJSPs shouldn't have code in them that doesn't pertain to view. I'd wrap something like a system call or Runtime.exec in a Java Bean that you can test off-line without the JSP. Then have the JSP instantiate an instance, invoke its method, and display the value that's returned.
    You've read this, of course:
    http://www.javaworld.com/javaworld/jw-12-2000/jw-1229-traps.html
    Everyone who uses Runtime.exec should.
    %

Maybe you are looking for

  • How to Set "RETAIN" provisioning action as default???

    Hi All, I would like to  keep "RETAIN" provisioning action as default in ARQ while "adding" a role. Actually, there is one configuration parameter "2045" which will make it possible. But this is ONLY applicable to the situation where a role is select

  • I set a poster frame in the timeline, but the thmbnail in the menu does not update. Why?

    I have used poster frames correctly in other projects before, also in encore cs6. In this project, it's not working. haveing had it working before, i'm sure its nothing to do with the OS, or media type, since that was the same in my previous projects

  • Tracking a person

    I have footage of a person with other people. I want to take the person, and get rid of his background. He moves from left to right. I used the Spline Tool, and created a shape. How do I have Motion continue to follow him as he moves?

  • Flash movie using XML

    On the development version of a site, I have created a flash movie that uses an XML file that refers to the filenames of images and their respective captions that are then loaded into the flash movie. The images are loaded 2 at a time, into movie con

  • Premiere Pro process won't end in Windows 7.

    When I exit Premiere Pro CS6, the process continues to run and I can't restart the program until I go into the task manager and end the process.  Any ideas what's causing that?