Compressor locked up unable to start new jobs

I ran a batch in compressor and I think I had a brown-out that dropped one of the drives for a second and locked it up. I tried canceling the job but it never did so even though the batch viewer kept saying it was.
I found a program called "Compressor Repair" that cleared it out, but starting a new job, it simply says "Processing" and it never actually begins the job. I can't seem to find out how to clear this up. Any ideas?
Thanks.
MC

Try going to Compressor > Reset Background Processing.

Similar Messages

  • Unable to start print job. Is printer availble? CS3 loaded on Windows 7 64bit

    Hello to everyone:
    I have a network of PC's. As part of their basic install I load on CS3. I have started to incorporate Windows 7 and found the following problem on all of them but not on any of the XP's.
    When my users try to print from Acrobat 8 they receive the following message: "Unable to start print job. I there a printer?".
    This happens when they try to print to only one of our printers, the HP designjet 1055. I have both 32bit and 64bit drivers installed on our print server.
    I did read a post somewhere that the common files in program files might be playing up because there are 2 program files location on windows 7 - but I didn't get any further on that one.
    I'm sure there's a work around for this issue, there has been for the 101 others.
    Does anyone have any ideas?

    Yes, we have AA8 here that comes with CS3 and for the most part it seem to be working fine. Sure I've had the odd compatibility glitch with getting the 32 app to work on win7 64 but I am stumped with this one printer. I have 7 other normal network printers (not large format) and I can print to those through AA8 fine.
    If windows can see the HP printer and other apps can print to the HP printer but AA8 can't and at the same time AA8 can see and print to all the other printers it makes me think that this is ether a driver compatibility issue or some programmatic issue. Perhaps I need to point something in the registry to something else?

  • Unable To Start New Batch

    Hi guys,
    I just recently re-installed Final Cut Studio 2 and now I can't seem to send anything to Compressor from FCP or even start a new batch by launching Compressor itself. Plus, when Compressor is initially launched all the windows are not present; I have to open them up one by one myself.
    Not too sure how this happened and tried re-installing for the 2nd time and still no luck.
    Help!

    Hi Amir,
    Did you fix this problem? Because I'm having the same problem with Compressor.
    Please let me know.
    Thanks!

  • Calling Function Module starting new job

    Hallo !
    I'm calling a 'Z' function module from a class method.
    I want the calling will start immediately a new job.
    (That I will see in SM37)
    (Like we can do with submit statement)
    Is there a way to this ?
    (I need the function will start a job - because
    I want to save the function log in the Job list.)
    Thanks in advance,
      N.S.

    step : 1
    Sample Program: Creating a Job with JOB_OPEN
    <b>explanation :</b>
    Use JOB_OPEN to create a background job. The function module returns the unique ID number which, together with the job name, is required for identifying the job.
    Once you have "opened" a job, you can add job steps to it with JOB_SUBMIT and submit the job for processing with JOB_CLOSE.
    Create your job with JOB_OPEN. The module returns a unique job
    number. Together with the jobname, this number identifies the
    job. Other parameters are available, but are not required.
    JOBNAME = 'Freely selectable name for the job(s) you create'.
    CALL FUNCTION 'JOB_OPEN'
    EXPORTING
    JOBNAME = JOBNAME
    IMPORTING
    JOBCOUNT = JOBNUMBER
    EXCEPTIONS
    CANT_CREATE_JOB = 01
    INVALID_JOB_DATA = 02
    JOBNAME_MISSING = 03
    OTHERS = 99.
    IF SY-SUBRC > 0.
    <Error processing>
    ENDIF.
    step 2;
    Sample Program: Adding an ABAP Job Step
    <b>explanation :</b>
    Use JOB_SUBMIT to add a job step to a background job that you have opened with JOB_OPEN.
    A job step is an independent unit of work in a job, the execution of an ABAP or external program. Each job step can have its own authorizations user and printer/optical archiving specifications.
    Add a job step: ABAP program
    CALL FUNCTION 'JOB_SUBMIT'
    EXPORTING
    AUTHCKNAM = SY-UNAME " Runtime authorizations
    " user
    JOBCOUNT = JOBNUMBER " Value from JOB_OPEN
    JOBNAME = JOBNAME " Value from JOB_OPEN
    REPORT = 'REPORT' " Report to be run
    VARIANT = 'VARIANT' " Variant to use with
    " report
    PRIPARAMS = USER_PRINT_PARAMS " User printing options
    ARCPARAMS = USER_ARC_PARAMS " User archiving options
    " Both sets of options
    " come from
    " GET_PRINT_PARAMETERS
    EXCEPTIONS
    BAD_PRIPARAMS = 01
    INVALID_JOBDATA = 02
    JOBNAME_MISSING = 03
    JOB_NOTEX = 04
    JOB_SUBMIT_FAILED = 05
    LOCK_FAILED = 06
    PROGRAM_MISSING = 07
    PROG_ABAP_AND_EXTPG_SET = 08
    OTHERS = 99.
    step 3
    Sample Program: Immediate Start with JOB_CLOSE
    <b>explanation :</b>
    Use JOB_CLOSE to pass a background job to the background processing system to be run. Once you have "closed" a job, you can no longer add job steps to it or change job/job step specifications.
    The function module returns an indicator as to whether the job was automatically released or not. A job is automatically released to run only if the user who scheduled the job has RELE release authorization for the authorization object Operations on background jobs.
    A job step is an independent unit of work in a job, the execution of an ABAP or external program. Each job step can have its own authorizations user and printer/optical archiving specifications.
    Submit job for processing: immediate start
    CALL FUNCTION 'JOB_CLOSE'
    EXPORTING
    JOBCOUNT = JOBNUMBER " Job identification: number
    JOBNAME = JOBNAME " and name.
    STRTIMMED = 'X' " Schedules the job for
    " immediate start. The job
    " is started immediately
    " only if the user has the
    " RELE authorization to
    " release a job to run.
    IMPORTING
    JOB_WAS_RELEASED = JOB_RELEASED " If user has authorization
    " to release jobs to run, job
    " is automatically released
    " when it is scheduled. This
    " field is set to 'x' if the
    " job has been released.
    " Otherwise, the job is sche-
    " duled but must be released
    " by an administrator before
    " it can be started.
    EXCEPTIONS
    CANT_START_IMMEDIATE No longer used. Replaced by IMPORTING
    parameter JOB_WAS_RELEASED.
    INVALID_STARTDATE = 01
    JOBNAME_MISSING = 02
    JOB_CLOSE_FAILED = 03
    JOB_NOSTEPS = 04
    JOB_NOTEX = 05
    LOCK_FAILED = 06
    OTHERS = 99.
    IF SY-SUBRC > 0.
    <Error processing>
    ENDIF.
    in step 1  we will create a job with name etc..
    in step 2 we will assign work to this job
    step 3 : we will close the job inorder make it scheduled .
    Regards
    srikanth
    added descriptions to each steps

  • Blank Screen with cursor after login Windows 7, Unable to start new tasks

    My problem is similar to the well know Windows 7 Black Screen as referenced by Prevx, though different. When I boot my Windows 7 computer, the login screen appears as always. Following entering the password for default user,
    the screen will give the impression of login, but the final result is a plain black screen with the cursor only. The black screen appears indefinitely and the Windows GUI never appears. The only available option from booting in normal mode with this is Ctrl-Alt-Del
    (Task Manager). From analyzing another computer with Windows 7 Professional, my Task Manager is missing the following user processes: dwm.exe, explorer.exe, and taskhost.exe. Additionally, it is missing the following system processes (possibly irrelevant):
    spoolsv.exe and wmiprvse.exe.
    When I attempt to start a new process using Windows Task Manager, an error message will appear saying “Windows Task Manager has stopped working” and forces you to close Windows Task Manager. This includes starting
    any process such as cmd or explorer.
    I attempted to boot into safe mode. 
    The result was the same as above. Then I attempted booting into safe mode with command prompt. This showed some hope. Following authentification from the login screen, the command prompt appears with the same blank screen with a cursor behind it. Initially
    I attempted to run msconfig.msc to run a clean startup. System Configuration Utilities opens briefly then displays the error same as above. “System Configuration Utility has stopped working” and again forces the program to close. Then I tried to
    open regedit. This works with no error messages! So I have access to the registry, but have no idea what I should modify to get my computer running normally.
    Things I have tried:
    1)   
    Restoring to last know good configuration. (No result)
    2)   
    Repairing Windows configuration. (No result)
    3)   
    Scanning the drive 3 separate times for viruses with both Avast and Symantec. (No viruses detected)
    4)   
    Repairing the REG_SZ value HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\Winlogon\Shell as proposed in
    http://social.technet.microsoft.com/Forums/en/w7itprogeneral/thread/5b94b775-992e-4f48-b3ff-c89b3cf45e82
    5)   
    Executing Prevx’s fix file as proposed in
    http://www.prevx.com/blog/140/Black-Screen-woes-could-affect-millions-on-Windows--Vista-and-XP.html
    Any ideas are much appreciated.
    Thanks,
    John

    Same problem  I've found a solution.
    #1 Hit fastly 5 time the left shitf button on your keyboard.
    A windows will appaers to know if you want to caps lock. Keep it open
    #2 Alt-CTRL-Del
      You have know your desktop
    #3 Go on add-remove programme
    3a) Go on windows add-remove
    3b) Remove internet explorer
    ok-ok-ok - untill it's remove and ask to restart
    #4 No more problem. You have to go on the net with chrome or firefox.

  • Unable to start new project in Premiere elements 10

    I have had elements 10 (both photoshop and premiere) downloaded for a while from a multi-pack and have been using photoshop with no problems at all.  Tried to use premiere and start a new project from the welcome screen, but it starts loading, gets to 'Loading Importer Quicktime.prm' then does nothing.  I can open the organizer, but nothing else.  Tried opening a new project from the organizer, but the same problem.  I have uninstalled, reinstalled from disc, and checked quicktime, flash etc are all up to date.  Any ideas?

    What operating system are you using?
    If Windows, have you manually gone to Windows Update and ensured you have the non-critical updates (which dont' download automatically)?
    How fast is your processor, how much RAM do you have and how much free, clean, defragmented space is on your hard drive?

  • Unable to start print job.  Is printer available?

    I recently upgraded to Adobe Acrobat 8.1.6.  My printer, which is a Canon  Artisan 810, works fine with printing all sorts of other documents  through different programs.  I know the problem is not with the printer,  and my system recognizes it just fine.  I just can't print pdf files when I  do it through my adobe reader.  Does anyone have an suggestions how to  get pdf files to print through the reader?

    Your question should really be directed to the Reader forum. However, do you see your printer in the print menu of Reader. If you are not using the print menu, then you need to indicate exactly what steps you are trying to take to print. Based on your post, I have no idea how you are trying to print for sure.

  • Laptop DV7-6b51ea - Unable to Start -Caps Lock lights and F12 key on Keyboard blinking

    I bought this Laptop Laptop DV7-6b51ea around 9 month ago - and every time I press start key its Unable to Start - and the Caps Lock lights and F12 key on Keyboard blinking. so I have to restart couple of time befor I could see anything on screen.
    I searched in forums and got different reviews some said its memory problem some said its serious motherboard and graphics issue.. please Help !!!
    please advice its a brand new Buy from HP UK store

    Hi,
    Try a Hard Reset as follows.
    Shut down the notebook, unplug the AC Adapter and then remove the battery.  Hold  down the Power button for 30 seconds.  Re-insert the battery, plug in the AC Adapter and see if the notebook will start.
    If the above fails to help, as your notebook is still under warranty, contact HP and arrange to have it repaired - you can check your warranty status Here.
     If you live in the UK, contact HP starting Here.
    If you are in another part of the world, start Here.
    Regards,
    DP-K
    ****Click the White thumb to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    ****I don't work for HP****
    Microsoft MVP - Windows Experience

  • Every time I update LR to a new version I seem to need a patch to make it work..... once again here I am SOS! I've just update LR to the 5.7 version and It wont let me start it: The application was unable to start correctly (0xc000007b).

    Every time I update LR to a new version I seem to need a patch to make it work..... once again here I am SOS! I've just update LR to the 5.7 version and It wont let me start it: The application was unable to start correctly (0xc000007b).

    Your system is missing a couple DLLs that LR needs, but the fix at Adobe is to copy them to the LR folder which gets replaced for each install, so you have to redo it after each LR install.  It would be worth documenting the process and saving the DLLs so you don’t have to ask about it each time:
    http://helpx.adobe.com/lightroom/kb/error-unable-start-correctly-0xc00007b.html
    You might also use the AIO210 program to add them as detailed in this YouTube video—maybe this is a more permanent fix, but since the files are from media-fire be very careful about what you do so as not to install a virus on your computer. 
    I’d scan the downloaded ZIP you download with whatever virus and internet security software you have and don’t be fooled by extraneous popups you might see during the download process.  I was able to download the aio210.zip after authorizing one Captcha window and closed at least one bogus popup trying to get me to install other software.  I also scanned the downloaded zip with two virus scanners and both said it was clean.  Here is the YouTube video, where the link to the ZIP to download is in the description once you expand it:
    https://www.youtube.com/watch?v=vlT0N2CX50g

  • Service template problem - Unable to perform the job because one or more of the selected objects are locked by another job - ID 2606

    Hello,
    I’ve finally managed to deploy my first guest cluster with a shared VHDX using a service template. 
    So, I now want to try and update my service template.  However, whenever I try to do anything with it, in the services section, I receive the error:
    Unable to perform the job because one or more of the selected objects are locked by another job.  To find out which job is locking the object, in the jobs view, group by status, and find the running or cancelling job for the object.  ID 2606
    Well I tried that and there doesn’t seem to be a job locking the object.  Both the cluster nodes appear to be up and running, and I can’t see a problem with it at all.  I tried running the following query in SQL:
    SELECT * FROM [VirtualManagerDB].[dbo].[tbl_VMM_Lock] where TaskID='Task_GUID'
    but all this gives me is an error that says - conversion failed when converting from a character string to uniqueidentifier msg 8169, level 16, State 2, Line 1
    I'm no SQL expert as you can probably tell, but I'd prefer not to deploy another service template in case this issue occurs again.
    Can anyone help?

    No one else had this?

  • Unable to remove a host from VMM - Error (2606) Unable to perform the job because one or more of the selected objects are locked by another job.

    I am unable to remove a host from my Virtual Machine Manager 2012 R2. I receive the following error:
    Error (2606)
    Unable to perform the job because one or more of the selected objects are locked by another job.
    Recommended Action
    To find out which job is locking the object, in the Jobs view, group by Status, and find the running or canceling job for the object. When the job is complete, try again.
    I have already tried running the following command in SQL Server Management Studio
    SELECT * FROM [VirtualManagerDB].[dbo].[tbl_VMM_Lock] where TaskID='Task_GUID'
    I received this error back:
    Msg 8169, Level 16, State 2, Line 1
    Conversion failed when converting from a character string to uniqueidentifier.
    I have also tried rebooting both the host and the Virtual Machine Manager Server.  After rebooting them both, I still receive the same error when trying to remove the host.
    Here are my server details
    VMM Server OS = Windows 2012 Standard
    VMM Version = 2012 R2 3.2.7510.0
    Host OS = Windows 2012 R2 Datacenter
    Host Agent Version = 3.2.75.10.0
    SQL Server OS = Windows 2012 Datacenter
    SQL Version = 2012 SP 1 (11.0.3000.0)

    Hi there,
    How many hosts are you managing with your VMM server?
    The locking job might be the background host refresher job. Did you see any jobs in the jobs view, when the host removal job failed?
    If there is no active jobs in the jobs view when this host removal job fails, can you please turn on the VMM tracing, retry the host removal, and paste back the traces for the failed job (search for exception and paste the whole stack)?
    Thanks!
    Cheng

  • Printer is overprinting old jobs on top of new jobs.  Using a Mac with OSx and a HP photosmart for over a year.  this just started happening.

    Printer is overprinting old jobs on top of new jobs.  Using a Mac with OSx and a HP photosmart for over a year.  this just started happening.

    RReset printing system again and the restart in Safe Mode . This will clear some caches,to do this hold down the Shift key when you hear the startup tone until a progress bar appears, after it has fully booted restart normally and add the printer.

  • Parent not finished until children complete - stops new job from starting

    Is there anyway that we can 'de-link' 'disassocaite' - some method that we can start a new job again - even though children of a previous job are still active.
    This is causing quite a problem in our system whereby we need to start another background job of the same but the status is still active due to children...

    Thank you Gerben, more useful insights.
    I have had a respone from Simon whom is technical resource for CPS.
    "What Gerben was suggesting was that you simply have multiple scheduled occurences of the same job, which wouldn't really work either since you could end up with at least two jobs running at the same time. e.g while you could schedule two jobs to run every ten minutes but stagger the start time so they are 5 mins apart you are still contrained by how long the whole process takes before another is scheduled.  If you add more jobs then the frequency of the jobs are likely to coincide with other jobs which could lead to duplicate postings (something that has already happened).
    Regards,
    Simon"
    Edited by: Steve Coupland on Dec 2, 2010 7:38 PM
    This question has now been answered...It looks very promising as a fix on the CPS side - as opposed to having to code an fix on the SAP end - which is the best solution for this particular problem. Thanks to all whom contributed.
    Simon does point out an important fact that you actually will have multiple jobs running at the same time. But that is what you are looking for: you want to run the next job before the previous childs are finished.
    To disable the fact that CPS waits for child jobs, you need to set (you may need to add it first) the parameter WAIT_FOR_CHILD_JOBS on your copy of SAP_AbapRun to "N".
    So you can choose for each job if you want it to wait for child jobs. As Simon pointed out, for most cases you do, but in your particular situation you may want to deviate from the default behavior, and that can be done using the above mentioned parameter.
    Hope this helps,
    Anton Goselink
    Principal Consultant
    Redwood Software

  • Unable to start and create new listener

    hiii everybody,
    I m unable to start listener in win 7 (11g database) using services.msc bcoz it is showing "status as stopped" only and also unable to create a new listener using net configuration assistant which is giving error-"could not create listener".plz, help and ur help apppreciated.thanks.
    os win 7 64 bits
    db 11.2.0.1
    listerner.ora
    # listener.ora Network Configuration File: C:\app\oracle\product\11.2.0\dbhome_2\network\admin\listener.ora
    # Generated by Oracle configuration tools.
    ADR_BASE_orcl = C:\app\oracle
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = CLRExtProc)
    (ORACLE_HOME = C:\app\oracle\product\11.2.0\dbhome_2)
    (PROGRAM = extproc)
    (ENVS = "EXTPROC_DLLS=ONLY:C:\app\oracle\product\11.2.0\dbhome_2\bin\oraclr11.dll")
    orcl =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))
    (ADDRESS = (PROTOCOL = TCP)(HOST = hostname)(PORT = 1521))
    ADR_BASE_LISTENER = C:\app\oracle
    Edited by: 938946 on Jan 23, 2013 4:56 AM

    when i run lsnrctl start it is giving tns protocol adapter error and i m unable to start listener from services.msc and unable to create new listener also using net configuration assistant.where m i wrong?
    # listener.ora Network Configuration File: C:\app\oracle\product\11.2.0\dbhome_2\network\admin\listener.ora
    # Generated by Oracle configuration tools.
    ADR_BASE_orcl = C:\app\oracle
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = CLRExtProc)
    (ORACLE_HOME = C:\app\oracle\product\11.2.0\dbhome_2)
    (PROGRAM = extproc)
    (ENVS = "EXTPROC_DLLS=ONLY:C:\app\oracle\product\11.2.0\dbhome_2\bin\oraclr11.dll")
    (SID_DESC =
    (SID_NAME = orcl)
    (ORACLE_HOME = C:\app\oracle\product\11.2.0\dbhome_2)
    (SERVICE_NAME = orcl.mbs.ae)
    (SID=orcl)
    orcl =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.7.86)(PORT = 1521))
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))
    (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.7.86)(PORT = 1521))
    ADR_BASE_LISTENER = C:\app\oracle
    SID_LIST_orcl =
    (SID_LIST =
    (SID_DESC =
    (GLOBAL_DBNAME = orcl.mbs.ae)
    (SID_NAME = orcl)
    Edited by: 938946 on Jan 23, 2013 5:12 AM

  • [SOLVED] KDE Start New Session doesn't work from lock screen

    On my laptop, if I lock the KDE 4 session and then click Switch Users > Start New Session, I get a login screen and can log in as a different user. All good.
    If I do the same thing on my desktop, it doesn't work. When I click Switch Users > Start New Session, it doesn't start a new session or switch VTs. Instead, I just get reprompted for the existing user's password.
    Both machines are running fully updated Arch. Anyone know how I can troubleshoot this? The only difference I can think of between the laptop and desktop is that the desktop has nomodeset specified as a kernel boot parameter. (It won't boot without it.) Could this be interfering with automatic VT switching? Manual VT switching (e.g. Ctrl+Alt+F1) works fine.
    Last edited by Rob_H (2014-12-27 14:28:06)

    Little more detail. Checking the journal, I can see Xorg is failing to start on display :1. If I compare Xorg.0.log with Xorg.1.log, it appears that it's not finding the proprietary NVIDIA driver in the second case. Don't know why it would be any different for :1, though. See?
    Xorg.0.log (good):
    [ 10.219] (II) LoadModule: "glx"
    [ 10.220] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 10.293] (II) Module glx: vendor="NVIDIA Corporation"
    [ 10.293] compiled for 4.0.2, module version = 1.0.0
    [ 10.293] Module class: X.Org Server Extension
    [ 10.294] (II) NVIDIA GLX Module 343.36 Mon Dec 1 15:50:02 PST 2014
    [ 10.294] (II) Applying OutputClass "nvidia" to /dev/dri/card0
    [ 10.294] loading driver: nvidia
    [ 10.294] (==) Matched nvidia as autoconfigured driver 0
    [ 10.294] (==) Matched nouveau as autoconfigured driver 1
    [ 10.294] (==) Matched nv as autoconfigured driver 2
    [ 10.294] (==) Matched nouveau as autoconfigured driver 3
    [ 10.294] (==) Matched nv as autoconfigured driver 4
    [ 10.294] (==) Matched modesetting as autoconfigured driver 5
    [ 10.294] (==) Matched fbdev as autoconfigured driver 6
    [ 10.294] (==) Matched vesa as autoconfigured driver 7
    [ 10.294] (==) Assigned the driver to the xf86ConfigLayout
    [ 10.294] (II) LoadModule: "nvidia"
    [ 10.294] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
    [ 10.300] (II) Module nvidia: vendor="NVIDIA Corporation"
    [ 10.300] compiled for 4.0.2, module version = 1.0.0
    [ 10.300] Module class: X.Org Video Driver
    Xorg.1.log (bad):
    [ 2153.825] (II) LoadModule: "glx"
    [ 2153.825] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 2153.833] (II) Module glx: vendor="NVIDIA Corporation"
    [ 2153.833] compiled for 4.0.2, module version = 1.0.0
    [ 2153.833] Module class: X.Org Server Extension
    [ 2153.833] (II) NVIDIA GLX Module 343.36 Mon Dec 1 15:50:02 PST 2014
    [ 2153.833] (==) Matched nouveau as autoconfigured driver 0
    [ 2153.833] (==) Matched nv as autoconfigured driver 1
    [ 2153.833] (==) Matched modesetting as autoconfigured driver 2
    [ 2153.833] (==) Matched fbdev as autoconfigured driver 3
    [ 2153.833] (==) Matched vesa as autoconfigured driver 4
    [ 2153.833] (==) Assigned the driver to the xf86ConfigLayout
    [ 2153.833] (II) LoadModule: "nouveau"
    [ 2153.833] (WW) Warning, couldn't open module nouveau
    Any idea what would cause it to work for :0 but fail for :1?

Maybe you are looking for

  • Motion crashes on open: AFP Connection Status window appears

    I am one of the overly enthusiastic fools who went to the Intel Mac Pro too early--before even Apple's FCP Studio ran reliably on it. (And apparently it doesn't even now.) But I digress before I begin. Here's my challenge: Motion--and only Motion--cr

  • The screen is dark and i can barely see the icons.

    it seems like the brightness is all the way down but it is not. i've reset the ipod several times to no avail. can it be easily repaired at a good price or should i get another one?

  • How to find out Forms Server version in pl/sql procedure

    How can I get the version number and/or patchset of the Forms Server through which my pl/sql procedure has been called? Thanks, Attila

  • Request variable not overriding session variable in report filter

    I have a dashboard edit prompt that saves value into a request variable with same name as session variable. The session variable has "enable any user to set the value". I have a filter in the report that has been converted to sql where the transactio

  • Inserting Multipage PDF for view only-

    Help! I want to insert a three page PDF for view only.  I do not want this to open in a new window, I do not want this to download, I just want visitors to view the entire three pages vertically, or scrollable. When I insert the PDF I only get the fi