Creating Keyboard shortcut for two different actions with same menu name..

Am using soundforge pro .. I have to process nearly 1000 audio files, and want to create shortcuts for "Smooth"
The problem is there are two Menu names named "Smooth"
Fade In > Smooth
Fade Out > Smooth
I want to assign different shortcuts for each one.. Is it possible ?
Any help is appreciated

Hi,
I would use IP Address range boundaries instead which I normally do anyway instead for the AD site.
Regards,
Jörgen
-- My System Center blog ccmexec.com -- Twitter
@ccmexec

Similar Messages

  • Requesting license for two different ssystem with same SID

    Hello,
    Is it possible to request 2 license for two systems with same SID. The systems are on different machines and their HW key are different but both have same SID. While requesting license, will it permit to create 2 different license with SAME SID.
    Regards
    Deb

    Hi Anil,
    The one for which the license is already requested is the main development portal with SID EP2. I have installed one local version of SAP EP with the same SID EP2. Now we need a license for the second system.
    If we change the HW key of the original license which is already applied in the main development portal under SMP and apply for a new license for the new local version, can it have any future implications, if any.
    What is the best way to deal with the situation. Is there a full proof way to change the SID of the EP system, which I can try in the local EP system.
    Regards
    Deb

  • Same query takes different time for two different users with same privileges

    Hi,
    Just wanted to know if it is possible for an INSERT query to take different amount of time for two different users for the same volume of data. If so, what could be the reason? I would like to add that we are not executing the query simultaneously. But it is always faster for user1(within 10-20 seconds) and slower for user2(takes around 8-10 minutes).

    Show execution plan for each user. I think there is other reasons which you didn't not tell

  • How do i create keyboard shortcuts for the different markup colours?

    I want to be able to quickly highlight with different colours in the preview app.

    You didn't read my post. You merely read your preconceived notion of what I posted.
    If you want to pop up menus and type letters, turn on the functions to activate the menus in the Keyboard & Text Input of Keyboard Shortcuts.
    You can then activate the menus, type letters of the menu to select the one you want, then type letters for the menu items to select those. Once selected, arrow down or space to drop the menu or activate a hierarchical submenu.
    These items allow you to activate the various menus, Dock, toolbars, etc.
    They are default to Function keys (in order), but I changed mine to things that make sense.

  • Confusion of aliases made for two SMB shares with same folder name

    I have a SMB file server here which provides me with a Departmental personal home filestore and also a Departmental personal web filestore. The name of the folder is the same in each case - my Departmental user name. If I check the Finder Preference 'Show these items on the desktop' for 'Connected servers', I can use the Finder's 'Connect to Server' for each - smb://webhome/john and smb://home/john - to make each of them appear on my desktop as 'john'.
    It's rather confusing to have to remember that (say) the upper 'john' is my home filestore and the lower one is my web filestore, so I use Finder 'Make Alias' (e.g. via right click on each when selected') to create two aliases I can name 'web john' and 'home john'.
    Alas, each alias always points to the same (apparently randomly selected) share!
    This looks like a bug to me. I've tried unchecking the Finder 'Connected servers' preference, and then the shares appear under folder 'SHARE' - where I cannot create any aliases at all; I get the error message 'Operation could not be completed (Error -8058)'.
    Reader, do you know of a work-around which will let me distinguish on my desktop between my two identically-named folders from different shares? Alas, I have no power to change the names of the original folders.
    John A. Murdie

    +It's rather confusing to have to remember that (say) the upper 'john' is my home filestore and the lower one is my web filestore, so I use Finder 'Make Alias' (e.g. via right click on each when selected') to create two aliases I can name 'web john' and 'home john'.+
    I should have said that one cannot rename the share icons in the usual way. Not being able to do this is the real bug here. If I'd been able to do this I wouldn't have need to try to create aliases, of course.
    John A. Murdie

  • Where statement on two different tables with same column name

    Hello,
    I have 2 financial tables:
    tblincome, tblexpenses
    in each table I have column name "monthPayed" (have values of all the months of the year).
    I would like to create a balance view table that will show me the financial status for the Q1 (for example).
    I have a column totalIncome and totalExpended respectively.
    I've create a view table that shows me the financial balance at the moment but I want it to be devide to Quarters of the year...
    Regards

     
    Please post DDL, so that people do not have to guess what the keys, constraints, Declarative Referential Integrity, data types, etc. in your schema are. Learn how to follow ISO-11179 data element naming conventions and formatting rules. Temporal data should
    use ISO-8601 formats. Code should be in Standard SQL as much as possible and not local dialect. 
    This is minimal polite behavior on SQL forums. Where is the code you already tried? Or are you so lazy, so rude or so privileged that you did not do anything for yourself? 
    In fact that silly “tbl-” prefix is so bad that it has a name! It is called Tibbling and Phil Factor even wrote a humor article on bad programmers that use it. 
    Your narrative is vague; it sounds like this is the DDL: 
    CREATE TABLE Incomes
    (payment_month CHAR(10) NOT NULL PRIMARY KEY,
     income_amt DECIMAL(12,2) NOT NULL
      CHECK (income_amt > 0.00),
    CREATE TABLE Expenses
    (payment_month CHAR(10) NOT NULL PRIMARY KEY,
     expense_amt DECIMAL(12,2) NOT NULL
      CHECK (expense_amt > 0.00),
    >> in each table I have column name "monthPayed" (have values of all the months of the year). <<
    I hope not! 2014 has not gotten to September, November or December yet! And the ISO-11179 data element name should be “payment_month”; but it is still wrong! An expense is not a payment! An income is not a payment! 
    >> I would like to create a balance view table that will show me the financial status for the Q1 (for example). <<
    Report Period Table
    Since SQL is a database language, we prefer to do look ups and not calculations. They can be optimized while temporal math messes up optimization. A useful idiom is a report period calendar that everyone uses so there is no way to get disagreements in the DML.
    The report period table gives a name to a range of dates that is common to the entire enterprise. 
    CREATE TABLE Something_Report_Periods
    (something_report_name CHAR(10) NOT NULL PRIMARY KEY
       CHECK (something_report_name LIKE <pattern>),
     something_report_start_date DATE NOT NULL,
     something_report_end_date DATE NOT NULL,
      CONSTRAINT date_ordering
        CHECK (something_report_start_date <= something_report_end_date),
    etc);
    These report periods can overlap or have gaps. I like the MySQL convention of using double zeroes for months and years, That is 'yyyy-mm-00' for a month within a year and 'yyyy-00-00' for the whole year. The advantages are that it will sort with the ISO-8601
    data format required by Standard SQL and it is language independent. The pattern for validation is '[12][0-9][0-9][0-9]-00-00' and '[12][0-9][0-9][0-9]-[01][0-9]-00'
    Now figure it out for yourself, show us what effort you put into this, then we will help you. 
    --CELKO-- Books in Celko Series for Morgan-Kaufmann Publishing: Analytics and OLAP in SQL / Data and Databases: Concepts in Practice Data / Measurements and Standards in SQL SQL for Smarties / SQL Programming Style / SQL Puzzles and Answers / Thinking
    in Sets / Trees and Hierarchies in SQL

  • Create keyboard shortcuts for apple mail lion

    Can one create keyboard shortcuts for Apple Mail (in Lion)?  How does one do that? 

    System Preferences->Keyboard; Keyboard Shortcuts is the place to go to add shortcuts to any application.
    Select Application Shortcuts and add yours there.
    regards

  • Create keyboard shortcuts for different mailboxes?

    How can I create keyboard shortcuts to "Get Mail" from individual email accounts? (ie NOT all accounts at once). I'm sure I did it in the Panther version of Mail – by using the Keyboards Sys Pref – but I can't seem to get it to work this time...
    Thanks!

    System Preferences->Keyboard; Keyboard Shortcuts is the place to go to add shortcuts to any application.
    Select Application Shortcuts and add yours there.
    regards

  • How to overload two different procedure with just one name in to package

    i have created two procedure avg1 and avg2.avg1 calculate average of total salary based on e_id and avg2 calculate average based on j_id.now i want to create a package with specification and body where i want to use just one name -avg- for two different procedure.

    You can overload the same name for procedure as long as their formal parameters differ in number, order, or datatype family.
    Read more about overloading in documentation

  • How do I setup a keyboard shortcut for an item in the Services menu?

    In every Application, under the application menu is a "Services" folder. I would like to be able to setup a keyboard shortcut for one of these services (namely Skype).
    I am a heavy user of the "Services > Skype > Call" command and I would love to have a keyboard shortcut for it.
    I went to System Preferences > Keyboard & Mouse > Keyboard Shortcuts, clicked on the plus sign to create a new shortcut (all applications) and entered "Services…Skype…Call" and assigned it to a keyboard command (shift-F1).
    It doesn't work. Any clue as to what I am doing wrong?

    Hi
    Also - have a look at the reply I gave at the link below (sorry - don't know how to insert proper links here).
    May be of interest, maybe not.
    Best,
    D
    http://discussions.apple.com/message.jspa?messageID=7932030#7932030

  • Are there keyboard shortcuts for switching to desktops with fullscreen apps?

    Coming from SL, one functionality that I used a lot was keyboard shortcuts to go to different applications.
    For instance, I had assigned Mail to Space 2, iTunes to Space 3 etc.
    Then it was possible to instantly go to Mail by pressing alt-2, to iTunes with alt-3 etc.
    In Lion, it is possible to assign Applications to desktops, and use the same commands to go to these desktops. However, as soon as an application is 'fullscreened' it leaves its previous desktop, and cannot be reached with the old keyboard shortcuts.
    My question:
    is it possible to create a keyboard shortcut to switch to a desktop containing a fullscreen app?

    This is quite possible. The way to do it is with keyboard shortcuts. If you check the appropriate boxes you can use a keyboard combination of Control and the Desktop #. It makes it very easy to swtich between desktops.

  • Different  timeout for two protected applications with same AM 7.1

    I have a AM 7.1 configuration planned.
    We need to protect two different application url's; And provide different session & idle timeout for each of these url's.
    Can we configure different timeout for two protected URL's / applications configured with same AM 7.1 ?
    /Kasi

    Hi,
    I have not actually configured this, but you can create a policy for that application with an "Active Session Time" condition.
    You also have an option there to destroy or not the session.
    But if the user is allowed to do SSO between the 2 applications then you should consider if you can destroy the session or not.
    Hope this helps.
    Andrei

  • Different Bank charges GL account for two company codes with same COA

    Hi,
    While configuring OBXK ( Automatic GL account for bank charges)  , I see there is provision to enter only one GL account per chart of accounts.
    We have two company codes using same chart of accounts but different bank charges GL account. Please tell me how to configure this.
    Thanks,
    suresh

    Hi,
    Thanks Krishnan and Chandra.
    I agree with you it could be the same GL account for bank charges, but the business requirement is such that in one of the two company codes, bank charges are required to be tracked separately to be subsequently transferred to the other company code. This means two separate GL accounts are required for two company codes which needs to be configured in OBXK.
    Hope this clarifies my query further.
    thanks,
    suresh

  • Is it possible to create a shortcut for current time / date with iPhone native apps?

    is it possible to create a shortcut to insert the current time / date in a text such as a Note with iPhone (IOS 6) native apps (not a 3rd. party app)?
    By "shortcut" I mean a combination of characters, the same as under settings/general/keyboards/shortcuts.
    thanks.

    Code that does it is here:
    http://forum.java.sun.com/thread.jsp?forum=48&thread=453846&tstart=0&trange=15
    MOD

  • How to use same DFF for two different forms with :BLOCK.field reference

    Hi,
    Can anyone suggest how to use the same dff in two different forms by using :BLOCK.field reference.
    Scenario is the same DFF is referenced by two forms, viz. Form-1 & Form-2.
    Form-1 Reference Field is :BLOCK.field name, but the same block is not available in Form-2, which throws an error while opening it.
    Any pointers please.
    Thanks,

    In the environment I currently have access to do not have similar setup.
    Let say you setup the DFF1 default value to $HEADER.customer_name, the name of the DFF is CUSTOMER_NAME, description can be anything.
    In DFF2, default value should be a SQL, where you can reference the DFF1. For example, SELECT DECODE($FLEX.CUSTOMER_NAME, 'ABC', 1, 'DEF', 2, NULL) FROM dual
    In this case, you can reference the DFF1.

Maybe you are looking for

  • How to create user in UME,

    HI gurus, In requeriment for project, the customer request is about a aplication to create user in the UME automaticall after fill a survey with questions of security, my questions are; 1. Exist a way for create users automatically ??, a RFC ? a Web

  • Why won't my iPod touch recognize my 30pin cord? (1st generation)

    (ipod touch first generation) i plug in my 30pin cord(to charge and to play music on my car stereo) and it wont recognize it. i have to either apply lots of pressure of pushing the plug in and up in order for it to connect. i used rubber bands to hol

  • SRL on standby db

    Hi all, I have created a physical standby database following the steps mentioned in Metalink document id [ID 789370.1]. that worked well and logs are being applied when i switch logfile in primary. But in the document in step 11 it is asking for crea

  • Lightroom 4.3 installation issue

    On my 64-bit Windows machine, the install removed my desktop shortcut, but did not put a new one in its place. When I went to look for it under the Lanch menu, it could not be found. I had to go into the Programs folder and send a shortcut to the des

  • Strange powersave mode

    In PowerMac G4 MDD 2 x 867 there appeared, after being two months not in use, a strange new behaviour: If computer is not in active use in about 10 minutes, the OS does not react to the mouse click or keyboard signal in few seconds. In other words, t