Custom command set problems

Hi,
I am having some problems with my custom Avid based command set.
I have had the "A" and "S" keys assigned to "Go to prev/next edit" to simulate Avid but want to change it to "Up" and "Down" which does pretty much the same in the timeline but allows me to go to next/previous clip in the list view as well.
The problem is that every time I try to assign the "Down" command to the "S" key the .commandset file gets corrupt and the next time I start fcpx it freezes at "Restoring the window layout".
I can assign it if I make a completely new command set.
Can anyone see if they can recreate this? My commandset file can be downloaded here: http://dl.dropbox.com/u/6196177/Avid.commandset
I have a norwegian keyboard if that matters...
Thanks!

OK, then it has do be something specific with my command set. I've recreated my problem several times: Start fcpx, works fine, quit, take backup of preferences file. Start fcpx again, works fine, switch to custom command set, works fine, quit, restart of app fails... revert to backed up preferences file, works fine...
What could it be in my command set then? I've tried recreating the setup I use in Avid. The thing is that it works just fine until I quit and restart the app... Really annoying!
Thanks for your answer though!

Similar Messages

  • Command Sets not working on ACS 5.1

    I'm running ACS 5-1-0-44-3.
    I have everything running properly on ACS 5.1.  I'd like to implement command sets for selected users and groups.  Under Access Policies -> Device Admin-> Authorization I have Command Sets selected.  The cisco provided is DenyAllCommands.  I have this command set running on all groups and every groups is still able to issue any command they wish.  I've also created a "show_only" command set that I've issued one group and they are still able to do conf t or any other command.
    Am I missing something?
    Do you need to reference the command set name under the shell profiles?
    Its my understanding that all you have to do is reference it in "Authorization" in the rules under Device Admin.
    I can understand a custom command set not working because of user error but DenyAllCommands should work.
    Anyone have any ideas?
    I have already re-patched the ACS
    Stopped and started services.
    And it seems like Command Sets is the only not referenced in the logs

    I do it a lot 
    could you paste screnshot of your command set?
    I've recently met another issue,
    with my command set definition as below (as you can see its very simple):
    almost every show is blocked (as suspected) but not "show run" (which is strange for me)

  • Custom command problems on Mac OS X

    I am seeing a problem with custom context commands in our custom connector that is also reproducible with the sample FTP connector shipped with the SDK.  I am using Adobe Drive 3.2.0.41 on Mac OS X 10.8.2
    For my test I am connecting to a FTP server and attempting to run the "File Properties" command from a file's Adobe Drive menu in Finder.  When I first start Drive and connect, the command works and the "File Properties" dialog appears as expected.  However, if I disconnect, reconnect, then browse back to the file and attempt the command again, the File Properties dialog does not appear.  The Finder window does kind of "grey out" as if another dialog is about to be shown, but it never is. I don't see any kind of error messages in the CS5ServiceManager logs. 
    If I disconnect, close Drive, kill the AdobeDriveCS5 and CS5ServiceManager processes with Activity Monitor, and then restart Drive and reconnect, the custom commands work again.
    Has anyone else experienced these kinds of problems with custom commands on Mac OS after a disconnect/reconnect cycle?
    Thanks,
    Brian

    Our only other environment we could set up was on Mac OS 10.7.5, and we could not reproduce the issue.  Based on that it would appear to be something new with Mac OS 10.8.

  • Resetting the id of dynamically generated JSF custom command link

    I have a java faces page which displays data from an arraylist.
    This list is populated when user inputs data in the input text field and clicks "Add Group" button.
    The arralylist consist of another arraylist within the former.
    I have created a custom command link for the former arraylist.
    As an user can add data to the arraylist so can he remove it from the arraylist.
    The command link has a method binding "closeTask" which is invoked when command link is clicked.
    This action removes the clicked element from the arraylist and displays the fresh list.
    The key field from the bean in the former arraylist is set in request, and is retrieved in the "closeTask" method to be assigned to the command link output text id (i.e. it identifies the element that is to be deleted from the arraylist).
    This functionality does not work as expected, i.e. command link component is not created/rendered during deletion as it is created while addition.
    As a result eventhough the element is removed from the arraylist, the id corresponding to the fresh arraylist is not refreshed and for further actions correct id is not passed and the deletion function does not work.
    How can I have resolve this problem?
    The sample code is included.
    Thanks in advance.
    Java Faces Code:
    <%
    FacesContext facesContext = FacesContext.getCurrentInstance();
    Application app = facesContext.getApplication();
    Bkbean bean = (Bkbean)app.createValueBinding("#{bckbean}").getValue(facesContext);
    List aList = bean.getAList();
    if(aList!=null && aList.size()>0) {                                                            
    for(int i=0; i<aList.size(); i++) {
    ABean abean = (ABean) aList.get(i);
    int keyValue = abean.getKey();
    request.setAttribute("key", String.valueOf(keyValue));
    %>
    <TR>
    <TD width="90%">
    <%=abean.getCtg()%>
    </TD>
    <TD width="9%">
    <%=abean.getKey()%>
    </TD>
    <TD width="1%" align="right" valign="top">
    <h:commandLink binding="#{bckbean.commandLnk}" styleClass="commandLink">
    </h:commandLink>
    </TD>
    </TR>
    <%
    List dList = abean.getDList();
    if(dList!=null) {
    for(int j=0; j<dList.size(); j++) {
    String tData = (String) dList.get(j);
    %>
    <TR>
    <TD width="90%">
    <%=tData%>
    </TD>
    <TD width="10%" colspan="2">
    </TD>
    </TR>
    <%
    }%>
    <%
    %>
    <TR>
    <TD align="right">
    <h:inputText id="inputtxt001" value="#{bckbean.val}"></h:inputText>
    </TD>
    <TD align="left" colspan="2">
    <hx:commandExButton type="submit" value=" Add Group " styleClass="commandExButton" id="submitbtn001" action="#{bckbean.addVal}">
    </hx:commandExButton>
    </TD>
    </TR>
    Backing Bean Code:
    public void closeTask(ActionEvent event) {
    String key = "";
    UIOutput lnkTxt = null;
    UICommand comp = (UICommand)event.getComponent();
    if(comp.getChildren() != null && comp.getChildren().size() >0) {
    for (int i=0; i<comp.getChildren().size(); i++) {
    lnkTxt = (UIOutput)comp.getChildren().get(i);
    key = lnkTxt.getId();
    int selectedKey = (new Integer(key.substring(2))).intValue();
    if(aList!=null) {
    for(int i=0; i<aList.size(); i++) {
    ABean abean = (ABean) aList.get(i);
    if(abean.getKey()==selectedKey) {                                             
    aList.remove(i);
    break;
    public UICommand getCommandLnk() {
    String id = (String) request.getAttribute("key");
    UICommand commandLnk = new UICommand();
    commandLnk.setId("key" + id);
    UIOutput outTxt = new UIOutput();
    outTxt.setId("id"+id);
    outTxt.setValue("X");
    commandLnk.getChildren().add(outTxt);
    MethodBinding mb = app.createMethodBinding("#{bckbean.closeTask}", new Class[]{ActionEvent.class});
    commandLnk.setActionListener(mb);
    commandLnk.setImmediate(true);
    return commandLnk;
    }

    You cud define jsObjectNeeded and onClientClick properties for the htlm component and catch the event to find itz ID.
    This might help you:
    Accessing HTMLB form values from JAVASCRIPT
    To give you an idea abt how the code works:
    Portal: Bug in the  radio button's javascript api
    Regards,
    N.
    Plz click a star if it helped.

  • Custom Command - Invoke a link file

    Hi All,
    I was able to write custom command that could invoke an exe file in the device. The exe file had to be present in the Windows folder (or) root folder (or) Oracle Lite installation folder.
    Is the only file that could be invoked by System.execute method are "exe" files. Can I invoke any link or batch files in Windows Mobile, so that would be helpful in invoking my java programs instead of having to invoke exe.
    Thanks,
    Aravind.

    We are able to launch a .bat file using the System.execute("cmd /C \test.bat") call from a customize command.
    Though cmd.exe is not available in Windows Mobile 6 prof by default. It can be installed from the windows mobile developer power toys.
    We need to do a registry tweak to get it working.
    We were trying to launch a batch file from custom command because we want to launch a java program whenever a custom command is sent from the mobile server.
    We are also successful in launching a java program directly without using cmd.exe as following:
    <c:set var="j9_home" value="\\IBM\\WECE\\WM60\\PRO\\ARM\\FOUN11\\bin\\"/>
    <c:set value="${System.Execute (j9_home+"j9w \Test\HelloWorld")}"/>
    This works fine and it launches the HelloWorld java program on windows mobile 6 prof emulator.
    The problem is that it does not work if the j9_home point to a folder path which contains spaces
    ex <c:set var="j9_home" value="\\Program Files\\IBM\\WECE\\WM60\\PRO\\ARM\\FOUN11\\bin\\"/>
    Is there is a workaround available to get it working ?
    We have to re-install the j9 to a folder whose folder path does not contain spaces to get it working.

  • Deployment using Custom Commands

    Howdy all,
    I'm trying to create customized shortcuts to the Test Executive User Interface other than the default one(s) available to the Deployment utility. I found a way to do this without having to download a separate application or add-on using the VBScript capabilities in Windows/XP. The problem I'm having is that the deployment utility will execute the batch file, but returns an exit code of 1. when I run the batch file manually, it works just fine. I'm using TestStand 3.5 and a modified version of the Deployment utility that doesn't update sequence paths, but that should not have an effect on this.
    My batch file consists of the following lines:
    ECHO OFF
    ECHO Creating a shortcut using VBScript
    PAUSE
    CreateShortcut.vbs
    ECHO Shortcut creation complete...
    PAUSE
    My VBScript file CreateShortcut.vbs consists of the following lines:
    Set oWS = WScript.CreateObject("WScript.Shell")
    strMyPath = oWS.SpecialFolders("AllUsersStartMenu")
    sLinkFile = strMyPath & "\My Test Executive.LNK"
    Set oLink = oWS.CreateShortcut(sLinkFile)
    oLink.TargetPath = "C:\My Programs\Bin\TestExec.EXE"
    oLink.Arguments = "-useExisting"
    oLink.Description = "My Test Executive (Only)"
    ' oLink.HotKey = ""
    ' oLink.IconLocation = "C:\My Programs\Bin\TestExec.EXE, 2"
    ' oLink.WindowStyle = "1"
    ' oLink.WorkingDirectory = "C:\My Programs\Sequences"
    oLink.Save
    When I run this using the deployment tool I get the following message when the batch file tries to execute the CreateShortcut.vbs file:
    'CreateShortcut.vbs' is not recognized as an internal or external command, operable program or batch file.
    Can anyone explain to me why this doesn't want to work in the Deployment tool, but it does work if I run it manually?
    Thanks,
    -Jack

    Antonio,
    Your suggestion helped me figure out what is going on. I believe there may be a feature/bug in the way the Deployment utility runs commands. I'm having the files installed in the Temp directory Installation Destination and using the <Temp> Command Directory in the Custom Commands to tell it where the files are to execute. This temp directory path resolves to "C:\Documents and Settings\<User Account>\Local Settings\Temp\". I neglected to add the path to the CreateShortcut.vbs file because I assumed that the batch file could find it since it's in the same directory as the batch file. But for some reason, it is looking for the file on the Installer drive and path for Setup.exe (see attached file), instead of the <Temp> path. This may be default windows behavior, but it seems odd that this is what happens.
    I was able to get this to work using the "%USERPROFILE%\Local Settings\Temp\CreateShortcut.vbs" in the batch file.
    Thanks for getting me going down the right road!
    -Jack
    Attachments:
    MessagePopup.jpg ‏12 KB

  • ACS 5.3 Shell Command Set

    Hi all,
    Currently i deploy a ACS 5.3 at customer site. The issue i face currently is some command sets no able to deny. Example like below:
    i want to deny the AD user with priviledge level 15 to change the enable secret password and delete the enable secret password.
    the command i issue at below:
    deny enable secret -> working
    deny no enable secret  -> no working
    Anyone got idea to make the no working argument become working?

    Hi there,
    I just did a test in my ACS using your requirements and it worked fine, check below my configuration it may help you:
    I am using the following AAA commands:
    Switch(config)#do sh run | i aaa
    aaa new-model
    aaa authentication login default group tacacs+ local
    aaa authorization config-commands
    aaa authorization exec default group tacacs+ local
    aaa authorization commands 0 default group tacacs+ if-authenticated
    aaa authorization commands 1 default group tacacs+ if-authenticated
    aaa authorization commands 15 default group tacacs+ if-authenticated
    aaa session-id common
    Switch(config)#
    Rate if it helps!

  • Error message: The preset used by one or more sequences in this project requires third-party components that could not be located. These sequences will be modified to use a custom sequence setting instead. To continue editing using the original preset, qu

    Hello all,
    I can't open a PP project without this error message appearing:
    "The preset used by one or more sequences in this project requires third-party components that could not be located. These sequences will be modified to use a custom sequence setting instead. To continue editing using the original preset, quit the application without saving the project, reinstall any third-party components that are required and reopen the project".
    What I had been doing before this occurred was editing a PP project using ProRes sequences and multi-camera editing. Multi-camera was not working very well and after a few attempts to fix that I gave up and finished the job cutting 3 layers of video instead. AME refused to render the three finished sequences of over 1hr duration so rendered final videos from the PP sequences.
    I tried deleting plists for AME, PP and QT, repairing disc permissions and rebooting but there was no improvement.
    Client is satisfied for now but will want to come back to this job at a later date so decided to uninstall and re-install AME and PP in the hope both would be ready to work properly when needed again. AME works fine in conjunction with a different PP project but now I can't open the PP project in question without the above error message appearing.
    Having searched the net it would seem that the problem may be caused by ProRes but I haven't been able to find a definitive solution for the problem. Does anyone know either:
    1. How to fix this?
    2. If I chose the "modified using a custom sequence setting", can I be sure that my sequences will look the same even if they don't use ProRes? The final deliverable format will be mp4 so as long as the overall look doesn't change then I can  afford a change in the edit codec. It's just that with three sequences over an hour long, I don't want days of work to be ruined.
    Other older PP projects of mine open and work fine.
    Premiere Pro CC 8.2.0
    Media Encoder CC 8.2.0.54
    OSX 10.10.2
    Any help would be greatly appreciated.
    Duncan.

    Adobe web chat come up with a solution.
    Open the PP project.
    Export your sequence or project as a Final Cut Pro XML file.
    Set up a new PP project.
    Import the Final Cut Pro XML file.
    This will get you back up an running.
    Since getting back to editing this project I have found that some things will be lost or change in using XML:
    You will lose position key framing, black video clips, dissolve fx, audio levels, audio dynamic fx, the ability to open a multi camera clip and change the camera view.
    You will keep cut points, crop fx.
    Not perfect but only took a couple of hours to save 3 days work.

  • Backup failure due to Character set problem

    Hi,
    I am manually running a COLD backup script in Windows NT environment and all the logs has been captured below:
    Recovery Manager: Release 8.1.6.0.0 - Production
    RMAN-06005: connected to target database: db1 (DBID=754030292)
    RMAN-06009: using target database controlfile instead of recovery catalog
    RMAN> shutdown immediate;
    2> startup mount;
    3> RUN {
    4> ALLOCATE CHANNEL disk1 TYPE disk;
    5> BACKUP DATABASE TAG 'db1_db_full' FORMAT 'e:\backup\db1\db1_backup';
    6> copy current controlfile to 'e:\backup\db1\Control_db1.ctl';
    7> }
    8>
    RMAN-06405: database closed
    RMAN-06404: database dismounted
    RMAN-06402: Oracle instance shut down
    RMAN-06193: connected to target database (not started)
    RMAN-06196: Oracle instance started
    RMAN-06199: database mounted
    Total System Global Area 934143244 bytes
    Fixed Size 70924 bytes
    Variable Size 260554752 bytes
    Database Buffers 673439744 bytes
    Redo Buffers 77824 bytes
    RMAN-03022: compiling command: allocate
    RMAN-03023: executing command: allocate
    RMAN-08030: allocated channel: disk1
    RMAN-08500: channel disk1: sid=13 devtype=DISK
    RMAN-03022: compiling command: backup
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure during compilation of command
    RMAN-03013: command type: backup
    RMAN-06003: ORACLE error from target database: ORA-06550: line 1, column 166:
    PLS-00553: character set name is not recognized
    ORA-06550: line 0, column 0:
    PL/SQL: Compilation unit analysis terminated
    RMAN-06031: could not translate database keyword
    Recovery Manager complete.
    As the above log shown, I cannot do any backup command in the RUN bracket and it complains that the character set is not recognized.
    This set of error happens when I have create six other Oracle databases in my NT box. Before that, I can manually run the backup with no problem and a backupset has been generated.
    If you have come across this problem and have solutions of it. That will be great.
    Thanks !!
    null

    kk001 wrote:
    Hi ,
    The export Backup failing due to character set problem
    . . exporting table ravidlx
    EXP-00008: ORACLE error 6552 encountered
    ORA-06552: PL/SQL: Compilation unit analysis terminated
    ORA-06553: PLS-553: character set name is not recognized
    P
    Please suggest how to set character set
    I don't know what you have.
    I don't know what you do.
    I don't know what you see.
    It is really, Really, REALLY difficult to fix a problem that can not be seen.
    use COPY & PASTE so we can see what you do & how Oracle responds.
    do as below so we can know complete Oracle version & OS name.
    Post via COPY & PASTE complete results of
    SELECT * from v$version;

  • I cannot run You Tube Videos on my Apple Macbook Air MD760HN/B with OS X 10.9.4. the video window displays a message " An error occurred, Please try again later." Learn more. The screen is black with this message. There appears to be some setting problem?

    Macbook Air MD 760HN/B with OS X 10.9.4
    4 GB RAM, 1.4 Ghz intel Core i5
    Problem 1
    I.     On Youtube whenever I try to play a video, I get a message on a black screen "An Error Occurred, Please Try Again later. Learn More."
    2.   I think it is some setting problem, being a new mac user, I am unable to sort it out.
    Problem 2.
    How to select more than one file in a folder to copy or delete. like it can be done in Windows with shift Click together.
    if one has to select say, file 25 to file 37 in a folder with 75 files. select all (command A) works but I cannot select few continuous files.

    Macbook Air MD 760HN/B with OS X 10.9.4
    4 GB RAM, 1.4 Ghz intel Core i5
    Problem 1
    I.     On Youtube whenever I try to play a video, I get a message on a black screen "An Error Occurred, Please Try Again later. Learn More."
    2.   I think it is some setting problem, being a new mac user, I am unable to sort it out.
    Problem 2.
    How to select more than one file in a folder to copy or delete. like it can be done in Windows with shift Click together.
    if one has to select say, file 25 to file 37 in a folder with 75 files. select all (command A) works but I cannot select few continuous files.

  • Search result category with a custom layout set?

    Greetings,
    I've created a nice little search IVIEW with a custom search options set that will display the document category (taxonomy) in the search result (if the resulting document is categorized, of course.)  Works great.  However there is one little problem.  The categories in the search results are hyperlinked and when you select one, you get a new window with the taxonomy rendered in the default layout set (the ConsumerExplorer I think.)  Not good.  I need this displayed in a custom layout set.
    Any ideas how to make this hyperlink use a custom layout set without changing the default?
    Regards,
    Paul Federighi

    Hi Paul,
    As per my knowledge of the basic s of layout sets and iviews.
    You want to change the layout set of the iview(window) which opens when u click the hyperlink.
    You should do this:
    1)Make a new layout set by customizing the default one.
    2)If the iview opening is a standard iview then go to its properties and change the Layout set value to ur new layout.
    Please revert in case of issues.
    I hope it helps.
    Regards,
    Sumit

  • Value set problem in oracle apps

    Hi
    I have got one problem with value set
    There are two parameters in report
    1. Collector Name -> value set table type
    2. Customer name -> value set table type
    I want , when I give collector name the customer name parameter should be disabled automatically and when I give customer name , collector name parameter should be disabled.
    I tried with dummy parameter also but not reach upto the result
    Gautam

    In program define i created 3 parameters
    1.Collector -> value set -> xxbs_collector
    2. Dummy -> value set -> xxbs_dummy
    sql statement select 'Y' from dual where :$Flex$.xxbs_collector is null
    <When collector is null then it will pass 'Y' to dummy
    3. Customer -> value set -> xxbs_customer
    in where clause of customer :$Flex$.xxbs_dummy = 'Y'
    i.e. when collector is null the dummy value will be 'Y' and customer
    parameter will be enable when dummy = 'Y'
    This is what I have done , but it is not working
    Gautam

  • Custom Commands and Keyboard shortcuts

    Hi,
    I have recently added a custom command to Vivado 2015.1 to set the current working directory to the top level folder where the project is stored using this TCL:
    cd [string trimright [get_property DIRECTORY [get_projects]] proj]
    This allows me run TCL scripts using a simple relative path to a folder in the project containing TCL scripts instead of having to type a long absolute path because Vivado insists on using C:/Users/<username>/AppData/Roaming/Xilinx/Vivado as it's default working directory (e.g source ./tcl/script.tcl rather than source C:/<long path to folder>/tcl/script.tcl)
    I added a keyboard shortcut to this command (in this case Ctrl+Shift+P) to allow to me change the PWD quickly when I need to.
    However, every time I open Vivado the keyboard shortcut initially does not work. I press Ctr+Shift+P and nothing happens. In order to get this to work I have to press Alt+T to get the tools menu, then u to get the Customize commands option and then withough clicking anything in this menu, just by opening the menu, the shortcut works.
    In short every time I start Vivado afresh, I have to press, Alt+T, u, then Esc, Esc to back out of the menu to get the shortcut to work ( or I can click Tools->Customise Commands and then back out of the menus by using Esc, Esc and it has the same effect).
    Can anyone else confirm this?
    It feels like it is not recognizing the shortcut until the Customise commands menu has been opened. Is it not loading the shortcut until this menu opens? The whole idea of the shortcut is to avoid having to open the menu every time.
    Regards
    Simon
     

     I have reported this to Factory. Change request number 868640

  • Custom Layout Set

    Hi people.
    I am trying to create new, custom layout set, by copying existing sets and adding / removing features.
    My target is to create a layout set similar to ConsumerExplorer, but with a small addition - "Search" option.
    I have tried to play with the Admin breadcrumb, and also tried to add "Search from here" command through UI Commands, but unsuccessful.
    Could anyone please tell me how I can add the "Search" option to ConsumerExplorer without showing the whole admin toolbar?
    Points will be awarded, of course.

    Hi,
    The standard ConsumerExplorer layout set contains the Search from here command as part of the hover menu of the root element. Can you explain what exactly do you need?
    Best regards,
    Avishai Zamir

  • Custom command for custom XMP metadata

    Hi
    I'm trying to create a custom command for setting and getting custom XMP metadata using InDesign CS3 SDK with Xcode.
    I think I got the step 1) to 3) ok. But not so sure about step 4).
    Please take a look and tell me if I have got anything wrong.
    1) Create 2 classes and 1 interface
    MyCustomMetadata
    MyCustomMetadataSetCmd
    IMyCustomMetadata
    2) Define class definitions in the resource file
    /** Boss class for kMyCustomMetadataBoss */
    Class
    kMyCustomMetadataBoss,
    kInvalidClass,
    IID_IMYCUSTOMMETADATA, kMyCustomMetadataImpl,
    /** Boss class for kMyCustomMetadataSetCmdBoss */
    Class
    kMyCustomMetadataSetCmdBoss,
    kInvalidClass,
    IID_ICOMMAND, kIQAdTicketMetaDataSetCmdImpl,
    IID_IMYCUSTOMMETADATA, kMyCustomMetadataImpl,
    3) Define functions for setting and getting values in MyCustomMetadata
    GetMyTitle()
    SetMyTitle()
    Within these functions, use IMetadataAccess interface to set/get values.
    4) Create Do() function in MyCustomMetadataSetCmd
    ??? I'm not sure what I'm supposed to do here ???
    Any help would be really appreciated.
    Thanks,
    JP

    m41miller42 wrote:
    I am attempting to create a custom RSS file (.mrss) that references XMP metadata from Premiere.
    I was basing the move on this statement. This was posted in the Adobe Connect forums.

Maybe you are looking for

  • What do I need to do to pass on my old iPad to another person?

    i have an old iPad I'd like to give or sell to someone else, but it sounds like ios 7 makes doing this complicated.  So does apple have a list of steps that I must do so that I can pass on my iPad ( or iphone) to someone else?  can someone give me th

  • Exporting PDF's from Photoshop - Low quality / messed up image in Acrobat

    Hi guys, I am having this problem for quite some time now and i can't figure it out. So i have created a portfolio design in Photoshop, and now i want to export that out of Photoshop into images / pdf  combining all the files into one PDF The problem

  • Imac Intel - Assistance please

    Hello all, I have encountered a problem with my IMAC Intel, it no longer boots pass the white apple logo screen, tried to boot from apple installation disc thinking I could reload (leopard OS), it went through 80% of the installation and then frooze,

  • Unable to install update manager on server 2012r2

    When I try to install update manager in says that the product can only be installed on a 2008 or later server.  This is... Also receive a message that internal error occurred in vsphere client...  unable to connect to the remote server. I had install

  • Reschedule does not update the schedule line

    Dear All expert, After upgrade to ECC6.0, the reschedule does update the schedule lines eventhough it list all the required to be update in the list. As I checked , it update the ekpo successfully but does not update the eket. Is there any suggestion