[SOLVED] EvilWM applications menu

Does anyone know of any good GNOME or KDE style applications menu that I can use with evilwm?
Last edited by subraizada3 (2013-08-24 17:46:32)

I mean something like the GNOME 2 menu, with all the applications in it, or the menu in the lower right of KDE.
Basically just any menu with a list of applications.
9menu could work but it requires the user to enter the applications.
The reason I need this is because I often install lots of apps at once (such as games) and look through them / delete the ones I don't like a few days later. Without a menu that adds all the applications in it, I forget about apps that I previously installed, and this can lead to a lot of bloat (dependencies also don't get uninstalled) and occasionally package conflicts.
Last edited by subraizada3 (2013-08-24 16:34:37)

Similar Messages

  • [SOLVED] Openbox Application Menu

    Good evening everyone!
    Just done a clean install of Arch and now working on my applications menu. I want a automatically generated application menu exactly like ArchBang.
    I have installed openbox-menu and all I get is "Menu not found, Please specify a menu specification file.". How do I get a menu like ArchBang without using ArchBang?
    Thanks in advance!
    Nic
    Last edited by Toxcity (2012-02-11 16:34:27)

    You're welcome mate! :)
    <menu id="apps-menu" label="Applications" execute="python2 /home/nic/.config/openbox/scripts/apps"/>
    That's the line I have in my menu.xml for the menu, it points to the script called apps. Below is the script:
    #!/usr/bin/python
    import xdg.Menu, xdg.DesktopEntry, xdg.Config
    import re, sys, os
    from xml.sax.saxutils import escape
    icons = True
    try:
    from gi.repository import Gtk
    except ImportError:
    icons = False
    def icon_attr(entry):
    if icons is False:
    return ''
    name = entry.getIcon()
    if os.path.exists(name):
    return ' icon="' + name + '"'
    # work around broken .desktop files
    # unless the icon is a full path it should not have an extension
    name = re.sub('\..{3,4}$', '', name)
    # imlib2 cannot load svg
    iconinfo = theme.lookup_icon(name, 22, Gtk.IconLookupFlags.NO_SVG)
    if iconinfo:
    iconfile = iconinfo.get_filename()
    iconinfo.free()
    if iconfile:
    return ' icon="' + iconfile + '"'
    return ''
    def entry_name(entry):
    return escape(entry.getName().encode('utf-8', 'xmlcharrefreplace'))
    def walk_menu(entry):
    if isinstance(entry, xdg.Menu.Menu) and entry.Show is True:
    print '<menu id="%s" label="%s"%s>' \
    % (entry_name(entry),
    entry_name(entry),
    escape(icon_attr(entry)))
    map(walk_menu, entry.getEntries())
    print '</menu>'
    elif isinstance(entry, xdg.Menu.MenuEntry) and entry.Show is True:
    print ' <item label="%s"%s>' % \
    (entry_name(entry.DesktopEntry).replace('"', ''),
    escape(icon_attr(entry.DesktopEntry)))
    command = re.sub(' -caption "%c"| -caption %c', ' -caption "%s"' % entry_name(entry.DesktopEntry), entry.DesktopEntry.getExec())
    command = re.sub(' [^ ]*%[fFuUdDnNickvm]', '', command)
    if entry.DesktopEntry.getTerminal():
    command = 'xterm -title "%s" -e %s' % \
    (entry_name(entry.DesktopEntry), command)
    print ' <action name="Execute">' + \
    '<command>%s</command></action>' % command
    print ' </item>'
    if len(sys.argv) > 1:
    menufile = sys.argv[1] + '.menu'
    else:
    menufile = 'applications.menu'
    lang = os.environ.get('LANG')
    if lang:
    xdg.Config.setLocale(lang)
    # lie to get the same menu as in GNOME
    xdg.Config.setWindowManager('GNOME')
    if icons:
    theme = Gtk.IconTheme.get_default()
    menu = xdg.Menu.parse(menufile)
    print '<?xml version="1.0" encoding="UTF-8"?>'
    print '<openbox_pipe_menu>'
    map(walk_menu, menu.getEntries())
    print '</openbox_pipe_menu>'
    Make sure you have gnome-menu installed and it should work fine. I am not the author of the script so cannot take any praise for it. ;)

  • [SOLVED] XFCE - Editing Applications Menu

    Hi there,
    The applications menu seems to update happily in XFCE when i use pacman.. however pacman has placed some items (eg. XMMS) into an incorrect category (in this case "Other").
    How can I edit the menu so that XMMS is placed into the "Multimedia" group? When I use the menu editor in XFCE, it allows me to add or remove items from the menu, EXCEPT it has an "include" entry that seems to include another menu called "system"...?
    Where can i find this "system" menu??
    Many thanks,
    KC
    Last edited by killercow (2008-09-03 18:12:34)

    tesjo wrote:It uses *.desktop entries of either /usr/share/applications/ or ~/.local/share applications/ just edit these file with a text editor, look at a few and you'll see how to get the group, title or icon you want in the menu.
    Ah ha!
    I had found the list of applications in /usr/share/applications and was trying to edit the entry for xmms, but whatever I did it didn't work, so I thought I was being silly and asked if there was a menu config file i had to use...
    Turns out that there was an entry in the ~/.local/share/applications that was overwriting my changes to the /usr/share... settings! How frustrating, glad to have got it sorted lol.
    Thanks for your quick advice!
    [SOLVED!]
    Last edited by killercow (2008-09-03 18:13:16)

  • [SOLVED] XFCE customize menu help: applications and directory menu

    I've been trying to make some progress with customizing XFCE menus. There are two menus I'm trying to create, listed below.
    Yes, i have read http://wiki.xfce.org/howto/customize-menu
    No, I'm not saying I understood all of it.
    1. I want to have a custom Applications menu that lists all installed applications, without categorization. Preferably alphabetical. I'm guessing it has a lot to do with adding a lot of <include> directives.
    Here's what I've tinkered with so far, which produces categories of apps.
    <!DOCTYPE Menu PUBLIC "-//freedesktop//DTD Menu 1.0//EN"
    "http://www.freedesktop.org/standards/menu-spec/1.0/menu.dtd">
    <Menu>
    <Name>Xfce</Name>
    <DefaultAppDirs/>
    <DefaultDirectoryDirs/>
    <DefaultMergeDirs/>
    <Include>
    <Filename>xfce4-run.desktop</Filename>
    </Include>
    <Layout>
    <Merge type="all"/>
    <Separator/>
    <Menuname>Settings</Menuname>
    <Filename>xfce4-run.desktop</Filename>
    </Layout>
    <Menu>
    <Name>Settings</Name>
    <Directory>xfce-settings.directory</Directory>
    <Include>
    <Category>Settings</Category>
    </Include>
    <Layout>
    <Filename>xfce-settings-manager.desktop</Filename>
    <Separator/>
    <Merge type="all"/>
    </Layout>
    <Menu>
    <Name>Screensavers</Name>
    <Directory>xfce-screensavers.directory</Directory>
    <Include>
    <Category>Screensaver</Category>
    </Include>
    </Menu>
    </Menu>
    <Menu>
    <Name>Accessories</Name>
    <Directory>xfce-accessories.directory</Directory>
    <Include>
    <Or>
    <Category>Accessibility</Category>
    <Category>Core</Category>
    <Category>Legacy</Category>
    <Category>Utility</Category>
    </Or>
    </Include>
    <Exclude>
    <Or>
    <Filename>exo-file-manager.desktop</Filename>
    <Filename>exo-terminal-emulator.desktop</Filename>
    <Filename>xfce4-about.desktop</Filename>
    <Filename>xfce4-run.desktop</Filename>
    </Or>
    </Exclude>
    </Menu>
    <Menu>
    <Name>Development</Name>
    <Directory>xfce-development.directory</Directory>
    <Include>
    <Category>Development</Category>
    </Include>
    </Menu>
    <Menu>
    <Name>Education</Name>
    <Directory>xfce-education.directory</Directory>
    <Include>
    <Category>Education</Category>
    </Include>
    </Menu>
    <Menu>
    <Name>Games</Name>
    <Directory>xfce-games.directory</Directory>
    <Include>
    <Category>Game</Category>
    </Include>
    </Menu>
    <Menu>
    <Name>Graphics</Name>
    <Directory>xfce-graphics.directory</Directory>
    <Include>
    <Category>Graphics</Category>
    </Include>
    </Menu>
    <Menu>
    <Name>Multimedia</Name>
    <Directory>xfce-multimedia.directory</Directory>
    <Include>
    <Category>Audio</Category>
    <Category>Video</Category>
    <Category>AudioVideo</Category>
    </Include>
    </Menu>
    <Menu>
    <Name>Network</Name>
    <Directory>xfce-network.directory</Directory>
    <Include>
    <Category>Network</Category>
    </Include>
    <Exclude>
    <Or>
    <Filename>exo-mail-reader.desktop</Filename>
    <Filename>exo-web-browser.desktop</Filename>
    </Or>
    </Exclude>
    </Menu>
    <Menu>
    <Name>Office</Name>
    <Directory>xfce-office.directory</Directory>
    <Include>
    <Category>Office</Category>
    </Include>
    </Menu>
    <Menu>
    <Name>System</Name>
    <Directory>xfce-system.directory</Directory>
    <Include>
    <Or>
    <Category>Emulator</Category>
    <Category>System</Category>
    </Or>
    </Include>
    <Exclude>
    <Or>
    <Filename>xfce4-session-logout.desktop</Filename>
    </Or>
    </Exclude>
    </Menu>
    <Menu>
    <Name>Other</Name>
    <Directory>xfce-other.directory</Directory>
    <OnlyUnallocated/>
    <Include>
    <All/>
    </Include>
    </Menu>
    </Menu>
    2. I want to make a different Directory menu, possibly by implicating a custom Applications menu. If I could locate the .menu file for the Directory menu panel item, I would like to make minor adjustments to the menu, and invoke it through the Applications menu panel item.
    I should state that what I'm trying to accomplish is
    a) to remove the submenu-like options with the Directory menu (open Folder, open in Terminal) to have one-click to open the folder directory
    b) to add a label next to the panel icon (aesthetics), which would be accomplished through using the Applications menu panel item.
    Edit: clarity
    Last edited by heyitstallchris (2014-07-31 02:02:36)

    Firstly, I'll tackle menu 1.
    No need to create an include line for every .desktop file. Do the following:
    $ mkdir ~/.config/menus
    $ cd ~/.config/menus
    $ touch custom-apps.menu
    Edit the file we have just created and populate it with the following:
    <!DOCTYPE Menu PUBLIC "-//freedesktop//DTD Menu 1.0//EN"
    "http://www.freedesktop.org/standards/menu-spec/1.0/menu.dtd">
    <Menu>
    <Name>Applications</Name>
    <DefaultAppDirs/>
    <DefaultDirectoryDirs/>
    <DefaultMergeDirs/>
    <Include>
    <Category>X-Xfce-Toplevel</Category>
    <Category>Settings</Category>
    <Category>Accessibility</Category>
    <Category>Core</Category>
    <Category>Legacy</Category>
    <Category>Utility</Category>
    <Category>Development</Category>
    <Category>Education</Category>
    <Category>Game</Category>
    <Category>Graphics</Category>
    <Category>Audio</Category>
    <Category>Video</Category>
    <Category>AudioVideo</Category>
    <Category>Network</Category>
    <Category>Office</Category>
    <Category>System</Category>
    </Include>
    <Layout>
    <Merge type="all"/>
    </Layout>
    </Menu>
    Now just create an application menu panel item and point it to the custom menu file we just created.
    This will display every application installed on your system, and any custom .desktop entries you may create (as long as they are set in one of the categories in the menu file). Add or remove categories as you need.
    If you want to have the "Run Program" and other "Action" items that are in the default Xfce menu, add a category line for "X-Xfce-Toplevel"
    Alternatively, you can forego all the <Category></Category> lines and simply use <All/>
    [EDIT] and since this is using garcon (Xfce's menu library), the apps will be in alphabetical order [/EDIT]
    Cheers.
    Last edited by Padfoot (2014-07-17 09:42:16)

  • [SOLVED] Gnome 3.2 - Applications Menu empty after update

    After updating all my boxes from 3.0 to 3.2, one of them got the Applications Menu wiped. The .desktop files are all there but none show up in the Menu, it's just empty.
    Apart from that everything seems to work just fine, did anyone came across a similiar problem or knows a solution ? I tried to google how to regenerate the Menu but failed to find anything useful and/or gnome3 related.
    Last edited by Votan (2011-10-05 10:03:09)

    Votan wrote:
    After updating all my boxes from 3.0 to 3.2, one of them got the Applications Menu wiped. The .desktop files are all there but none show up in the Menu, it's just empty.
    Apart from that everything seems to work just fine, did anyone came across a similiar problem or knows a solution ? I tried to google how to regenerate the Menu but failed to find anything useful and/or gnome3 related.
    Have you rebooted? Mine regenerated after a power on/off

  • [Solved] Gnome 3.6. - no application menu after update

    After the Gnome-Shell-Update there are no applications anymore in the Gnome desktop. I have to start programmes with 'Alt + F2' and it's not possible to pin them in the Dash. They don't appear in the Gnome's desktop search either.
    If I'm starting alacarte the error message "can not load menu tree 'applications.menus'" appeared. Has somebody an idea how to fix this problem? Thanks in advantage!
    Last edited by flowie (2013-02-16 19:31:32)

    I found the solution:
    The applications.menu in ~/.config/menus/ was empty. I copied the application.menu from /etc/xdg/menus/ to the .config-file. Now, everything works fine.

  • Hide icons in applications menu

    I am having the problem that the Applications "menu", in grid mode, on the dock is getting stuffed with lots of things I almost or never need.
    That, I could accept.
    But when you are forced to for example install Microsoft Silverlight, the installer puts some icon in the applications menu that you never click. I have trashed this icon and everything seems fine until now... I hope...
    Yesterday, I wanted to try the trial of the new Corel Painter 12. To be able to download it, the website wants you to install some kind of plugin called Akamai. Once installed, you get this subfolder menu Akamai in your applications menu. Then I went back and Akamai started to download the trail and installed it. Now there's another folder in the applications menu called Corel Painter 12, which seem to contain necessary extra brushes and support files for some reason.
    1. I don't want to need to see that Akamai is on my system as I will probably never need it again. But I don't want to use the uninstaller inside the Akamai folder because maybe I will need it someday in the future. Trashing the Akamai folder will take away my possibility to use the uninstaller to remove the software cleanly from my mac. The only way out seems moving this folder to anoder place on the disk, while I hope I will remember that I put it there when I need it.
    2. I only want the Painter 12 icon in my applications menu, I don't want to click on the Corel Painter 12 folder and then on the subfolder, click on Painter 12. I am not interested in the sub-sub-folders. I know I can move the Painter 12 item upwards but it might give problems. Trashing the sub-subfolders will prevent me from using them if I find use for them. Moving them to ander place on the disk may be a solution, but again, I hope I find it back when I do need it, and maybe the software will not work if I do this.
    But these folders make my applications grid UGLY and stuffed. I never use Calculator, I use SpeedCrunch. Still I don't want to trash Calculator because I might want it back and it is standard system software. Again: I want it away until I find need for it.
    Is there a proper/nicer way to solve this? Can't I just HIDE an icon from the menu, can I create some kind of symlink Painter 12 to the "hidden" Corel Painter 12 subfolder's Painter 12 app? How?
    Sorry for the long text, the reason is that I want you to fully understand my problem before answering with the things that I already suggested.

    You can create symlinks and store them at your application folder, not the systems - where all your apps probably live. Then you could add this folder to your sidebar and even tell new Finder windows to open this new location of your symlinked apps. Hit the Terminal.app and type ln -s "original item path (i.e.where it is)" "new link path" (i.e.where you want it to be). Note that you can drag the app to the terminal, bypassing the need to type its location as you can also drag the new destination afterwards.
    The only problem I visualize from reading your post, is that you probably wouldn't like for the apps to have the traditional shortcut arrow on its bottom left corner…
    BTW, you can trash Akamai via the uninstaller. Next time you need something via this app, simply let it be installed again (it's very lightweight). I tend to use it only when the files/installers I am transferring are too large to take the risk of stopping midway through.
    Hope this helps.

  • CS6: Application menu disappears when document size is maximized

    Whenever I maximize a document in Illu. CS6 it overrides the application menues! It simply covers my whole screen making it impossible to reach my menues unless i drag the documents corners to make it smaller or click the minimize icon. Is it supposed to be like this? Very annoying.

    Well, I remember having a chat about fullscreen views when CS5 came out cause there was reports of simmilar problems and I had some instabilites myself, I actually placed an international call to Adobe in Ireland cause I had just bought the CS5 MA Collection (Not cheap as you may know) back then and the correspondance actually ended up with me having to return the hard copies in return for a new one. when I installed that new software I didn't experience the same problem. Now I have a brand new CS6 MA Collection bought in 2014 and the fullsize issues are even worse, meaning they are constant. It is hardly my macines Larry cause as mentioned I've installed this MA Collection on two different machines. Both of them high-end graphic stations that way exceeds Adobes minimum hardware requirments. I chose to keep my XP 32-bit license on one of them cause I enjoy that OS, the other is a W7 machine. They are not connected in any way, they are stand-alone clients and it's just too strange if both machines should be the weak spot here. I don't think so. I've been Goggling around about this particulare problem and I'm not alone experiencing the same things, it's about time Adobe made a bugfix and sorted this out, cause its developed into a major fault.
    I posted this problem here on this forum just in case someone could deliver a spesific problem solver that could temporarly fix the issue, a new upgrade file or something, getting in touch with Adobe has become all impossible. All I get is some ignorant indian support worker sitting in New Dehli reading from a pre-made script. It's almost comical. I'm pretty sure this is a class A bug in Illustrator, more so now than ever. Unless someone had a definitive plausable cause description to why this is happening on two different machines. I have a corp. licens so I can install on more than two clients, I will install Illustrator CS6 on a third machine with W7 tomorrow. My best guess is that it won't solve anything, if Adobe don't man up and fix this bug I will be forced to return my Master Collection cause this error is just way to massive to deal with in silence. It's like buying a car that only turns left.

  • Java Localization: Application Menu Language Support. MAC OS X 10.4.10.

    I am running a Java 1.4+ application on a Mac OS X 10.4.10 Intel.
    If I change the locale of the system to English, French or German, and I start my application, I can see the Application Menu translated properly. (I am referring to About/Preferences/Hide/Hide others/Quit).
    Any other locale I am using(Italian, Spanish, Portuguese and so on) the application menu is not translated in that language.
    Furthermore, by looking in the System Preferences/International/Languages the menu of my application is displayed in the either English, German or French depending of which one is before the other two. To give you two examples:
    Sample one:
    Italian
    Portuguese
    German
    French
    my menu will be seen in German.
    Sample two:
    Italian
    Portuguese
    English
    German
    French
    my menu will be seen in English.
    I don't use any <language>.lproj folder in my bundle.
    By searching on the internet I found the following article that talks about similar issue:
    http://lists.apple.com/archives/Java-dev/2004/Sep/msg00200.html
    I was looking also in /System/Library/Frameworks/JavaVM.framework/Versions/1.4.2/Resources and I could only see English, French and German .lproj folders. I've created a similar Italian.lproj folder. It still didn't show my application menu in Italian language.
    I am wondering if anyone of you had such an issue and how did you solve it.
    Cheers,
    Bogdan

    Thank you for your suggestions; maybe I solved your and my "problem".
    I tried to translate and make a package.
    I tried it on my Mac and now the menu is in my language (Italian).
    If you want, I can send this package.
    If you can help me, we can write a guide and publish it in a site.
    Andrea

  • Boot / application menu on start up (E420)

    I keep getting the boot/application menu when I turn my laptop on. My computer is making a funny sound too.
    Background: My computer froze for 2 minutes and I force shut it down. When I started it back up, I got the boot/application menu and the noise came back. I'm not a tech person and didn't know what to do. I force shut it down again, waited a minute and turned it back on, the noise came back, and I got the boot/application menu again. I force shut it down again, waited several minutes, and turned it back on, the noise came back, and got the boot/application menu again. One last time, I force shut it down and waited 10 minutes, but this time it went to the regular Windows menu and the noise stopped.
    Please help. This happened once over the summer too.

    Ok, thanks.
    The first thing I'd recommend you do is to backup your personal files (documents, pictures, etc) from your hard drive to other media (external USB drive, flash drive, network share) as soon as possible.
    While it certainly may be something else, a clicking sound can be a sign of a failing hard drive. That would also mesh with you getting the boot menu intermittently upon starting the machine. That would typically happen when the BIOS can't find a bootable operating system, in this case, on the hard drive. When you do get booted successfully, are you seeing any error messages in Lenovo Solution Center (or elsewhere)?
    If you're technically inclined, or if not, if you can enlist the help of someone who is, you could open the bottom access cover and try to reseat the hard drive, on the off chance that it isn't making a good connection for some reason. You can refer to your hardware manual (pages 60-61) for the steps: http://download.lenovo.com/ibmdl/pub/pc/pccbbs/mobiles_pdf/e420_e425_hmm_en_0a60575_05.pdf
    Sorry... I'm sure this isn't what you want to hear.
    Regards.
    English Community   Deutsche Community   Comunidad en Español   Русскоязычное Сообщество
    Community Resources: Participation Rules • Images in posts • Search (Advanced) • Private Messaging
    PM requests for individual support are not answered. If a post solves your issue, please mark it so.
    X1C3 Helix X220 X301 X200T T61p T60p Y3P • T520 T420 T510 T400 R400 T61 Y2P Y13
    I am not a Lenovo employee.

  • Boot / application menu on start up

    I have a Think pad Edge E420 and I was using it and it was really slow, so I forced to turn off. When I turned it back on I got the boot / application menu, plus it's making a funny fan sound. Please help.

    Ok, thanks.
    The first thing I'd recommend you do is to backup your personal files (documents, pictures, etc) from your hard drive to other media (external USB drive, flash drive, network share) as soon as possible.
    While it certainly may be something else, a clicking sound can be a sign of a failing hard drive. That would also mesh with you getting the boot menu intermittently upon starting the machine. That would typically happen when the BIOS can't find a bootable operating system, in this case, on the hard drive. When you do get booted successfully, are you seeing any error messages in Lenovo Solution Center (or elsewhere)?
    If you're technically inclined, or if not, if you can enlist the help of someone who is, you could open the bottom access cover and try to reseat the hard drive, on the off chance that it isn't making a good connection for some reason. You can refer to your hardware manual (pages 60-61) for the steps: http://download.lenovo.com/ibmdl/pub/pc/pccbbs/mobiles_pdf/e420_e425_hmm_en_0a60575_05.pdf
    Sorry... I'm sure this isn't what you want to hear.
    Regards.
    English Community   Deutsche Community   Comunidad en Español   Русскоязычное Сообщество
    Community Resources: Participation Rules • Images in posts • Search (Advanced) • Private Messaging
    PM requests for individual support are not answered. If a post solves your issue, please mark it so.
    X1C3 Helix X220 X301 X200T T61p T60p Y3P • T520 T420 T510 T400 R400 T61 Y2P Y13
    I am not a Lenovo employee.

  • Where is "applications menu", Diagnostics?

    I think my Touchstone might not be working and was trying to follow the directions listed on the support page - http://kb.hpwebos.com/wps/portal/kb2/na/usb/touchstonefortouchpad/unlocked/solutions/article/47863_e... 
    It lists a "applications menu" which doesn't show up as a choice on my TP.  I have model number FB356uT#ABA running webOS 3.0.2
    Post relates to: HP TouchPad (WiFi)
    This question was solved.
    View Solution.

    Nevermind, I found it... it's in the upperleft corner

  • XML Publisher - EBS Applications Menu

    Is there a way to create an XML Publisher report in Oracle Applications and then provide it as a menu item on the Applications menu for a specific responsibility? Also, will XMLP reports that use the secure views in Oracle HCM Applications be restricted for users who access them through the apps menu?
    I am considering use of XMLP to create reports for one of the self-service HCM applications.
    Thanks.

    Hi,
    If you use the secured views when you are writing the report then your data should be restricted accordingly. I haven't tried with HCM but it definitely works with the standard Operating Unit security.
    Thanks
    Paul

  • How to change font-size of application menu

    I want to change font-size of application menu. How?

    Hi,
    To change the font size of the Application menu, you need to change main.css file.
    at 'body, td, input, select, textarea' class.
    For more detail about main.css, please refer Bookshelf
    Siebel Developer's Reference at [8 Cascading Style Sheets].
    Regards,
    Joseph Arul Dass

  • How to call a JSP page from Applications menu?

    Hi partners,
    I am still looking for "how to call a JSP page from Applications menu?", I mean instead of calling a form, I want to call a JSP page which is staying in a OC4J repository which is located in another server.
    Any idea will be really appreciated.
    Thanks in advance.
    Frank Mtz.

    Hi Frank,
    if u know the solution please share it with me. i'm looking for the same scenario.
    thanks in advance,
    anish

Maybe you are looking for