make program hidden from user

Login to reply to this topic.
Mon, 2005-07-25 07:36
Joined: 2005-07-13
Forum posts: 75
hi guys...
just wondering if anyone has any ideas on how to make my program hidden from the user, and to run in the background on firing of a trigger, ie time/startup etc

I am using Java predominately but I also have JNI calls aswell to get systeminfo etc

any ideas would be awesome!
cheers!

"beer is proof that god loves us, and wants us to be happy!"


Mon, 2005-07-25 08:05
Joined: 2004-09-06
Forum posts: 235
Re: make program hidden from user
Make the hidden flag as KAppIsHidden in the AIF resource file.

RESOURCE AIF_DATA
{
     app_uid=0x1023457F;
   num_icons=2;
   embeddability = KAppEmbeddable;
   hidden=KAppIsHidden;
}

The application will not appear in the Application Grid Menu.
Thu, 2006-01-05 01:50
Joined: 2005-11-28
Forum posts: 18
Re: make program hidden from user
  I ahve tried your code, but it still appear in the menu

  Besides addding  the line "hidden=KAppIsHidden;
    do i have to do other thing to make it hidden from user?
   did i miss out anything?
  • Login to reply to this topic.