Shortkey to merge function from panel

Hello,
I'm trying to create a shortkey in Illustrator CS3 to the "merge" function of the "pathfinders".
I can only find a way to shortkey menu -> effects -> pathfinder -> merge.
But this don't work. The result is not the same as the "merge icon" clicked form the pathfinder panel.
Is there a way to make a shortkey to the merge icon from the pathfinders panel?
Hope so.
JP

You can record an action and assign a shortcut to it.

Similar Messages

  • Data Merge Functionality

    Hello all,
    I want to use the Data Merge functionality from the plugins that is update the source file and flow the records through plugin itself and generate the Merged PDF.
    But I was not able to find help through API Reference document. Where can I get help from? Is there some document available for this or some sample available?
    Thanks everyone in advance for all the help.
    Regards
    Farzana.

    Hi Farzana,
    I know its tooooo late but let me try.
    Have you find any solution/API/Commands for implementing the Data Merge functionality programmatically using your plugin?
    I'm also looking for this and was not found any help from the SDK documentations.

  • Call actionscript file function from actions panel of a movie clip

    i have a movie clip with an actions layer
    can i call a function from an actionscript file from the actions panel?

    does that actionscript file specify a class or not?
    if not, then use:
    include "yourpath/yourfilename.as"
    on any timeline.
    any function in that as file will be added to the timeline that has the include statement and you reference that function with normal dot syntax from your calling timeline.

  • How to call function from Merge?

    Hello,
    I have a cursor with a loop and a Merge.
    I need to call a package function from Merge instead of direct Insert.
    Is is possible?
    Instead of Insert:
    FOR c1 in (SELECT EMP_ID..
                    FROM..
                    WHERE.. )
          Loop
            Merge into EMP em using DUAL
                On (em.EMP_ID = c1.EMP_ID)
                When Not Matched Then
                  Insert (EMP_ID..)
                  Values (c1.EMP_ID.. );
          End Loop;
    I need to call a function to get back a confirmation of insert:
    FOR c1 in (SELECT EMP_ID..
                    FROM..
                    WHERE.. )
          Loop
            Merge into EMP em using DUAL
                On (em.EMP_ID = c1.EMP_ID)
                When Not Matched Then
                  v_return := p_util.emp_audit (c1.EMP_ID.. );
          End Loop;
    I know that the second sample code is incorrect. it is just to give an idea of what I'm trying to achieve.
    Is there a way around it?
    What is the correct way to call a function from there?
    I am on Apex 4.2
    Thank you.

    Hi Leons,
    I have a cursor with a loop and a Merge.
    I need to call a package function from Merge instead of direct Insert.
    Is is possible?
        No, merge statement is not meant for it. It is meant for combining multiple DML operations.
        Refer :
    http://docs.oracle.com/cd/B28359_01/server.111/b28286/statements_9016.htm#SQLRF01606 Oracle DB 11g
    http://docs.oracle.com/database/121/SQLRF/statements_9016.htm#SQLRF01606 Oracle DB 12c
        You have to change your logic to achieve what you want.
        Hope this helps!
    Regards,
    Kiran

  • Calling CVI DLL Function from Visual Studio

    HI all ,
    Iv'e created a DLL using CVI and i'm tring to call one of it's function from visual studio 6.0
    I'm getting a general error , is there a specific prototype that i need to set my functions in ordrer to call them ?!  
    Kobi Kalif
    Software Engineer

    You will need to distribute the CVI RTE along with your DLL, since anything you write in CVI is going to use the RTE.
    As far as calling the DLL functions, you can use the CVI defined macros
    <return type> DLLEXPORT DLLSTDCALL <function name> (<param1 type> <param1> ...) {
    to declare your functions in the DLL for access by a VS application.
    for example
    int DLLEXPORT DLLSTDCALL myfunction (int funparam1, double func param2) {
    There are options for identifying which functions to export from your DLL, I use "functions marked for export" but there are other choices available.  I also include a type library so when you type the name of a DLL funciton in VS6 you see a balloon popup with the function signature.  This is a check box in the target settings.  You have to create a ".fp" file (function panel file) to collect the function info for the library.
    From VB6 you can access the DLL a couple of ways, but I usually add the DLL as a reference.

  • BP merge functionality in CRM 2007 Web UI - Buswu02 objects

    hello champs,
    Could any help me out to resolve the below issue:
    I have a issue with BP Account merge functionality in crm 2007, I have made the config change to create the cleansing case, create task, triggered the bupa_realign to merge the duplicate customer to Master record.
    In this case, Task is created and transferring the BP master data and marked the duplicate BP to to be archived but the issue is, we do want to transfer the service tickets from duplicate customer to master customer.
    I have also check all the setting in buswu01 and buswu02 (clear and clear_rep variants), for me its looks every thing fine but service ticket are not transferred to master account.
    It would be great help if any one help to resolve the issue!     Thanks a lot in advance.
    Regards
    Praveen

    This question has been resolved by me only, we have implemented the BP merge functionality with web ui crm 2007.
    And
    It was the issue with objects maintenance in tran buswu01 and transportation to testing client and other systems.
    now BP merge fun. works fine:
    to config:
    User the BP merge funn. in web ui.
    Assign the Task for merging the BP's
    Maintain the all relevant object to transfer.
    which will trigger a batch job and will transfer all the transact from duplicate account to master account and will mark the duplicate account to Archive.
    any ho thanks for all your suggestions and help.
    regards
    praveen

  • Using 3 tables in Merge function T-SQL

    Hi there,
    I have a source table A and one View ,Target table B
    I was trying to write Merge function for incremental load I mean it is type1 load
    Table A should look at View   if it doesn't find the record then load into table B (Target)
    the columns are ID and Type
    if ID is same and type name is different then should update type in the Table B (Target)
    I usually write merge function like below 
    Merge table x
    using table y
    on x.id=y.id
    when matched  then
    update set x.description=y.description
    when not matched then
    insert (id,description)
    values(id,description)
    but I don't understand how to write in my scenario. can anyone guide me please.

    Please try this.
    Declare @MergeData Table
    Col1 Int,
    Col2 Varchar(10),
    ActionDone Varchar(10)
    Select * Into #Temp_SourceA From SourceA
    Insert @MergeData
    Select Col1,Col2,ActionDone
    From
    Merge #Temp_SourceA As Trgt
    Using View_Source As Src
    On Trgt.Col1 = Src.Col1
    When Matched And
    Trgt.Col2 <> Src.Col2
    Then Update Set Trgt.Col2 = Src.Col2
    When Not Matched Then
    Insert (Col1,Col2)
    Values (Src.Col1,Src.Col2)
    Output $action ActionDone,Inserted.Col1,Inserted.Col2
    )Data
    Select * From @MergeData
    Insert Into TargetA
    Select Col1,Col2 From @MergeData Where ActionDone = 'INSERT'
    Update T1
    Set Col2 = T2.Col2
    From TargetA T1
    Inner Join @MergeData T2 On T1.Col1 = T2.Col1 And T2.ActionDone = 'Update'
    Drop Table #Temp_SourceA
    --Select * From View_Source
    --Select * From SourceA
    Please have look on the comment

  • Calling .jsx functions from .js files using HTML Widget

    Hi there,
    I'm using the HTML Widget in a panel to load an html file along with some javascript files. Is there a way to call .jsx Adobe functions from a .js file? I've successfully been able to call an alert() of a .jsx file from the html but have not been able to do anything further than that.
    For example:
    .js file:
    var x = foo('bar');
    alert(x);
    .jsx file:
    function foo(x) {
        alert('This works');
        var dir = $.fileName;
        alert('This doesn't work because of $.fileName');
        return 'Directory: ' + dir;}
    So, ultimately I would like to have an HTML Widget in my panel, press a link that will call fiddle with the open document and layer, then return some values back to the HTML Widget's js file.
    Thanks

    To the client browser, JSP is just HTML. Adding JS makes it DHTML, which provides the kind of applet/web page interaction you were referring to in the first post. Note that the applet and JS are both being run 'client side', whereas the JSP is generated 'server side'.
    A JSP environment can in some cases replace the JS (e.g. submit a form with values to the server, and use JSP to write the resulting applet page). This can be handy in the event that the end user does not have JS enabled, in that you can offer a 'pure HTML' solution. OTOH though, it is slower (requires a round trip to the server to do what the user asked for) and most users prefer the quicker 'click and see' philosophy of the Java/JS combo.
    So, my advice to you is that JSP adds very little value, here.

  • Merge function

    I have a merge function as below
    merge into copy_emp c
    USING employee e
    on (c.employee_id = e.employee_id)
    when matched then
    update
    when not matched then
    insert values(...........
    i want to restrict values using where clause in employee table.can we use where clause in merge table

    Yes, we can use. Did you tried it ??
    MERGE INTO bonuses D
    USING (SELECT employee_id,
                          salary,
               department_id
         FROM employees
            WHERE department_id = 80) S
    ON (D.employee_id = S.employee_id)
    WHEN MATCHED THEN
      UPDATE SET D.bonus = D.bonus + S.salary*.01
    WHEN NOT MATCHED THEN
         INSERT (D.employee_id, D.bonus)
         VALUES (S.employee_id, S.salary*0.1)
         WHERE (S.salary <= 8000);

  • Calling parent application function from ItemRenderer

    Hi, I have a spark list control whose data is rendered using an  itemrenderer. Basically the Item renderer lays out the data within a  Panel.
    The Panel has a LinkButton, which when clicked needs to pass an Id to  the parent application. In the parent application I have a function  that dispatches a custom event to its parent. I want to know how to call  this function from the ItemRenderer.
    I tried using parentDocument.outerfunction etc but it throws an error..
    Can I do this using custom events ? If so, how ? Please explain in detail
    Thanks ,...

    You can Access via
    parentDocument.parentDocument;
    MainApp.MXML:
    <s:Application
    <s:Group width="100%">
                                  <s:HGroup left="40" top="40">
                                            <s:List width="100%" dataProvider="{items}"
                                                                itemRenderer="ServicesIR"
                                                                contentBackgroundColor="#E6E7E8" borderVisible="false">
                                                      <s:layout>
                                                                <s:HorizontalLayout columnWidth="50" gap="5"/>
                                                      </s:layout>
                                            </s:List>
    </Application>
    ServicesIR.mxml
    <?xml version="1.0" encoding="utf-8"?>
    <s:ItemRenderer xmlns:fx="http://ns.adobe.com/mxml/2009"
                                            xmlns:s="library://ns.adobe.com/flex/spark"
                                            xmlns:mx="library://ns.adobe.com/flex/mx"
                                            autoDrawBackground="true">
    <fx:Script>
                        <![CDATA[
                                  override public function set data(value:Object):void
                                       var parent:MainApp =  parentDocument.parentDocument; //Instance of MainApp.mxml
    ]]>
              </fx:Script>
    <s:ToggleButton id="tab" isAlerted="false"  label="{(data.name}" horizontalCenter="0" verticalCenter="0"/>
    </s:ItemRenderer>

  • Please help---merge function for two arrays.

    I am trying to create a merge function that merges two sorted arrays into a third array. I know what I am supposed to do, at least in theory, but I have been completely unsuccessful with actually getting the code to work. Since it is private, you can't directly access the arrays, you have to just reference them. could someone please help me out.
    import java.io.*;
    class OrdArray
    private long[] a;
    private int nElms;
    public OrdArray(int max)
    a = new long[max];
    nElms = 0;
    public int size()
    { return nElms;}
    public int find(long searchKey)
    int lowerBound = 0;
    int upperBound = nElms-1;
    int curIn;
    while(true)
    curIn = (lowerBound + upperBound) / 2;
    if(a[curIn]==searchKey)
    return curIn;
    else if (lowerBound > upperBound)
    return nElms;
    else
    if(a[curIn] < searchKey)
    lowerBound = curIn + 1;
    else
    upperBound = curIn - 1;
    public void insert(long value)
    int j;
    for(j=0; j<nElms; j++)
    if(a[j] > value)
    break;
    for(int k=nElms; k>j; k--)
    a[k] = a[k-1];
    a[j] = value;
    nElms++;
    public boolean delete(long value)
    int j = find(value);
    if(j==nElms)
    return false;
    else
    for(int k=j; k<nElms; k++)
    a[k] = a[k+1];
    nElms--;
    return true;
    public void display()
    for(int j=0; j<nElms; j++)
    System.out.print(a[j] + " ");
    System.out.println("");
    public void merge(OrdArray array, OrdArray array1)
    }//this is the start of the merge function. I am stuck and not real sure where to go from here.
    public long getElm(int index)
    return a[index];
    }//end class OrdArray
    class OrderedApp
    public static void main(String[]args)
    int maxSize = 100;
    OrdArray arr, arr1, arr2;
    arr = new OrdArray(maxSize);
    arr1 = new OrdArray(maxSize);
    arr2 = new OrdArray(maxSize);
    arr.insert(77);
    arr.insert(99);
    arr.insert(44);
    arr.insert(55);
    arr.insert(22);
    arr1.insert(88);
    arr1.insert(11);
    arr1.insert(00);
    arr1.insert(66);
    arr1.insert(33);
    arr2.merge(arr, arr1);
    arr.display();
    System.out.println("--------------------");
    arr1.display();
    System.out.println("--------------------");
    arr2.display();
    }

    If I use ArrayList<Long>, would I have to change private long[]a to ArrayList<long>, cause if so, I am not able to do that.
    I am supposed to add a merge() method to megre the two source arrays into an ordered destination array.
    public void merge(OrdArray array, OrdArray array1)
    mergeSize = array.nElems + array1.nElems;
    int i = 0;
    int j = 0;
    int k = 0;
    while (i = 0; i < array.nElems; i++) {
              if {array.getElm(i) < array1.getElm(j)
                                                              //how do you move to the next set of values
                                                              //and to move which variables are incremented
                                                              //how do you test if the flush loop should be      called, hint if( == )
                   while (j = mergeSize - array.nElems; j <= mergeSize; j++) { 
                                   this.a[j] = array1.a;
    //again how do you move to next value and placeholder
         //which indices are incremented
    //copy/paste and change the variables for the other value being smaller
    public long getElm(int index)
    return a[index];
    this is all I have started, but i don't really understand all the comments because I haven't used java in a long time. Like I said, I understand what needs to be done and what order to do it in, but getting the code down to do that is really rough

  • Merging data from multiple BAPI tables

    Hello,
    I'm executing a BAPI_XX_GETLIST with multiple "Tables" selected with the REQUESTEDTABLESX import parameter. What is the best way to combine/merge data from multiple "Tables" and bind them into a single webdynpro UI Table?
    Thanks.

    Hi,
    Lets say the BAPI name is BAPI_XX_GETLIST and the table names are ET_TABLE1(Field1, Field2, Field3)  and ET_TABLE2 (FieldA, FieldB). You have display the fields of ET_TABLE1 (Field1, Field2, Field3) and one field from ET_TABLE2 (FieldB). "FieldA" id the key field.
    Create a value node (vnField) under the model node table ET_TABLE1 with cardinality 1:1. Create a value attribute (vaFieldB). For "vnField" create a supply function (supplyfunction). If you goto the implementation you can see a method "supplyVnField(IPrivateCO_ComponentName.IVnFieldNode node, IPrivateCO_ComponentName.IET_Table1Element parentElement)".
    Write the following code in the implementation.
    IPrivateCO_ComponentName.IVnFieldNode nodeX = node.createValueFieldElement();
    for(int i=0;i<wdContext.nodeET_Table2().size();i++){
    if(parentElement.getField3Value().equals(wdContext.nodeET_Table2().getET_Table2ElementAt(i).getFieldA())){
       nodeX.setValuAttributeValue(wdContext.nodeET_Table2().getET_Table2ElementAt(i).getFieldB());
    node.bind(nodeX);
    Hope this solves your problem.
    Regards,
    Santhosh.C

  • Mail Merge Function in Adobe Professional 8?

    Hello,
      My company will soon be implementing an Electronic Document  Management System (EDMS).
    One of the major hurdles were facing is that the new system will not be  able to generate copies of documents with controlled sequential numbers.   Presently we use Mail Merge to implant the controlled copy numbers on our Word  documents (using excel as the data source).
    When we switch over to the new  system (EDMS), we would need to do the same thing but only on a PDF version of the  document. I've looked into the use of forms but don't think that's going to work as these are multiple page documents that need to have the same information on every page.
    After reading about forms I get the impression that you would have to do every page separately (as opposed to having a data source like excel and fields in the PDF to accept the data from the excel file).
    Is there any function in Professional 8 similar to Mail Merge in Word?
    Thanks!!

    Hi,
      I was thinking of a Mail Merge function in Adobe Professional 8 itself, in
    other words, performing a Mail Merge on a PDF document, as opposed to what I
    think you're suggesting which is to create the Mail Merged document in Word
    and then convert to PDF.  That wouldn't be a solution because these
    documents will be residing in an EDMS database (Electronic Document
    Management System which will hold both the Word and PDF version of a given
    document), which creates it's own headers and footers when printing from the
    system. There's no way to place a stamp at this point in the process because
    you're within the EDMS system, no way that is without an expensive plug-in
    or work around to the system, and with the way that Word doesn't always
    convert so neatly to PDF, and the need for this stamped document to be an
    exact rendition of the EDMS (printed) version, I would need another
    solution.
    My original solution was to print the PDF version of a document from the
    EDMS system, hence it will print with the appropriate EDMS Headers and
    Footers (which only get added inside of the EDMS printing process), take
    that print, scan it, and now with the scanned version (after setting up the
    fields where the merged data will go), merge it with a data source (excel)
    and print it out.  We would then have a document with a controlled copy
    number that has all the appropriate formatting of the EDMS version, plus of
    course a unique copy number stamped where we choose.
    Of course none of this will work unless Acrobat Professional 8 can do Mail
    Merge from within itself.  This is what I need to experiment with....any
    ideas?
    Thanks!
    Paul

  • Is it possible to call the Print Quote functionality from Custom ADF page

    Hi,
    We are researching if it is possible to call the Print Quote functionality from the Custom ADF application.
    Goal is to pop up the PDF report upon clicking the Print Quote button on the custom page. Is it possible ?
    Atleast advice on the direction to go forward is appreciated.
    Thanks
    Sai

    Hi ,
    Please check following thread on forum -
    Re: ADF: Calling OAF Page from ADF page
    Check this may also be useful-
    https://blogs.oracle.com/shay/entry/to_adf_or_oaf_or
    I have not tried yet but Steven Chan (Sr. Director OATG) suggest following methodolgy for this-
    https://blogs.oracle.com/stevenChan/entry/appsdatasource_jaas_ebs
    Thanks,
    Ashish

  • Type Mismatch error while calling a Java Function from Visual Basic 6.0...

    Hi,
    I'm having a problem in calling the Java Applet's Function from Visual Basic. First, I'm getting the handle of the Java Applet and components of it using "Document.Applets(n)" which is a HTML function. I'm calling this function from Visual Basic. My code is something like this...
    ' // Web1 is IE Browser in my Form.
    Dim Ap,Comp
    Dim Bol as Boolean
    Bol = true
    Ap = Web1.Document.Applets(0).getWindow() ' \\ Gets the Parent Window.
    Ap.setTitle("My Java Applet") ' \\ Sets the Title of the window.
    msgbox Ap.getVisibility() ' \\ This will return a Java boolean ( true or false )
    Ap.setVisibility(Bol) ' \\ Function Syntax is : void setVisibility(boolean b)
    Here in my code , i'm able to call any function that which accepts Integer or String but not boolean. So, i m facing problem with Ap.setVisibility() function. It gives me a "Type mismatch error" while executing it. Can you please tell me a way to do this from Visual Basic !
    I'm using Visual Basic 6.0, Windows 2000 , J2SDK 1.4.2_05.
    Please help me Friends.
    Thanks and Regards,
    Srinivas Annam.

    Hi
    I am not sure about this solution. try this
    Declare a variable as variant and store the boolean value in that variable and then use in ur method.
    Post ur reply in this forum.
    bye for now
    sat

Maybe you are looking for

  • Problem with PDF file after saving from MS Word

    When I have an image in MS Word and I save to PDF, the page with the image becomes black as you can see the text at the bottom is black instead of white.  Also, I have Replace Document Colors active to invert the PDF color.  Anyone know why inserting

  • How to add multi-line text in comments field of song tags in iTunes 12?

    Recently upgraded to iTunes 12 and can no longer enter multi-line text in the comments field of a song tag.  Used to use option+return (alt+enter) to go to a new line (carriage return).  Can it still be done?  Any help in this regard would be appreci

  • Error installing new server cert with Certificate Setup Wizard

    Can anyone tell me why I'm getting the following error when I try to install a new server certificate: Unexpected Failure There was an error while writing certificate file.I'm using the Certificate Setup Wizard in Netscape Console 4.23 to try and rep

  • How can I overwrite a re-writeable cd ?

    I burned an audio cd (mp3 files) from itunes onto a re-writeable cd. Now I would like to overwrite that same cd with new mp3s. Itunes asks for a blank cd. Can I not overwrite the same cd ?

  • Inspect IP of caller from server

    I would like to inspect the IP address of the caller to the object at the Server and deny service, besides making a parameter which is passed with the RMI call of the host address. Is there a way which is part of the workings of the RMI object.