Custom Game Menu in j2me

Hello everyone, I'm a newbie at J2ME and I am trying to create a mobile game.
I've been reading on some tutorials and books on J2ME programming, and I've noticed that they create simple menus ( the menu examples they have are pretty simple, doesn't have any background but just a simple list of selections).
What I need for the game is a menu that can have a background and the menu items are highlighted. Can anyone tell me how to do this?
I really appreciate your help. Thank you in advance.

Hi, kikoy87
I think Jason Lam's J2ME game development book is for you. You can download the book from http://sourceforge.net/projects/j2megamingbook/ .It is free . I think you must read Chapter 19 - Custom Interface and using the given examples implementing a custom interface is very simple. I have used that book to learn about custom interface (main menu with sound effect, splash screen) implementing for my game project.
Jestan.

Similar Messages

  • Where can I find a good tutorial for mobile game developement with J2ME ?

    Hi All,
    I'm completely new to J2ME programming. But I have past experience on J2SE developement. Now I would like to know that where can I find a good tutorial for mobile game developement with J2ME ?
    I'll be very greatful if I can find a useful step-by-step tutorial (eg. "The Java Tutorial" for J2SE)
    Please point me ot the direction.
    Thanks
    ZuriJAckshoT

    ibook-widgets.com    have a free tutorial book in the iBooks store.  Search for "Create your first interactive book using iBooks Author"   they also  sell widgets.
    I  dont have any connection - I  found their eBook in the store long ago  and used it to learn more about iBA.
    The best advice though, is be patient,  go back over the process step by step, I cannot  access the Help files for some reason.. but i am sure its in their.

  • Error while creating iViews after implementing custom hover menu in NW 7.3

    Dear Experts,
    We recently implemented a customized hover menu in Portal 7.3. Since then while creating an iView we are getting the following error :
    java.net.MalformedURLException: Illegal character in query at index 1023: /irj/servlet/prt/portal/prtroot/com.sap.portal.pagebuilder.IviewModeProxy?iview_id=pcd%3Aportal_content%2Fcom.sap.pct%2Fadmin.templates%2Fiviews%2Fcom.sap.portal.adminStudioRedirector&iview_mode=default&isEmbedded=false&workUnitIndex=0&oClass=com.sapportals.portal.iview&PagePath=pcd:portal_content/administrator/super_admin/super_admin_role/com.sap.portal.content_administration/com.sap.portal.content_admin_ws/com.sap.portal.wd_portal_content&SerWinIdString=&tabID=Tab054b1825_40f6_11e1_8169_00000ace34a2&workUnit=pcd%3Aportal_content%2Fcom.sap.pct%2Fadmin.templates%2Fiviews%2Feditors%2Fcom.sap.portal.appintegratorWizard&com.sap.portal.reserved.cnfgurl=pcd%3Aportal_content%2Fadministrator%2Fsuper_admin%2Fsuper_admin_role%2Fcom.sap.portal.content_administration%2Fcom.sap.portal.content_admin_ws%2Fcom.sap.portal.wd_portal_content%2Fcom.sap.portal.admin.studio.configuration&ComponentType=com.sapportals.portal.iview&NavigationTarget=navurl://e9d5d97dd3e55c9763a4973a016a3cc6&where=pcd%3Aportal_content&TarTitle=Portal Content Management&NavMode=0&sessionID=1326796101929&PrevNavTarget=navurl://032ac1f471768f5a16cac8e152546fd3&objectID=pcd%3Aportal_content&HistoryMode=1&com.sap.portal.reserved.wd.pb.restart=false&what=portal_content/templates/iviews/sap_bi7x_report_iview&workUnitUniqueId=054b1824-40f6-11e1-81f7-00000ace34a2&editorID=Tab054b1825_40f6_11e1_8169_00000ace34a2&displayName=New+iView&ClientWindowID=WID1326795999656
    The error persists for all iView templates. Please provide your inputs.
    Best Regards
    Gaurang Dayal

    Hi Gaurang Dayal,
    The problematic part is the (first) space character within the parameter
    TarTitle=Portal Content Management
    You'd have to examine why this is not escaped.
    Hope it helps
    Detlev

  • Creation of Custom context menu in CL_GUI_TEXTEDIT

    Hello all,
    I need to develop a custom context menu in the Text Editor.
    I am using the <b>CONTEXT_MENU</b> event of the class
    <b>CL_GUI_TEXTEDIT </b>for the same.
    It is giving a short dump with an exception 'empty_obj' in the method
    <b>CL_CTXMNU_MGR=>CREATE_PROXY</b>.
    Please help.

    Hello Tejas
    The following sample report ZUS_SDN_TEXTEDIT_CTXMENU shows how to trigger context menus in text editor. Please note that the editor must be set <b>enabled</b>.
    If you inactivate subroutine <b>SET_REGISTERED_EVENTS</b> the new context menu function will no be displayed. Thus you need to <b>register</b> the event for context menu handling.
    *& Report  ZUS_SDN_TEXTEDIT_CTXMENU
    *& Flow logic of screen 100.
    *      PROCESS BEFORE OUTPUT.
    *       MODULE STATUS_0100.
    *      PROCESS AFTER INPUT.
    *       MODULE USER_COMMAND_0100.
    REPORT  ZUS_SDN_TEXTEDIT_CTXMENU.
    TYPE-POOLS: cntl.  " Types for Controls
    DATA:
      gd_okcode      TYPE ui_func,
      go_docking     TYPE REF TO cl_gui_docking_container,
      go_textedit    TYPE REF TO cl_gui_textedit,
      gd_name        TYPE thead-tdname,
      gs_header      TYPE thead,
      gd_langu       TYPE thead-tdspras,
      gt_lines       TYPE STANDARD TABLE OF tline.
    *       CLASS lcl_eventhandler DEFINITION
    CLASS lcl_eventhandler DEFINITION.
      PUBLIC SECTION.
        CLASS-METHODS:
          handle_context_menu
            FOR EVENT context_menu OF cl_gui_textedit
              IMPORTING
                menu
                sender,
          handle_ctxmenu_selected
            FOR EVENT context_menu_selected OF cl_gui_textedit
              IMPORTING
                fcode
                sender.
    ENDCLASS.                    "lcl_eventhandler DEFINITION
    *       CLASS lcl_eventhandler IMPLEMENTATION
    CLASS lcl_eventhandler IMPLEMENTATION.
      METHOD handle_context_menu.
        CALL METHOD menu->add_function
          EXPORTING
            fcode       = 'MY_FUNC'
            text        = 'My Function'
    *        ICON        =
    *        FTYPE       =
    *        DISABLED    =
    *        HIDDEN      =
    *        CHECKED     =
    *        ACCELERATOR =
      ENDMETHOD.                    "handle_context_menu
      METHOD handle_ctxmenu_selected.
        CASE fcode.
          WHEN 'MY_FUNC'.
            MESSAGE 'My function selected from ctxmenu' TYPE 'I'.
          WHEN OTHERS.
        ENDCASE.
      ENDMETHOD.                    "handle_ctxmenu_selected
    ENDCLASS.                    "lcl_eventhandler IMPLEMENTATION
    PARAMETERS:
      p_pspnr    TYPE prps-pspnr.
    START-OF-SELECTION.
    * Get the text object
      gs_header-tdid = 'LTXT'.  " long text
      gs_header-tdspras = syst-langu.
      CONCATENATE syst-langu p_pspnr
          INTO gs_header-tdname.
      gs_header-tdobject = 'PMS'.
      CALL FUNCTION 'READ_TEXT'
        EXPORTING
    *     CLIENT                        = SY-MANDT
          id                            = gs_header-tdid
          language                      = gs_header-tdspras
          name                          = gs_header-tdname
          object                        = gs_header-tdobject
    *     ARCHIVE_HANDLE                = 0
    *     LOCAL_CAT                     = ' '
    *   IMPORTING
    *     HEADER                        =
        TABLES
          lines                         = gt_lines
        EXCEPTIONS
          id                            = 1
          language                      = 2
          name                          = 3
          not_found                     = 4
          object                        = 5
          reference_check               = 6
          wrong_access_to_archive       = 7
          OTHERS                        = 8.
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      CALL SCREEN '0100'.
    END-OF-SELECTION.
    *&      Form  SET_REGISTERED_EVENTS
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM
    set_registered_events .
    * define local data
      DATA:
        lt_events      TYPE cntl_simple_events,
        ls_event       TYPE cntl_simple_event.
      TYPES: BEGIN OF cntl_simple_event,
           eventid TYPE i,
           appl_event TYPE c,
         END OF cntl_simple_event.
      ls_event-eventid = cl_gui_textedit=>event_context_menu.
      APPEND ls_event TO lt_events.
      ls_event-eventid = cl_gui_textedit=>event_context_menu_selected.
      APPEND ls_event TO lt_events.
      CALL METHOD go_textedit->set_registered_events
        EXPORTING
          events                    = lt_events
        EXCEPTIONS
          cntl_error                = 1
          cntl_system_error         = 2
          illegal_event_combination = 3
          OTHERS                    = 4.
      IF sy-subrc <> 0.
    *   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDFORM.                    " SET_REGISTERED_EVENTS
    *&      Module  STATUS_0100  OUTPUT
    *       text
    MODULE status_0100 OUTPUT.
      SET PF-STATUS 'MAIN_0100'.
    *  SET TITLEBAR 'xxx'.
      CLEAR: gd_okcode.
      IF ( go_textedit IS NOT BOUND ).
        CREATE OBJECT go_docking
           EXPORTING
             parent                      = cl_gui_container=>screen0
    *        REPID                       =
    *        DYNNR                       =
    *        SIDE                        = DOCK_AT_LEFT
    *        EXTENSION                   = 50
    *        STYLE                       =
    *        LIFETIME                    = lifetime_default
    *        CAPTION                     =
    *        METRIC                      = 0
            ratio                       = 90
    *        NO_AUTODEF_PROGID_DYNNR     =
    *        NAME                        =
          EXCEPTIONS
            cntl_error                  = 1
            cntl_system_error           = 2
            create_error                = 3
            lifetime_error              = 4
            lifetime_dynpro_dynpro_link = 5
            OTHERS                      = 6.
        IF sy-subrc <> 0.
    *     MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
        CREATE OBJECT go_textedit
          EXPORTING
    *        MAX_NUMBER_CHARS       =
    *        STYLE                  = 0
            wordwrap_mode          =
                c_textedit_control=>wordwrap_at_windowborder
    *        WORDWRAP_POSITION      =
            wordwrap_to_linebreak_mode =
               c_textedit_control=>true
    *        FILEDROP_MODE          = DROPFILE_EVENT_OFF
            parent                 = go_docking
    *        LIFETIME               =
    *        NAME                   =
          EXCEPTIONS
            error_cntl_create      = 1
            error_cntl_init        = 2
            error_cntl_link        = 3
            error_dp_create        = 4
            gui_type_not_supported = 5
            OTHERS                 = 6.
        IF sy-subrc <> 0.
    *     MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
        CALL METHOD go_textedit->set_text_as_r3table
          EXPORTING
            table           = gt_lines
          EXCEPTIONS
            error_dp        = 1
            error_dp_create = 2
            OTHERS          = 3.
        IF sy-subrc <> 0.
    *     MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
        CALL METHOD go_textedit->set_enable
          EXPORTING
            enable            = cl_gui_cfw=>true
          EXCEPTIONS
            cntl_error        = 1
            cntl_system_error = 2
            OTHERS            = 3.
        IF sy-subrc <> 0.
    *     MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
      PERFORM set_registered_events.
      SET HANDLER:
        lcl_eventhandler=>handle_context_menu     FOR go_textedit,
        lcl_eventhandler=>handle_ctxmenu_selected FOR go_textedit.
      ENDIF.
    ENDMODULE.                 " STATUS_0100  OUTPUT
    *&      Module  USER_COMMAND_0100  INPUT
    *       text
    MODULE user_command_0100 INPUT.
      CASE gd_okcode.
        WHEN 'BACK'  OR
             'EXIT'  OR
             'CANC'.
          SET SCREEN 0. LEAVE SCREEN.
        WHEN OTHERS.
      ENDCASE.
      CLEAR: gd_okcode.
    ENDMODULE.                 " USER_COMMAND_0100  INPUT
    Regards
      Uwe

  • Interactive Report - Add a 'custom' Action Menu Item

    Hi,
    I'm wondering if it is possible to add 'custom' Action menu items to an interactive report?
    I have a situation where I want to use all the richness that an interactive report gives with it's out of the box functionality, then if a download is selected I need to be able to set a 'lock' on the currently selected records set before the records are downloaded.
    I've had a good look around the forum and various other sites and I can't seem to find anything in this area. The nearest I can find is on the OBD tutorials the ability to add a 'Reset' button.
    I know how to create custom download functionality, to which I could add the required record locking functionality and in turn link to a button, but what I don't know how to do is pull out the selection variables from the Interactive Report in order to construct my select query.
    Maybe I'm barking up the wrong tree and there's a better way if so any suggestions would be most welcome.
    Many thanks in advance Peter..
    Edited by: Pete on Jun 30, 2011 4:16 PM
    Edited by: Pete on Jun 30, 2011 4:24 PM
    Edited by: Pete on Jun 30, 2011 4:31 PM

    Hi,
    For your issue, in SharePoint Designer, Click Custom Action->View Ribbon->Create Custom Action.
    Then the extra form will show up in the Ribbon.
    Refer to the following link:
    http://www.abelsolutions.com/totm/creating-a-custom-action-in-2-steps-with-sharepoint-designer/
    Best Regards,
    Lisa Chen
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]

  • Any way to link a controls' custom shortcut menu to a new .rtm file?

    My project programmatically generates controls from a template. The template has a custom shortcut menu that is saved in the project directory, and the generated controls all work fine with this. However, now I need to be able to export the project to other directories/machines, and so now the generated controls can no longer 'find' the .rtm shortcut file, despite it being in the same folder as the control. This means if I want to be able to use the menu I have to open every generated control (which there can be hundreds of) and right-click -> advanced -> run-time shortcut menu -> and then reopen the file. 
    Is there any way to programmatically link a controls' shortcut menu to a new .rtm file, or is there any way to set a controls' custom shortcut file as a relative path instead of an absolute one?
    Cheers

    Many people can solve their problems with the 20 page limit using custom components. You should check out this thread
    http://forums.adobe.com/message/2500263#2500263
    It is possible to use the onClick -> go to State and set states on a custom component or any of its subcomponents.
    Catalyst does not currently support linking to a local files.
    -Bear

  • How to Get List Item in Custom Context Menu?

    Hi,
    I got this code from the net.
    <CustomAction Id="SPTest.CustomMenuItem.ButtonClicked"
    RegistrationType="ContentType"
    RegistrationId="0x0101"
    Location="EditControlBlock"
    ImageUrl="/_layouts/IMAGES/DOCLINK.GIF"
    Sequence="600"
    Title="Click Me!"
    Description="Shows an alert message for this content type."
    >
    <UrlAction Url="javascript:alert('Hello World!');" />
    </CustomAction>
    It creates a custom context menu. How can i get the selected item using that code..
    Sorry for the tons of question. SharePoint newbie here (5 weeks in SP), Hehhehe!

    If you can redirect your request on context.....you can try this line of code
    <UrlActionUrl=”~site/_layouts/ItemAudit.aspx?ID={ItemId}&amp;List={ListId}”/>
    The Idea is to send in query string parameter and get the ItemID in the Pageload Event of the page you want to redirect to.
    Other tokens that are available
    Token
    Replaced By
    ~site/
    SPContext.Current.Web.ServerRelativeUrl
    ~sitecollection/
    SPContext.Current.Site.ServerRelativeUrl
    {ItemId}
    item.ID.ToString()
    {ItemUrl}
    item.Url
    {SiteUrl}
    web.Url
    {ListId}
    list.ID.ToString(“B”)
    {RecurrenceId}
    item.RecurrenceID
    Srikant N , MCPD SharePoint Developer 2010

  • Bug or Feature? Array Custom Contextual Menu Destroys "Delete" and "Insert" Element!

    Step to Reproduce:
    - Create an Array (doesn't matter of what type).
    - Ctrl-M (to switch to Run Mode)
    - Notice that:
           - when you Right-Click on the Array borders, you have access to an "Empty Array" menu item among other things
           - when you Right-Click in an Array element, you have access to an "Insert Element Before" and a "Delete Element" menu item among other things
    - Now switch back to Edit Mode and modify the contextual menu in the following way:
            - Advanced>>Run-Time Shortcut Menu>>Edit...
            - Edit>>Copy Entire Menu
            - Switch to "Custom" menu (instead of "Default"): the menu disappears and is replaced by a single ??? item
            - Edit>>Paste: The default menu reappears with the ??? on top
            - Create you favorite custom menu item by editing the ??? item (say: Do Nothing)
    - Save the menu with the control and switch to Run Mode (Ctrl-M).
    - Now try the first 3 steps above: wherever you right-click, you have access to the Custom Menu, but the Array Element contextual menu is GONE.
    In other words, you cannot (it seems) define a custom contextual menu for an array without destroying the default contextual menu for its elements.
    Therefore, if you want to preserve the ability to Insert and Delete Elements in an array, you have to add these two items to the Array contextual menu and juggle with the position of the right-click to figure out whether or not to display them...

    Well, I created in LabVIEW 2012 such a control and added part of the default menu in the way you described with copy-paste as a submenu to an Edit entry in my custom menu and it did not disappear:
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • Can I create a custom DVD menu in Premiere Pro 2.0?

    I like the templates I have, but is there a way I can create a custom DVD menu in PP 2.0?

    I would also suggest using the same general naming conventions for your Main and Scene Selection Menus. Names, like this: NTSC_abstract_s_mm.psd and NTSC_abstract_s_sm.psd. In this case, I would change the word "abstract" to indicate your Project, or similar.
    Also, in PrPro 2.0, your Menus will be in Adobe Premiere Pro 2.0\DVD Templates\[Your New Folder].
    Good luck,
    Hunt

  • How to implemenet "Edit in Browser" and "View in Browser" in custom ECB Menu

    Hi,
    i have build a custom ECB menu. I implemented for example "Edit in Microsoft xxx" Item successfully.
    setDocType();
    if (currentItemAppName != "" && currentItemOpenControl != "") {
    strDisplayText = "";
    if (currentItemAppName != " ")
    strDisplayText = StBuildParam(L_EditIn_Text, currentItemAppName);
    else {
    var objEditor = StsOpenEnsureEx2(currentItemOpenControl + ".3");
    if (objEditor != null)
    strDisplayText = L_EditInApplication_Text;
    if (strDisplayText != "") {
    strAction = "editDocumentWithProgID2('" + currentItemFileUrl + "', '" + currentItemProgId + "', 'SharePoint.OpenDocuments', '0', '" + ctx.HttpRoot + "', '0')";
    strImagePath = ctx.imagesPath + currentItemIcon;
    CAMOpt(m, strDisplayText, strAction, strImagePath, null, 260);
    CAMSep(m);
    But i couldnt find any information to "Edit in Browser" and "View in Browser". I also look in the core.js and couldnt find any information about this.
    Can someone help? How could i
    implemenet "Edit in Browser" and "View in Browser" in my custom ECB Menu?
    Best Regards
    Bog
    Developers Field Notes | www.bog1.de

    Hi,
    According to your post, my understanding is that you wanted to custom the “View in Browser” and “Edit in Browser” with ECB menu.
    Per my knowledge, the view in browser and edit in browser use the STSNavigate method to navigate the page.
    The URL would like below.
    Edit in Browser:
    http://YourServerName/sites/YourSiteName/_layouts/WordEditor.aspx?id=/sites/YourSIteName/YourLibraryName/YourFileName
    View in Browser:
    http://YourServerName/sites/YourSiteName/_layouts/WordViewer.aspx?id=/sites/YourSIteName/YourLibraryName/YourFileName
    We can get the file name, then use following method to customize the view in browser or edit in browser.
    function Custom_AddDocLibMenuItems(m, ctx) {
    CAMOpt(m, 'Custom Edit In Browser', 'javascript:STSNavigate(siteurl+"_layouts/WordEditor.aspx?id="+currentItemFileUrl)');
    CAMSep(m);
    </script>
    http://weblogs.asp.net/jan/customizing-the-sharepoint-ecb-with-javascript-part-1
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • Custom Ribbon Menu in MS Project Professional 2013

    Hi all,
    I want to create a custom ribbon menu in MS Project Professional 2013 but I am not sure how to save it as a template and apply it enterprise wide.
    Or is it something that needs to be packaged?
    Thanks!
    SJ

    Apologies for the delay. To get this working in VBA you need to construct a Ribbon XML format version of the menu as you want it. I've copied an example below, but there is a
    Microsoft page with information on how the schema works. Key lessons I've learnt are that:
    button id and group id values - doesn't seem to matter what they are, but they must be unique
    imageMSOs - for the gallery of images that you can choose from is published by Microsoft
    here. I found various pages that described how to add custom images to the ribbon in Excel, but I never managed to get them to work for me, so just stuck with the images in this file.
    Don't expect any meaningful error messages if you make mistakes in the XML - it just won't appear. I found putting the value of the string into an XML editor was useful for highlighting some errors.
    The ribbon menu is actually applied to projects rather than the application, so if you don't have any projects open, then the ribbon menu won't appear.
    Here's my example, which adds a "New Menu" tab to the ribbon, with a couple of buttons to launch macros. This can just be added to a new module in your global file.
    '===========================================================================
    ' Developed by A Simpson, 27 November 2013
    '===========================================================================
    Public Sub evst_AddCustomRibbon()
    Dim customUiXml As String
    Dim pj As Project
    customUiXml = "<mso:customUI xmlns:mso=""http://schemas.microsoft.com/office/2009/07/customui"" loadImage=""LoadImage"" >" _
    & "<mso:ribbon><mso:tabs><mso:tab id=""evst"" label=""New Menu"">"
    customUiXml = customUiXml _
    & "<mso:group id=""group0"" label=""Reporting"">" _
    & "<mso:button id=""button0-1"" label=""Task Usage+"" size=""large"" " _
    & "imageMso=""TaskUsageViewGallery"" onAction=""Macro1"" " _
    & "supertip=""Gives a report of the projected expenditure on the project.""/>" _
    & "<mso:button id=""button0-2"" label=""Resource Usage+"" size=""large"" " _
    & "imageMso=""ResourceAllViewsGallery"" onAction=""Macro2"" " _
    & "supertip=""Gives the projected headcount of the project in FTE values."" />" _
    & "</mso:group>"
    customUiXml = customUiXml _
    & "<mso:group id=""group1"" label=""Eversight QA"">" _
    & "<mso:button id=""button1-1"" label=""DCMA 14 point Analysis"" size=""normal"" " _
    & "imageMso=""GroupResolveConflictsAndErrors"" onAction=""Macro3"" " & "supertip=""Executes the DCMA 14 point assessment of the current schedule.""/>" _
    & "<mso:button id=""button1-2"" label=""Eversight Advanced QA"" size=""normal"" " _
    & "imageMso=""PwaProjectProgressUpdate"" onAction=""Macro4"" " & "supertip=""Executes the Eversight QA Advanced checks, as configured in Eversight > Options."" />" _
    & "<mso:button id=""button1-3"" label=""Eversight Basic QA"" size=""normal"" " _
    & "imageMso=""PwaProjectProgressUpdate"" onAction=""Macro5"" " & "supertip=""Executes the Eversight QA Basic checks, as configured in Eversight > Options.""/>" _
    & "</mso:group>"
    customUiXml = customUiXml _
    & "</mso:tab></mso:tabs></mso:ribbon></mso:customUI>"
    For Each pj In Application.Projects
    pj.SetCustomUI (customUiXml)
    Next pj
    End Sub
    You'll also need an event which executes this macro. The following code goes in the "Microsoft Project Objects > ThisProject (Global.MPT)" module within the global file:
    Option Explicit
    Public WithEvents MSPApp As Application
    Private Sub MSPApp_WindowActivate(ByVal activatedWindow As Window)
    evst_AddCustomRibbon
    End Sub
    I hope that gets you started,
    Thanks,
    Andrew
    Andrew Simpson
    Founder – Eversight Ltd
    E: [email protected]
    W: www.eversight.co.uk
    Download Eversight for MS Project — a free add-on which helps users build high quality schedules with MS project.

  • Adobe Photoshop Elements 11 to create custom DVD Menu

    Hi,
    I know that starting from EL 11 it is possible through Photoshop EL 11 to create custom DVD Menu starting from scratch.
    I fail finding on the Internet proper documentation for both creating it on Photoshop EL 11 and importing/using it on Premeiere EL 11.
    I sometimes wish to create a Web DVD to put on the Internet and all I need is a nice background picture and a Play button.
    how to do so? Where can I get detailed documentation and vidoes?
    Thank you

    The only problem that you might have, other than getting all of the naming and structural aspects correct (very specific), would be with the creation of Layer Sets in PSE. I am not sure if they have been added to PSE, and they are necessary for creating the Buttons. As I use Photoshop, and do not own PSE, I cannot tell you whether Layer Sets have been added.
    This discussion, in the Photoshop Forum, goes into more detail on creating Menu Sets for PrE, in Photoshop: http://forums.adobe.com/message/2490846#2490846
    I strongly recommend that one spend some time with one of the PrE Template Menu Sets, studying every aspect of what is reqired. Even though I create Menus (for Encore), and Menu Sets for PrE, I still will use one of those Templates as a "guide."
    Now, if PSE does not yet have Layer Sets, one can still find an existing Template Menu Set, that comes close to what they wish to do, and heavily modify that in PSE.
    One thing that trips up many DVD Menu designers, when they start out, is that NO Button may overlap any other Button, even by 1 pixel.
    Good luck,
    Hunt
    PS - if PSE has added Layer Set creation (it has been able to edit, just not create them, for many versions now), please post that information, as it will help me, in helping others.

  • Game menu not showing in iTunes/game not in iPod

    I had to rebuild my iTunes library, and when I synched my iPod nano (5G) the game I purchased wasn't on the device, and there's no game menu in iTunes when I plug it in.  The game is still in the actual library, in a folder called iPod Games, but the iTunes refuses to install it on the iPod.  The weird thing is that the built-in games for the iPod (Klondike, Maze, Vortex) are still on the iPod, but I can't find them anywhere in the iTunes library - there's only and empty folder called Klondike.  I've tried moving around the iPod Games folder to different places within the ../ Music/ iTunes folder, but that got me nowhere.

    Drag it to the library in the open iTunes application window.
    (114006)

  • How to make a game menu..

    How do you go abouts on making a game menu???
    I Know how to make a button with gotoAndStop, and gotoAndplay. I understand timeline coding. And have started with classes and OOP, im ok at writing classes i guess.
    But I have know idea how to make a menu that has basic things like instructions start ect basic things.. I have a library with a exported SWC, so i presume i need to grab my graphical assets from this, correct? or is there other ways?

    Thank you for this i have stumbled upon this before.
    Now really the real question is how do i add my game to that? I have a Main class attached to my game currently.. With a FLA holding graphics (I know i can add my buttons to this fla.) Thats the problem my game is currently the documents class. So if i change it to the main provided by emmanuel. that communicates with the the_game_itself.as, but im unsure as to how im supposed to put my code in this and still communicate with the main document class?
    If you want to see my code, let me know.

  • Cant open custom IR reports In Custom Reports menu Hy.Per. Scorecards

    As is wroten in readme file "The generic Oracle Hyperion Interactive Reporting BQY files provided with this release that you can use to generate custom reports may cause javascript or single sign-on errors when you access them from the Custom Reports menu. Custom Interactive Reporting BQY files work as expected."
    May be someone know how to open other custom Interactive Reporting BQY files. Smartcut of imported files into workspace dont work and is caused error on the page. Need to open them from Custom Reports menu
    Edited by: user10583191 on Nov 10, 2008 2:43 AM
    Edited by: user10583191 on Nov 10, 2008 2:44 AM

    As is wroten in readme file "The generic Oracle Hyperion Interactive Reporting BQY files provided with this release that you can use to generate custom reports may cause javascript or single sign-on errors when you access them from the Custom Reports menu. Custom Interactive Reporting BQY files work as expected."
    May be someone know how to open other custom Interactive Reporting BQY files. Smartcut of imported files into workspace dont work and is caused error on the page. Need to open them from Custom Reports menu
    Edited by: user10583191 on Nov 10, 2008 2:43 AM
    Edited by: user10583191 on Nov 10, 2008 2:44 AM

Maybe you are looking for

  • OSX Print in Black and White on an HP Color printer?

    I have an HP8500 Color printer connected to OSX 10.8.3 through a JetDirect port. The OSX Driver for the HP8500 does not have the option to print in color or B&W that the windows driver has. As a consequence, even when printing in B&W from a PPT deck,

  • How to deploy a servlet on WebLogic 6.1

              I have tried to deploy a servlet using WL6.1 following the instructions at this URL           : http://edocs.beasys.com/wls/docs61/quickstart/quick_start.html           but whenever I try to access the servlet from the web browser I get a H

  • Graphics disappear in Safari 3.1.1

    Hi Just installed Safari 3.1.1 All Graphic content on websites disappear. E.g. Apple website has no graphical buttons or pictures. The underlying selection is there and operates correctly but you cannot see where they are. My Web Gallery will not dis

  • Doubt in screen painter

    hi friends, I have a text field which is a listbox and list of other fields in my screen.I need to make some of the fields invisible for a particular value of selection from the list box.so how to go about this.how to make some of the fields invisibl

  • Organizer doesn't launch

    Hi, i just installed my brand new Photoshop Elements 10 but the Organizer just doesn't launch! With the Editor i have no problem.