When the Suite has be Suite

- Handling of layers
- Font handling
- Save for Web & Device
- support sliders for the change parameters as PS
- saving, replace and using workspace
- saving, replace and using print presents
- saving, replace and using PDF presents
- easy moving swatch colours with name by clipboard.
etc. etc...
- For example, why today there is no such thing as a simple set of keyboard shortcuts or PS Indd to choose?
Sometimes it seems to me that I am the only one that uses more than one program in the package (CS4) MASTER.

Katrina,
And a few more,
http://new.myfonts.com/WhatTheFont/
http://www.whatfontis.com/
and one especially for script fonts,
http://www.bowfinprintworks.com/ScriptIDGuide.html
and there are many friends in the Typography Forum, who seem to cover almost all fonts between them
http://forums.adobe.com/community/design_development/typography?view=discussions&start=0

Similar Messages

  • How do I sign my VB / VS 2010 based shared COM add-in for Excel so it loads when the user has checked "Require application add-ins to be signed by a trusted publisher"?

    My COM add-in is developed using VS 2010 and VB. It's a shared COM add-in (not VSTO) and it works with Excel 2007 - 2013. My installer is signed with a code signing certificate but it would appear that my add-in's .dll should also be signed if the user has
    checked the "Require application add-ins to be signed by a trusted publisher" option.
    The "Sign the assembly" option is checked in my add-in's VB -> My Project -> Signing. I have a .snk file selected which I seem to recall generating 6 or 7 years ago when I ported the COM add-in from VB6 to .NET. 
    I have an up-to-date Comodo code signing certificate (a pfx file called MyCompanyCodeSigningCertificatePrivateKey.pfx) which I purchased to use with the installer and was wondering if and how I could use this.
    I tried selecting my pfx file in the My Project -> Signing -> "Choose a strong name key file" dialog. It made a copy of the pfx file in my project folder but when I tried to build the project, I got the following error:
    Error 1 Cannot import the following key file: MyCompanyCodeSigningCertificatePrivateKey.pfx. The key file may be password protected. To correct this, try to import the certificate again or manually install the certificate to the Strong Name CSP with the
    following key container name: VS_KEY_C0B6F251F0FB6016
    After a little research, I found out I might be able to use signtool to sign the dll in a post-build step.
    I added the following command to the post-build event, before the command I use to regasm the assembly.
    "path to signtool\signtool" sign /f "MyCompanyCodeSigningCertificatePrivateKey.pfx" /p "xxxx" /v "$(TargetPath)"
    When I built the project, the dll appeared to get signed (the output window showed a bunch of confirming text as well as "Successfully signed: c:\MyAddIn\bin\Release\MyAddIn.dll") but the next step in the post-build (regasm myaddin.dll /codebase)
    issued a warning RA0000 (see below) but reported "Types registered successfully".
    Here's the message I get from regasm, even though the output window says the dll was sucessfully signed:
    RegAsm : warning RA0000: Registering an unsigned assembly with /codebase can cause your assembly to interfere with other applications that may be installed on the same computer. The /codebase switch is intended to be used only with signed assemblies. Please give your assembly a strong name and re-register it.
    Types registered successfully
    I'm not using a shim if that makes a difference.
    How do I sign my add-in so it loads when the user has checked "Require application add-ins to be signed by a trusted publisher"?
    Any tips would be appreciated.

    Hello,
    Why do you need to use the regasm utility from the post-build action?
    There is a difference between signing the assembly with a strong name and digital signature. The
    How to: Sign an Assembly with a Strong Name article in MSDN explains how to sign an assembly with a strong name (.snk). See
    How to digitally sign a strong named assembly for adding a digital signature.
    You may also find the
    What's the Difference, Part Five: certificate signing vs strong naming article helpful.

  • HT201272 How do I download previously purchased albums from iTunes when the album has either disappeared from my computer or the tunes are not playable?  The album shows as purchased on the iTunes store, but not available to download to my authorized devi

    How do I download previously purchased albums from iTunes when the album has either disappeared from my computer or the tunes are not playable?  The albums show as purchased on the iTunes store, but not available to download to my authorized device.  I also have albums that appear in my library, but are not able to be added to my iPod from my computer

    When you download something from the iCloud, it is a brand new licensed copy. Your iCloud account just contains a notation that you have this app. It isn't storing an actual copy of the app from your Mac.

  • How do i get an itunes library from a phone when the computer has crashed and it needs to go on a new computer

    How do i get an itunes library from a phone when the computer has crashed and it needs to go on a new computer

    1) ensure iTunes is authorized for your iTunes store account(s)
    2) connect your device and right-click or control-click it in the iTunes Source list, then choose transfer purchases from the shortcut menu that appears.
    3) sync the device
    iTunes will wipe the iPhone but, since you transferred your purchases in the previous step, your content will be in your library and you can re-populate the iPhone with it.
    above works for purchases from the iTunes store. for everything else, check out this post by Zevoneer.

  • Oracle Text Index  - Trailing Search when the String has spaces

    Hi Am trying to use CONTAINS to tune a trailing LIKE search.  But it's not working when the string has spaces in between them
    For e.g in say if table person has column name which has following values
    JOHN
    FRED JOHNSON
    JOHN ROBERTS
    select * from person where name like 'JOHN%'
    Above query will give JOHN and JOHN ROBERTS. If i use CONTAINS As below
    select * from person where CONTAINS(name,'JOHN%',1) > 0
    It brings back all three records. If i remove spaces in column itself, its working bit if i try to remove spaces in Query, i am getting a Text error as i have Text index only on the name column.  I would like to know is it possible to use CONTAINS but get same result set on trailing search as how a normal LIKE will do.
    Below is how i did Index creation
    create index txt_idx1 on person (name)
    indextype is ctxsys.context
    parameters('DATASTORE ctxsys.default_datastore');

    You could use some method, like a multi_column_datastore or user_datastore to append some specific starting characters, then include those in your search, as shown below.
    SCOTT@orcl12c> CREATE TABLE person
      2    (name  VARCHAR2(60))
      3  /
    Table created.
    SCOTT@orcl12c> INSERT ALL
      2  INTO person VALUES ('JOHN')
      3  INTO person VALUES ('FRED JOHNSON')
      4  INTO person VALUES ('JOHN ROBERTS')
      5  SELECT * FROM DUAL
      6  /
    3 rows created.
    SCOTT@orcl12c> BEGIN
      2    CTX_DDL.CREATE_PREFERENCE ('test_ds', 'MULTI_COLUMN_DATASTORE');
      3    CTX_DDL.SET_ATTRIBUTE ('test_ds', 'COLUMNS', '''start ''||name||'' end'' name');
      4  END;
      5  /
    PL/SQL procedure successfully completed.
    SCOTT@orcl12c> create index txt_idx1 on person (name)
      2  indextype is ctxsys.context
      3  parameters('DATASTORE test_ds')
      4  /
    Index created.
    SCOTT@orcl12c> select * from person where CONTAINS(name,'start JOHN%',1) > 0
      2  /
    NAME
    JOHN
    JOHN ROBERTS
    2 rows selected.
    SCOTT@orcl12c>

  • How do you exit a game from full screen mode when the game has crashed?

    Hey there
    There has seriously got to be a better way of exiting a crashed game than just turning the power off.
    I sometimes play Sims 3 on my mac, and we all know that Sims 3 is the most poorly coded game out there, so it crashes a lot. I don't understand how you can get out of the full screen without switching the machine off the wrong way.
    I have tried every single keyboard command people say to exit full screen mode, but they don't work when the game has crashed! In fact pressed every single button on the keyboard to try and exit, but nothing works.
    On Windows it's so simple, you press the start button on the keyboard, but on a mac it doesnt work.
    So any help to what i can do?
    Thanks

    Force quit just the game itself.
    Command + option + esc
    It's like control + alt + delete on Windows.

  • I need to set up a DSN for my Thunderbird 24.3.0 or at least know when the email has been received by a client.

    My employer wants to be able to know when a client has received an email sent by us. I have researched DSN extensions and add-ons for Thunderbird but the only one I could find was not compatible with version 17. I updated to version 24 and still I can not find a solution. All we want is to be able to know when the client has received our emails.

    Hey,
    There are a number of them [https://addons.mozilla.org/en-US/thunderbird/search/?q=dsn%20extensions DSN extention search results]
    If you have any questions about the support for those add ons please see their support page that is listed on the add on profile page.

  • Can I use the "Find My iPad" app in my MacBook Pro when the iPad has a different Apple ID?

    Can I use the "Find My iPad" app in my MacBook Pro when the iPan has a different Apple ID & password than the MacBook Pro?

    On your Macbook you access Find My iPad via a Web Browser at http://icloud.com
    This will require you to sign on using the Apple ID and password used for the iPad iCloud.

  • My Iphone4 charges when The battery has fully died but when its on the lighting bolt does not appear. "Help"!

    My Iphone4 charges when The battery has fully died but when its on the lighting bolt does not appear. "Help"!

    Every iPod comes with complimentary, single-incident telephone technical support within 90 days of your iPod purchase.  If you also purchased AppleCare, then your warranty is extended for technical support and hardware coverage for two years from the original purchase date of your iPod.
    Suggest that you take full advantage of the above.

  • Iv sent an iMessage to someone abroad but deleted it before it delivered, will it still send as an iMessage when the person has wifi?

    Iv sent an iMessage to someone abroad but deleted it before it delivered, will it still send as an iMessage when the person has wifi?

    Your question is a bit unclear. However, once the message is sent, it is beyond your control. You can't unsend it. If the person has an active data connection and an iOS device, it should show as an iMessage.

  • TS3212 Why do I download iTunes when the installation has been prompted to install package

    Why do I download iTunes when the installation has been prompted to install package

    See this User Tip by turingtest2
    https://discussions.apple.com/docs/DOC-6562

  • How to find the date when the users has been created in Hyperion Essbase

    Please let me know, if there is any option or way to find the date when the users has been created in Hyperion.
    Essbase - 9.3.1.0.0
    Sun Solaris SPARC (32-bit) - 5.8
    If not in Hyperion, could you please let me know if it gets stored in the repository. If yes, please let me know the table name in Oracle.

    I don't know of a way of getting this information from Shared Services via the standard web UI. However you can see when a native user was created in openLDAP. If your users are all native then you can use an ldap browser to view the CreateTimestamp.
    Port: 58089
    User DN:CN=911,ou=People,dc=css,dc=hyperion,dc=com
    Password: Your shared services admin user password
    You should see each new native user under the ou=People and each CN will have a create timestamp.
    I can't help if all you users are external or your using the old Essbase native security.
    Gee

  • I purchased CDs and imported them into my iTunes and when the artists has other artists featured on the tracks it separates these tracks into a different album. How can I consolidate these back into one album?

    I have CDs that I've purchased from music stores (ie. Best Buy) and have imported them into my itunes library. The problem is that iTunes has separated all the tracks that feature another artist into a separate album. I want all the songs filed under the same album, so that when I play the whole album, I can hear all the songs. Also when the album work is not showing up on some of these CDs. How can I fix this?

    The sort fields should generally be empty unless you've putting in custom values to sort solo artists by their surnames. You can apply common changes to thousands of tracks at once, just don't apply the wrong change because there is no undo.
    It is a good idea to backup before undertaking large scale changes. See this backup tip for a suggested approach.
    tt2
    Message was edited by: turingtest2

  • Looking for a way to log privilege adds even when the user has that priv

    We've run into a situation where we want IDM to log privilege adds/removes, even when that privilege already exists (for add) or doesn't exist (for remove) on a person.  Let me give some background.
    We are a small team working on an IDM project, each team member with 6-30 months of experience with the IDM product.  We're using 7.1.
    We have two systems, one of which is queryable and (certain) privileges updatable via REST API -- we'll call this system REST.  The second system of course is IDM.
    When an IDM privilege is added or removed, the business requirement is to always keep IDM and REST in sync, privilege-wise.  This is no problem and we have provisioning set up to make the API call, and it works great.  However, if there is a problem with the REST API (network issue, just plain down, etc.) this sync can't happen.  So, within the provisioning framework, if there is a failure, the failure is logged and the privilege is reverted, keeping REST and IDM synced.  A job runs regularly to check this log table and re-attempt the appropriate action, which of course will trigger provisioning again, hopefully successfully.
    The problem occurs in a situation like this, where each point comes in chronological order.
    1. User X gets privilege Y granted within an IDM UI.
    2. Provisioning triggers, but for some reason the REST API call fails (twice, because of retry).
    3. The failure task for the REST API call removes privilege Y from user X.  The error is logged.
    4. After a while, some job runs which removes privilege Y from all users whose names begin with X.  Even if the job explicitly removes privilege Y from user X, this is not logged in the system in any way, doesn't trigger provisioning, etc.
    5. After another while, the "retry job" runs and attempts action #1 again.  This time, the provisioning succeeds.  Now user X has privilege Y on both IDM and REST.  However, because of step 4, clearly user X should not have privilege Y.
    The same (well, reverse) issue occurs when removing the priv in step 1 and doing a grant in step 4.  During tests, one can just set up a To Identity Center step and remove/assign a privilege to an arbitrary person, then run the job containing this step repeatedly.  If the action has no net effect, there's no record (in, for example, sentries, oentries, or indeed in mxi_(old)values).  It would be great if there was a generic way to cause these actions to be logged, and we've actually thought of a couple other cases where this logging would be useful as well.  Is there some simple way?  Is it already logged in some esoteric table we haven't thought of?
    Any thoughts on this interesting scenario would be appreciated.  Thanks!

    Hi Chris,
    If I understand correctly, since you are using the log to ensure that the privileges are synced.
    Any chance you could enhance step 4 to remove information about the failed assignment from the log, so that it will not be retried?
    Note also, that this is improved in IdM7.2 and the framework. You will only get the privilege assigned after the add-member task has successfully assigned the privilege in the back-end system (which is what you are trying to achieve).
    Best regard
    John Erik Setsaas
    Development Architect IdM

  • Log a message when the buffer has been overwritten?

    Is there a way to configure the IOS to log a message when my configured buffer is full and the oldest log entry gets overwritten?
    Logging buffered 32768

    endasil wrote:
    I agree with baftos that a screen saver is a brilliant and simple way to handle this. I don't think for your purposes you need to use JNI though. This is how I would lay it out:
    2 Programs:
    -Listener
    -ScreenSaver
    The listener's only function is to continuously loop, (utilizing Thread.sleep() to not take up much in terms of resources) checking for the existence of some dummy file on your system, say C:\Temp\inactive. If the file doesn't exist, the program increments your study time by however long it's been since it last checked.
    The screensaver is just a small native (you could do this in VB in just a few lines of code) app which blanks the screen, and exits on a mouse move or keyboard event. When the Screensaver starts, it creates C:\temp\inactive. When it exits, it deletes that file.
    JNI would probably be more stable (for instance, if your screensaver is killed by forcibly killing the process, you'd be screwed), but it also has a learning curve. Using a dummy file, on the other hand, is an indirect but fairly simple way of passing messages between programs (another way is to ping a local port, I believe, which should also work).The file idea makes me think that this is a lot simpler. The screen saver writes the file like this:
    Started: 10:00:25-blabla (whatever time date format)
    Stopped: ...
    Started: .......
    Stopped:......
    The Java program is run only when you want a report. A simple java application that grabs the file and does whatever it
    wants with it.
    Edited by: baftos on Dec 7, 2007 4:54 PM

  • My iphone got stolen and i went to find my iphone on my ipod to remote lock it and i remote locked it about 5 times and it says it will send  a email when the iphone has been locked but i never got a email does that mean the thief  has went to itunes

    so i lost my iphone and i remotely locked it on my ipod and it says i will recieve a email when its been locked but i never got one does tht mean the thief couldve went to itunes and made it a new device..?? please reply im really worried and i just go it like 2 weeks ago :3 
    and when i remote lock it am i still able to find it ??

    aww so if they restore it i wont be able to dial the old phone number that i had on it  even if i turned it on....  and since i never got a message saying that the lock has been successfully added  they already restored it :3
    and would they just get a bill of their own.. i dont want to get a bill cause of them using it..

Maybe you are looking for

  • Import from camcorder to Mac

    Hey everyone, I've got a bit of a problem here. Here's what I'm trying to do: I need to import video from a Sony TRV815 Hi-8 camcorder to one of two computers: The first is an eMac running OSX v10.3.9 and iMovie v4.0.1, and the other a Macbook runnin

  • Understanding adjustments effects on the masters?

    Hello! First time post here I have my master RAW files on my external HD, I import them into Aperture 3, I make adjustments, then I export jpegs to easily use for many things. Now, I want to clean up my aperture library. I dont want projects just han

  • How to move music files within "Gallery"

    I have music files in "Tracks" and in "Sound clips", how do I move those in "Sound clips" to "Tracks"? I didn't see any options which enable me to do that. Also all my music files are in memory card's "Sound clip" "digital" folder, so why does some f

  • I just bought a new iMac. But it has apps from another account.

    I'm a windows user who is recently interested in macs cuz they look pretty. After installing office, i went into the app store, only to find that i have new updates. so when i went to the updates tab. i found angry birds. but i didnt bought angry bir

  • Hello , need help urgently regarding MIDI USB cable

    hello , i recently bought a Midi to usb cable and i tried to connect my keyboard [ psr e303 ] to my macbook pro. When i went to the Midi Audio setup , I saw a USB2.0 icon instead of my keyboard's name. And when i went to garageband , it detected 1 mi