CrackBerry is Under New Ownership and Relaunching in 2022 Beyond BlackBerry - Read All About It!
- The latest version of App World can't be launched with launcher apps.
The above is not the case for your ShortcutMe application with macro capablity:
If you have upgraded to the latest version of App World and want to create a shortcut to launch it from anywhere, open ShortcutMe, hit BB key and select 'Add' and set the shortcut as follows:
--AppName: Universal Search
--Parameter:
--Macros:
KeyApp World;
Delay 1000;
NavMoveDown1;
Delay 200;
Navclick;
--Display Name: App WorldLast edited by Vijik; 05-29-12 at 11:48 AM.
05-28-12 01:38 PMLike 0 - @vijik: Thanks for sharing this work-around!
Another related question: What is the app name for App World to use with the WaitTil macro? The following waits forever even though it has worked in the past:
WaitTil IsAppForeground BlackBerry App World;
I also found that the following macro returns immediately, regardless of whether App World is running:
WaitTil !IsAppRunning BlackBerry App World;05-29-12 07:58 AMLike 0 - @vijik: Thanks for sharing this work-around!
Another related question: What is the app name for App World to use with the WaitTil macro? The following waits forever even though it has worked in the past:
WaitTil IsAppForeground BlackBerry App World;
I also found that the following macro returns immediately, regardless of whether App World is running:
WaitTil !IsAppRunning BlackBerry App World;
Try these instead:
WaitTil IsModuleForeground net_rim_bb_appworld;
WaitTil !IsModuleRunning net_rim_bb_appworld;visortgw likes this.05-29-12 10:34 AMLike 1 - The latest version of App World can't be launched with launcher apps.
The above is not the case for your ShortcutMe application with macro capablity:
If you have upgraded to the latest version of App World and want to create a shortcut to launch it from anywhere, open ShortcutMe, hit BB key and select 'Add' and set the shortcut as follows:
--AppName: Universal Search
--Parameter:
--Macros:
InjectDelay50;
Delay 500;
Key.; ESCKey;
KeyApp World;
Delay 1000;
NavMoveDown1;
Delay 200;
Navclick;
--Display Name: App WorldVijik likes this.05-29-12 11:45 AMLike 1 - I have now modified two macros that previously did not work with the latest release of App World that make use of the Universal Search work-around that @vijik provided -- one to reset the App World cache and a second to check for updated apps in App World. I actually cascade the two macros to reset the cache AND check for updates. FYI, delays can be adjusted for your particular device.
Reset App World Cache
--AppName: Universal Search
--Parameter:
--Macros:Delay500;--Display Name: Reset App World Cache
InjectDelay50;
Key.; ESCKey;
KeyApp World;
Delay 2500;
/* >>> Adjust navigation to select "App World" within Universal Search. <<< */
NavMoveDown1; Delay 100;
NavMoveRight1; Delay 100;
NavClick;
WaitTil IsModuleForeground net_rim_bb_appworld;
Vibrate 50;
Delay10000;
Vibrate 50;
ALTPlusKeyrst;
WaitTil !IsModuleRunning net_rim_bb_appworld;
Vibrate 50;
/* >>> Exit Universal Search. <<< */
ESCKey;
ESCKey;
Check for App Updates
--AppName: Universal Search
--Parameter:
--Macros:
Delay500;--Display Name: Check for App Updates
InjectDelay25;
Key.; ESCKey;
KeyApp World;
Delay 2500;
/* >>> Adjust navigation to select "App World" within Universal Search. <<< */
NavMoveDown1; Delay 100;
NavMoveRight1; Delay 100;
NavClick;
WaitTil IsModuleForeground net_rim_bb_appworld;
Delay27500;
/* Adjust navigation to select "My World" */
NavMoveDown2; Delay100;
NavMoveRight1; Delay100;
NavClick;
Vibrate 50;
/* >>> Once list of apps appear within "My World", manually download updated apps (if any), and ESC to exit App World. <<< */
WaitTil !IsModuleRunning net_rim_bb_appworld;
Vibrate 50;
/* >>> Exit Universal Search. <<< */
ESCKey;
ESCKey;
As always, I am open to suggestions for improvements.Last edited by visortgw; 05-29-12 at 02:29 PM.
Vijik likes this.05-29-12 02:01 PMLike 1
- Forum
- BlackBerry OS Phone Forums
- BlackBerry OS Apps
How to launch App World with ShortcutMe
LINK TO POST COPIED TO CLIPBOARD