Saturday, March 10, 2012

[Code] Pop up Script in Monte

Based on Events and Event Handler
function Popup()
{
    newPopObj = new Object();
    newPopObj.onEvent = function ()
    {
        phone.mmi.Host.dispatchEvent(new phone.mmi.events.HostEvent(phone.mmi.Host.__get__ON_WIDGET_EMSG_DELIVERED(), ""));
        //make ur mc visible
    };
    _root.ExtendedEvents.onWidgetEmsgDelivered.addListener(newPopObj);
    _root.ExtendedEvents = ExtendedEvents;
    newPopObj2 = new Object();
    newPopObj2.onEvent = function (_arg1)
    {
        phone.mmi.Host.dispatchEvent(new phone.mmi.events.HostEvent(phone.mmi.Host.__get__ON_WIDGET_EMSG_DESTROY(), _arg1));
      //When u get a msg this is called. So make your mc play or show notif.
    };
    _root.ExtendedEvents.onWidgetEmsgDestroy.addListener(newPopObj2);
    _root.ExtendedEvents = ExtendedEvents;
   
} // End of the function
setInterval(Popup, 1000);

Use this function in your mod! :)

Sunday, March 4, 2012

[Windows] Windows 8 Consumer Preview Product Keys Download

This is amazing! Windows 8 Consumer Preview has arrived!
Lost the Product key while installation?
So here you go.. 

Saturday, March 3, 2012

How to Select / Deselect patches

Here are the instructions to select/deselect patches

Switch off your phone.
Press Lock + Switch on.
Use vol keys to navigate.
Camera key to select/deselect.
Lock to save.

Now after launching it go to Patch menu and navigate to the req. patch using Vol up/Down key and press camera button and lock button..
Go back to Main menu and select Restart.

Friday, March 2, 2012