How do Illstrator recognize if same plug-in will place with different name.

Hi All,
We are developing an Illutrator CS4 plug-in. we have source code of the plug-in. we need to add some extra features to that plug-in and build with new name. older one will work as it was. and newer one will work with new features. So both plug will resides same place with different name. the problem is, when I compile older soruce code and change the plug-in name. I'm getting error while loading plug-in it looks "older and newer version get conflict while name is different.
Is Illustrator maintain any unique ID for each plug-in. if so, then where should i look for in my code?
How do Illstrator recognize if same plug-in will place with different name?
Any help would be appriciated.
Thanks in advance,
Johirul

I don't believe Illustrator has anything like a UID for plugins. If you want them to co-exist, either make them named differently or put them in different sub-folders.
On a related note, you CAN optionally set a plugin's name. You could then iterate over the plugin list at start up (before you set your name) and see if there's already a plugin with the same name. We do this to *prevent* our plugin from loading twice, but you don't seem to want that. I only mention this because this is about as close to 'unique identifiers' that AI gets, and frankly nothing stops you from having multiple plugins with the same name.

Similar Messages

  • Hi All, I am using iphone in UAE and ipad in India usinging same apple id. Earlier I could do imessage  to my Ipad with different name but with  software update,I am unable to do, as signing id for the iphone and ipad is same.How to restore back

    Hi All, I am using iphone in UAE and ipad in India usinging same apple id. Earlier I could do imessage  to my Ipad with different name but with  software update,I am unable to do, as signing id for the iphone and ipad is same.How to restore back

    I believe because you migrated from a Nokia to an iPhone you need to register the Bn phone number with your Apple ID so it can be used for iMessage. The Pn number seems to be the only one registered
    Go here > https://appleid.apple.com/cgi-bin/WebObjects/MyAppleId.woa/
    Manage your Apple ID and see if that does the trick
    Hope that helps

  • Install many executable on the same PC with different names

    Hello,
    I'm trying to install several executables with different names in the same computer but at the end of install process the message is : "an higher  or existing version is already installed in this computer"
    I create the Executable and Setup with LabVIEW Application Builder and install the executable in the same Program Files root directory with a different sub-directory for each executable as this : Program Files-->MyProject-->SubProjet1 with exe1/SubProject2 with exe2 etc...
    My OS is WinXP pro SP2 and I work with LabVIEW 8.5.
    Thanks and regards,
    Armindo PINTO

    Hi Armindo,
    Thank you for using the NI forums! 
    From what I understand, you are trying to create multiple executables of a vi project to co-exist on the same PC. Any time you re-use the LabView 8.x project file, it will generate
    install package with the same product ID number. That means, if the
    deployed PC has the previous version installed, which had been
    generated from the same project file, the new install package will
    remove the previous version and overwrite it with the new version. Or as in your case, not allow you to install lower versions of the executable. That
    means, the previous version will be no longer available on the deployed
    PC. If you are creating an upgraded version to the product this is
    fine.
    However, if you need to re-use the LabView 8.x project
    file and generate a new product, which can potentially co-exist with
    the previous on the end user PC, you need to generate a new installer
    with a different product ID number. One of the way to do it:
    Copy existing project file (e.g. "name1.lvproj") under a different name (e.g. "name2.lvproj")
    Open the new instance of the project
     Expand the "Build Specifications"
     Right click on the installer specification, e.g. "name1 Installer"
    Select "Duplicate" from the menu
    You can now delete the instance "name1 Installer" and rename the "Copy of name1 Installer" to a suitable name, e.g. "name2 Installer"
     Make changes that are needed between the two versions, for example:
    Select a new source VI
    Build a new exe file
    Reflect the new exe file in the "name2 Installer"
    Make
    any other changes needed in "name2 Installer", for example different
    documentation files included in install, change in the target install
    directories, changes in the start menu shortcuts. etc.
    Build the install.
    Please let me know if this solves the issue, and let me know how you get on.
    Kind regards,
    Ashish Naik
    Field Sales Engineer
    National Instruments UK

  • To create multiple files with same content but with different names

    Hi SapAll.
    here i have got a tricky situation on Idoc to File Scenario.
    in my interface of an Idoc to file ,there  is requirement to create multiple files with different file names but with same content based on one Idoc Segment.
    which means there will be one Zsegment with two fields in the idoc,where one field with (content refers to the name which file name should start with .so lets say if this segment is repeated for 3 times then PI should create 3 files in the same directory with same content but with different file names (from the filed).
    so here for now iam using one reciever file communication channel.
    can any body give me the quick answer.
    regards.
    Varma

    What do you mean by different names?
    when i make proper setting in the Receiver Channel....on how to create the filename (what to append) like add Timestamp, counter, date, messageid.....even in this case you will ahve file with different names and that too from same File channel.
    You can perform multi-mapping in XI/ PI and then your File channel will place the files in the target folder with relevant names. You cannot use Dynamic Configuration with Multi-Mapping!
    If you intend to use different File channels, then do the configuration as required (normal)...even over here you can follow multi-mapping.
    Do not use a BPM!
    Regards,
    Abhishek.

  • Unable to copy database with different name in the same instance

    I had a huge database and wanted to try some change optimization changes.
    So wanted to make a copy of the database along with data in the same instance.
    I have tried copy database wizard several times but always see the error as in attachment.
    Can someone let me know how to troubleshoot further?
    If this is not the correct way please suggest how do i copy a database with different name in the same instance along with data.

    Hi Nandu,
    From the screenshot, the error 1813 happens when corrupt database log is attempted to attach to the SQL Server. To work around this issue, please preform the following steps, for more details, please review this
    blog.
    1. Create a new database with same name which you want to recover. Make sure that the MDF file and LDF file have same name with previous database data and log file.
    2. Stop SQL Server. Move original MDF file from old location to new location by replacing just created MDF file. Delete the LDF file of new location just created.
    3. Start SQL Server. At this point, the database is in suspect status.
    4. Make sure that system tables of Master database allows to update the values. Please note that you will be performing this in query window.
    Use Master
    go
    sp_configure 'allow updates',1
    reconfigure with override
    go
    5. Change database mode to emergency mode.
    SELECT *
    FROM sysdatabases
    WHERE name = 'DatabaseName'
    BEGIN
    UPDATE sysdatabases
    SET status = 32768
    WHERE name = ' DatabaseName '
    COMMIT TRAN
    6. Restart SQL Server. Then execute the following DBCC command in query window to create new log file.
    DBCC TRACEON (3604)
    DBCC REBUILD_LOG(databasename,'c:\yourdatabasename_log.ldf')
    GO
    7. Reset the database status using following command.
    sp_RESETSTATUS yourdatabasename
    GO
    8. Turn off the update to system tables of Master database running following script.
    USE MASTER
    GO
    sp_CONFIGURE 'allow updates',0
    RECONFIGURE WITH OVERRIDE
    GO
    9. Reset the database status to previous status.
    BEGIN
    UPDATE sysdatabases
    SET status = (value retrieved in first query of step 5)
    WHERE name = 'DatabaseName‘
    COMMIT TRAN
    GO
    Make sure that you have done all the steps in order and restarted SQL Server where it is mentioned. Also run SQL Server Management Studio as administrator.(Right click-> Run as Administrator)
    Thanks,
    Lydia Zhang

  • How can i transfer my contacts from iphone4s to imac with different apple id without loosing everything on my phone

    how can i transfer my contacts from iphone4s to imac with different apple id without loosing everything on my phone

    Move the iPhoto library from the Pictures item of the Finder's sidebar on the MacBook Pro to the same location on the iMac via FireWire Target Disk mode, or a drive, partition, or disk image formatted as Mac OS Extended, or through AFP file sharing over a network.
    (68308)

  • TS4009 I seem to have 2 iCloud accounts with different names - a free storage that came with my Macbook and one I used when I bought some iCloud space. How can I cancel the free account?

    I seem to have 2 iCloud accounts with different names - a free storage that came with my MacBook and one I used when I bought some iCloud space. How can I cancel the free account? Because of this I can't access iMatch and the ICloud account I paid for on my MacBook
    Any ideas cos its frustrating that I can't access something I paid for!

    Sign out of the account you do not wish to use, sign into the one that you do wish to use.

  • Same SKU with different names in 2 systems

    Hello All,
    I am wokring on a SNP scenario. We have a finished sku A and its sub component sku C.
    <b>A (FERT) ---> C (RM)</b>
    We have forecast on sku A and want to find dependent demand in sku C thru SNP
    <b>Forecast A -
    > Find Dependent Demand C</b>
    <b>sku A maintained in ERP1 R/3 system as FERT
    sku C maintained in ERP 1 R/3 system with different name sku B as Raw material
    sku C maintained in ERP2 R/3 system as FERT</b>
    Now product A is maintained in one R/3 system and product C is in another R/3 system. Both these R/3 systems are connected to APO and both these materials are also in APO now.
    After heuristic planning in SNP, we want to pass the dependent demand to ERP2 system as Sales Order.
    My concern is if sku C has different name in 2 systems, how should I pass the demand to other system?
    Please advice.
    Thanks,
    Sanju
    Message was edited by:
            Sanju

    Maybe you can create SKU D in APO (and R3)  which is lined through PPMs or PDS to SKU B from ERP1 and SKU C from  ERP2 and aggregate  the dependent demand generated during Heuristics to SKU D
    then you can only transfer only SKU D to ERP2? Am not sure how important it is for you to hav the link between SKU D and SKU c in ERP2
    Alternately
    Dont transfer SKU C from ERP2 to APO. Only create Dependent demand for SKU C from ERP1 and transfer it to ERP2. You can run MRP again in ERP1 for the aggregated requirement (unless you want some APO specific functionality, the result must be close to what you will get in APO)

  • How do i find out if my ipod will sync with cloud

    how do i find out if my ipod will sync with cloud

    An iPod Classic cannot sync with the Cloud. It can only sync with your computer as it has no WiFi capabilities. iCloud and devices was built for the iPod Touch, iPhone, and iPad.

  • How can i get the Adobe plug in to work with Visio 2013?

    I purchased Adobe Acrobat x Pro recently and installed it, I have compatibility issues visio 2013. The adobe pdf converter  plug in stays inactive despite all my efforts to activate it, I need help with this? How can i get the plug in to work with Visio 2013?

    Should have purchased XI. According to Compatible web browsers and PDFMaker applications you will need Acrobat 11.0.1 -and- to be running the 32-bit Visio.

  • How to call the same query more than once with different selection criteria

    Hi,
    Please do anybody know how to solve this issue? I need to call one query with the fixed structure more than once with different selection criteria. For example. I have following data
    Sales organization XX
                         Income 2008  Income 2009
    Customer A       10                 20
    Customer B        30                  0
    Sales organization YY
                         Income 2008  Income 2009
    Customer A        20                5
    Customer B        50                10
    Now, I need this. At the selection screen of query, user fill variable  charakteristic "Sales organization" with interval  XX - YY, than I need to generate two separate results per sales organization, one for Sales Organization XX and the second for SO YYwhich will be displayed each on separate page, where result for SO YY will be dispayed under result for SO YY. Are there some options how to do it for example in Report Designer or WAD or with programming? In Report Designer is possible to use one query more than once, but I dont know how to force each query in RD to display result only for one Sales Organization, which will be defined in selection screen.
    Thank you very much
    J.

    Hello,
    thanks to all for cooperation. Finally we solved this issue with the following way..
    User fill appropriate SO on the selection screen, which is defined as range. This will resulte, that selected SO are listed in report below each othe (standard behavior). Required solution we achieved with the Report Designer, we set page break under each Result row of RD. This caused, that report is divided into required part per SO, which are stated each on separate page.
    J.

  • New dupes but with different names, how to delete one set

    I imported a set of CR2, converted them to dng and removed the cr2 from the catalog.  Yes, there are better ways to do this.  I failed to notice that I had checked the rename box with original name, which I left blank.  So every photo begins "untitled".  But no two have the same file name, so "untitled-2-92" and "untitled-2-93" are the same shot.  Any way to filter for odd or even numbered file names?  Take delete and try again?  Any idea what happened?  I only did the one import. 

    There are a couple of options for handling this. By far the easiest is to delete the LR catalog file, restart Lightroom and allow it to create a new catalog. Then you can just start over with a fresh import. This is dependent upon you having your original CR2 files available. If not or you have other photos you have already stored in Lightroom, this is not the the option for you. If you do, use the Copy As DNG option. This would also be a really good time to create a file renaming template. This is done using the File Renaming panel which is located in the right-hand panel during import. Set up your options and then save it as a new template. You will then have it whenever you do an import. It is really very flexible and I am sure you can configure it to give you what will work for you.
    Okay, so what to do if you can't just start over? You will have to work within Lightroom to remove the photos you do not want. In Library mode, you have a filter bar available. If you don't see it, use the slash (\) key to toggle it back on. Select the Text option. Right below the filter bar will be two drop down boxes and a search text box. Select Filename from the Text drop down and leave Contains all in the second drop down. In the search field, enter something common to what you want to delete such as "untitled-2-". This will show only files that contain the text "untitled-2-" anywhere in the filename. Next, select each of the files you want to delete. Once everything you want is selected, use the Photo/Remove Photo... menu option to delete them (or you can also just hit the <DELETE> key). Lightroom will prompt you to delete them from just the catalog or from both the catalog and delete the actual file from the disk. If you want the dups to be gone for good, select the option to delete them from the disk as well.
    A variation on the above is to use the <x> key to flag the photo as a reject. What this will do is dim the photo in both the film strip at the bottom of the screen as well as in the grid. This gives you a chance to change your mind before removing them. To use this approach, simply select the photos in either the grid or the film strip and press the <x> key or use the flag keys from the toolbar which are between the sort parameter and the color labels. The one with the 'x' on the flag will set the rejected flag (you can also use the menu item Photo/Set Flag). A photo will stay flagged as rejected until you unflag it. What this does for you is uncouples the selection of the photos and the actual removal of them from your system. When you reach the point where only photos not dimmed are the ones you want to keep, you can proceed with the removal of the rejected photos. For this, use the Photos/Delete Rejected Photos menu option.As above, Lightroom will ask whether to also remove the files from the disk as well.
    One last comment on how the filters work. Filters are applied only to the photos being displayed in the grid. For example, if you allowed Lightroom to import photos into dated folders, Lightroom will create a folder for each date it finds during the import. So, if you went on a three day trip and took photos on each of the three days, Lightroom would create three folder, one for each day, and populate them with only the photos you took on that day. In Library mode, the left hand side of the screen will show you your folders. If you are at the top level, Lightroom will show you all of your photos and that is what the filter will be applied to, However, if you are positioned on a sub-folder, the filter will be applied only to the photos that live within that sub-folder and any sub-folders contained within it. This can be an advantage if you want to clean up in smaller chunks but it means you need to keep track of what has been cleaned up so you don't miss anything.
    Finally, Lightroom has an option which can be found on the right hand side of the Import screen that is used to tell Lightroom what to do with duplicate files. You can import them which will give you a -x (where x is a number) appended to the name if the same name already exists or you can tell Lightroom to Not Import Suspected Duplicates. If this is checked, Lightroom will not import an photo it thinks is already imported. Lightroom really doesn't know if the file is a duplicate of not. It looks at file attributes such as file name, capture date, file size and such to make that determination. It is still possible to get duplicate files imported so you will get the occasional photo with the -x suffix but many fewer than if you re-import a stream of photos a second or third time.
    Lightroom does have the ability to delete the original file when you do a conversion from RAW to DNG. As each photo is validated and converted to DNG, the old RAW file is removed but you have to set the option as part of the conversion. This is useful if you do your RAW photo import and then convert to DNG later.

  • How to stream one table twice (with different names) in another schema ?

    hello guys,
    i have to replicate one table (TAB_1) from one schema (SCH_1) on source database (DB_1) twice to schema (SCH_2) on target database (DB_2) with two different names (TAB_1 and TAB_1_SHORT). TAB_1_SHORT on target db should be a subset (eg. WHERE STATUS = 1) of TAB_1 !
    how to do ? can anyone help me ?
    i tried to realize that this way:
    1) creating 1 capture process with 1 table rule on source db (without any subset rules to capture all changes) for table TAB_1
    2) creating a propagation process without any rules
    3) creating 1 apply process with a table rule for table TAB_1 without any subset_rule but with schema transformation from SCH_1 to SCH_2 (DBMS_STREAMS_ADM.RENAME_SCHEMA) => this works correct !
    4) creating a subset_rule (WHERE STATUS = 1), a schema transformation from SCH_1 to SCH_2 (DBMS_STREAMS_ADM.RENAME_SCHEMA) and a tablename transformation from TAB_1 to TAB_1_SHORT (DBMS_STREAMS_ADM.RENAME_SCHEMA) for table TAB_1_SHORT => doesn`t work, no errors posted in dba_apply_error !
    in another try, i tried to transform the table- and the schemaname in the capture process, with the effect, that my first table TAB_1 wouldn`t be streamed again.
    i`m not sure, what is wrong. i think it must be possible to stream a table to two different targettables in the same schema on another db, isn`t it ?
    hopefully greetings
    Flo

    Hello
    Adding a normal table rule and also a subset rule would not work since the rule would be evaluated only once in the positive rule set. If the normal rule is evaluated first then the subset rule and rest of the rules would not be evaluated at all hence this would not work.
    This can be done using either of the following methods:
    Method 1:
         1. Use the declarative transformation on the capture/apply and rename the schema from SCH_1 to SCH_2.
         2. Now, on the apply site, set a DML Handler for SCH_2.TAB_1
         3. In DML Handler perform the following:
              a. get the column value for STATUS
              b. check if the value for STATUS=1, if yes then modify the object name to TAB_1_SHORT and execute the LCR.
              c. else do not modify the object name (leave it as it is, TAB_1) and execute the LCR.
    Method 2:
         1. Add a DML Handler for SCH_1.TAB_1
         2. In the DML Handler perform:
              a. use set_object_owner method of LCR$_ROW_RECORD to rename the owner to SCH_2
              b. get the column value for STATUS
              c. check if the value for STATUS=1, if yes then modify the object name to TAB_1_SHORT and execute the LCR.
              d. else do not modify the object name (leave it as it is, TAB_1) and execute the LCR.
    Please let me know if you need sample code.          
    Thanks,
    Rijesh

  • How to add round image inside the table column? with different background color, column value should appear in the middle of the round portion.

    Hi
    This question is related to table component implementation.
    I want to display the column values inside the small round image with different colors and value should appear in the middle.

    Hi,
    >>1. how can i align Title(DCS Clinical Report-Technician wise) center of pdf report with image named:logo5.png immediately coming to it's right?.
    2. how do i add the given below row and it's data to my top my table in pdf report from c# windows forms using itextsharp?
    3.how to make my column headers in bold?<<
    I’m sorry for the issue that you are hitting now.
    This itextsharp is third party control, for this issue, I recommended to consult the control provider directly, I think they can give more precise troubleshooting.
    http://sourceforge.net/projects/itextsharp/
    Thanks for your understanding.
    Regards,
    Marvin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to deploy ear file with jar file and war file with different names

    Hi,
    As part of weblogic migration from WL 6.1 sp3 to WL 10, Iam facing some problem.
    Problem:
    I have one ear file(abc.ear) to deploy which contains one jar file(xyz.jar) and one war file(pqr.war).
    In config.xml file of WL 6.1, it was mentioned as :
    <Application Deployed="true" Name="abc" Path="./config/mydomain/applications/abc.ear">
    <EJBComponent Name="xyz" Targets="myserver" URI="xyz.jar"/>
    <WebAppComponent Name="pqr" Targets="myserver" URI="pqr.war"/>
    </Application>.
    The above is working fine.
    But in config.xml file WL10,I cannot mention the same.
    I need to have different application anmes for ear,jar and war.If I deploy as a ear file,the jar and war files are deployed with the same ear file name.
    I tried the following options:
    1) Deploying as a ear file by adding <sub-deployments>
    2) Deploying both war and jar seperately which is not recommended in my application.
    Please provide the content I should place in the config.xml so that everything works fine correctly.
    Any help is appreciated.

    Hi,
    As part of weblogic migration from WL 6.1 sp3 to WL 10, Iam facing some problem.
    Problem:
    I have one ear file(abc.ear) to deploy which contains one jar file(xyz.jar) and one war file(pqr.war).
    In config.xml file of WL 6.1, it was mentioned as :
    <Application Deployed="true" Name="abc" Path="./config/mydomain/applications/abc.ear">
    <EJBComponent Name="xyz" Targets="myserver" URI="xyz.jar"/>
    <WebAppComponent Name="pqr" Targets="myserver" URI="pqr.war"/>
    </Application>.
    The above is working fine.
    But in config.xml file WL10,I cannot mention the same.
    I need to have different application anmes for ear,jar and war.If I deploy as a ear file,the jar and war files are deployed with the same ear file name.
    I tried the following options:
    1) Deploying as a ear file by adding <sub-deployments>
    2) Deploying both war and jar seperately which is not recommended in my application.
    Please provide the content I should place in the config.xml so that everything works fine correctly.
    Any help is appreciated.

Maybe you are looking for

  • Creation of GL Master Records

    Dear Gurus, We are currently on R/3 3.1I and are in the process of doing an fresh installation of ECC 6.0. To upload the GL Master Records, I had planned to use LSMW, but how do we down load the data from R/3 3.1I for the upload into ECC 6.0 using LS

  • Video Memory Used

    Is there an app or utility that would tell me how much RAM the video card is using? Does it show up under Activity Monitor? I am trying to trouble shoot a problem just a few of us are having using a projector via the video out showing a quicktime vid

  • Upgrading to Snow Leopard from10.5.8.

    Just about to upgrade from OS 10.5.8 to Snow Leopard. Am i right to say that all my data files will remain untouched. Dont want to wipe my photos/tunes!

  • How much does a logic board cost?

    So apparently my logic board needs to be replaced. I have the apple protection care package, but was told that if I have any liquid spilt on my logic board that I would have to paid to get it fixed. I was just wondering how much one cost, and if my l

  • Importance of quality box in sap landscape.

    Hi All, Can anyone explain about why generally all the companies using the QUALITY BOX in the SAP LANDSCAPE, Anyway we are already testing with the DEVELOPMENT BOX, so we can transfer directly from DEV to PRD na.....Why the need of QTY there. This qu