Intro
This is a tutorial intended for users that are unable to run Compiz, or have no hardware acceleration(like me ).
Steps
  1. Get WMctrl
    So, first thing you need is WMctrl, which is a powerful command line tool, capable of moving windows around to different workspace, resizing, and all that stuff.
    Code:
    sudo apt-get install wmctrl
  2. Create the perl script
    Code:
    vim ~/Screenlethide.pl
    Make sure you are in Insert mode and paste the following:
    Code:
    #!/usr/bin/perl
    @window_list = `wmctrl -l | grep "Screenlet.py"`;
    foreach my $win (@window_list){
    $id=substr $win,0,10;;
    $desktop = substr($win,10,3);
    if($desktop==0){
      $moveto="1";
    }else{
      $moveto="0";
    }
    system("wmctrl -i -r $id -t $moveto"); 
    }
    save and chmod the file to execute:
    Code:
    chmod +x Screenlethide.pl
    What that script does is take any window whose title ends in "Screenlet.py" and moves it to workspace 1. If its already in that workspace it moves it to workspace 0.
  3. Add the Shortcut
    Now add the shortcut to Gnome(I don't know how to do this in KDE )
    Code:
    gnome-keybinding-properties
    Click 'Add, Name it "Screenlet hide", and put the command as "~/Screenlethide.pl"
    Click Apply.
    Add a shortcut.

Let me know if I did anything wrong!