Right Click Event on Flash

Hello
I am making a CD based CBT. I need to do action on mouse
right click
something like
on<mouse right click> {
play();
Thanks
Mohammed sunely

Solved

Similar Messages

  • Right clicking on a flash object causes all flash objects to crash

    whenever I attempt to right click on a flash movie or other flash based object the flash plugin crashes and takes all flash objects including those in other tabs with it. There does not seem to be any other problems with the plugin just that it crashes when an attempt is made to right click on any flash object.

    Try to create a new profile as a test to check if your current profile is causing the problems.
    See "Creating a profile":
    *https://support.mozilla.org/kb/profile-manager-create-and-remove-firefox-profiles
    *http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Profile_issues
    If the new profile works then you can transfer some files from an existing profile to the new profile, but be cautious not to copy corrupted files to avoid carrying over the problem.
    *http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox
    You can check for problems with current Flash plugin versions and try these:
    *disable a possible RealPlayer Browser Record Plugin extension for Firefox and update the RealPlayer if installed
    *disable protected mode in the Flash plugin (Flash 11.3+ on Windows Vista and later)
    *disable hardware acceleration in the Flash plugin
    *http://kb.mozillazine.org/Flash#Troubleshooting

  • Right Click Event C#

    Hi,
    Is it the right way to use the right click event to delete row in Matrix?
    Could you please give me the template method for right click event?
    Thank you,
    Rune

    private void m_Application_EventRightClick(ref SAPbouiCOM.ContextMenuInfo oContextMenuInfo, out bool BubbleEvent)
                BubbleEvent = true;
                string vm_Column_ID_string = oContextMenuInfo.ColUID;
                string vm_EventType_string = Convert.ToString(oContextMenuInfo.EventType);
                string vm_Form_ID_string = oContextMenuInfo.FormUID;
                string vm_Item_ID_string = oContextMenuInfo.ItemUID;
                Int32 vm_Row_Int32 = oContextMenuInfo.Row;

  • Right Click Event & Link To

    Hi All,
    What is the use of LinkTo Property in Item Object. What is the advantage of it
    When the Right Click Event Fires. I tried on form  but doesn't work.

    Hi Manish,
    oItem.LinkTo is used for
    1. Labels (StaticText) to get the "white line" that connects the edittext.
    2. Links/Orange Arrow (LinkedButton) to connect them with a edittext. than the Arrow knows where to take
    the value from
    the RightClick Event is in an own EventHandler ! also be sure you enabled it in your EventFilter
    lg David

  • Add row by right click event

    hello expert
    i want to create add row functionality by right click event like in SAP B1 when we click on matrix colum it give menu for Remove,copy,add row in matrix how i do it by in my userdefiend form matrix

    Hello,
    If you enable the menu on your form Add row (menu id: 1292), Del Row  (menu id: 1293 )it will automatically appear in right click .
    copy should be added indivudally, and developed the functionality for each
    enable them:
    oForm.EnableMenu("1292", True)
                oForm.EnableMenu("1293", True)
    You can use MenuEvent to add/del/copy rows in the matrix or RightClickEvent
    Regards,
    J.

  • Create a right click event...

    Hi,
    I want to create a right click event programmatically in my Swing application.
    Can anyone tell me how do I do this? I have the listener and the code that works for my required functionality, but it requires me to right click explicitly. And, I wanted to simulate a right click so that I can execute this part of the code in the listener. Is there any way to do it?
    Thanks in advance...

    I wanted to simulate a right click so that I can execute this part of the code in the listener1) Create a method that can be invoke directly by the listener and your program.
    or
    2a) Create a MouseEvent
    2b) use the dispatchEvent(...) method of the Component class to send the event to the object.

  • Right-Click Event Matrix

    Good Morning
    Experts:
    I have added several options(SAP and Custom) to the Right-Click event.  It works as designed when Right-Clicking on the Matrix.  However, when Right-Clicking anywhere else on the screen, the options are still displayed.
    How can I restrict the options to only be displayed when Right-Clicking on a Matrix?
    Thanks,
    EJD

    Hi Ed,
    The right click event is completely separate event (ie it is not an EventType within the ItemEvent).
    So to code it (C#):
    private void _sboApp_RightClickEvent(ref SAPbouiCOM.ContextMenuInfo EventInfo, out bool BubbleEvent)
         BubbleEvent = true;
         if(EventInfo.FormUID == "MYFORM")
              // Do some stuff
    You also need to have defined the event while initialising the application object:
    this._sboApp.RightClickEvent += new SAPbouiCOM._IApplicationEvents_RightClickEventEventHandler(this._sboApp_RightClickEvent);
    There's an example project in the UI section of the SDK samples (number 22).
    Kind Regards,
    Owen

  • Right click event on a matrix

    Hi All
    I have to capture the right click event on a matrix
    here is my code
    <B1Listener(BoEventTypes.et_RIGHT_CLICK, True)> _
            Public Overridable Function OnBeforeRightClick(ByVal pVal As ContextMenuInfo) As Boolean
                Dim form As Form = B1Connections.theAppl.Forms.Item(pVal.FormUID)
                'ADD YOUR ACTION CODE HERE ...
                If pVal.ItemUID = "matItems" Then
                    ' do something
                End If
                Return True
            End Function
    the problem is that pVal.ItemUID always return null.
    Can any one help me
    Regards
    Arun TB
    Edited by: aruntb on Jul 14, 2010 9:39 PM

    Solved

  • Sending a right click event

    hello!
    is there a way to send a right click event?
    After a certain action I want to open the right click menu on the current form.
    any ideas?

    Here is my solution:
            private const uint MOUSEEVENTF_RIGHTDOWN = 0x0008;
            private const uint MOUSEEVENTF_RIGHTUP = 0x0010;
            [System.Runtime.InteropServices.DllImport("user32.dll")]
            private static extern void mouse_event(
            UInt32 dwFlags, // motion and click options
            UInt32 dx, // horizontal position or change
            UInt32 dy, // vertical position or change
            UInt32 dwData, // wheel movement
            IntPtr dwExtraInfo // application-defined information
            public static void SendClick(System.Drawing.Point location)
                System.Windows.Forms.Cursor.Position = location;
                mouse_event(MOUSEEVENTF_RIGHTDOWN, 0, 0, 0, new System.IntPtr());
                mouse_event(MOUSEEVENTF_RIGHTUP, 0, 0, 0, new System.IntPtr());
    I placed this code into the method where I want to do a rightclick (position):
    SendClick(position);

  • B1DE Right Click Event

    Hi all,
    I am working with B1DE and the Right click Event doesn't fire at all?
    anybody knows why?

    Yes you are correct. This is a bug and it will be fixed
    in the next release of B1DE planned to appear on SDN this month.

  • Right click event??

    Hey all,
    is there an event for the right click on a canvas/datagrid
    etc etc??
    My context menu is rather dynamic and highly depends on the
    are where the right click happened. This right click also is part
    of a overall framework through my desktop OS I am developing. The
    problem I am now facing is that for each
    The problem currently is that for each ItemRollOver this
    event's get fires and a new context menu get's created. I rather do
    this before the context menu get's displayed (only once).
    Is this possible at all or is it that using a context menu is
    jats not a good idea because Adobe Flash is managing that?
    Ries

    @Greg: This is based on Flex and I couldn't see how I can
    respond to a right click, they also don't seem to be available on
    the components in general.
    @ericbelair: Thanks for the link but the demo shows that the
    context menu was already created during initialization.
    In my case I need to generate the context menu when the right
    mouse is pressed and before the menu is displayed.
    Ries

  • Right Click event name.

    Hi All,
    When I am doing right click on under red color rectangle( ISU data Generator) It giving  three option when i clicking in first option Crete data a new sub screen is open, How to know which screen is going to call on create data screen, Not able to find through Debug Mode.

    Hi mohd,
    In ALV tree the event for right-click is node_context_menu_request .
    I hope you to find the code...
    Regards

  • How can i disable mouse right clicking event

    I need in my project to disallow any body to right click the mouse. Can i disable this event to prevent user of the application from right clicking if yes how can i disable it.

    I have code written in Visual Basic doing the same task but i don't know how to transfer those code in java
    The following is a code for that:
    Option Explicit
    'declares
    Public Declare Function SetWindowsHookEx Lib "user32" Alias "SetWindowsHookExA" (ByVal idHook As Long, ByVal lpfn As Long, ByVal hmod As Long, ByVal dwThreadId As Long) As Long
    Public Declare Function UnhookWindowsHookEx Lib "user32" (ByVal hHook As Long) As Long
    Public Declare Function CallNextHookEx Lib "user32" (ByVal hHook As Long, ByVal nCode As Long, ByVal wParam As Long, lParam As Any) As Long
    'constant
    Private Const WH_MOUSE_LL = 14&
    Public Const HC_ACTION = 0&
    Public Const WM_RBUTTONDOWN = &H204
    Public Const WM_RBUTTONUP = &H205
    Public Const VK_RBUTTON = &H2
    Private lMShook As Long
    Private bHookEnabled As Boolean
    'functions which process mouse events
    Public Function MouseProc(ByVal nCode As Long, ByVal wParam As Long, ByVal lParam As Long) As Long
    If nCode = HC_ACTION Then
    If (wParam = WM_RBUTTONUP Or wParam = WM_RBUTTONDOWN) Then
    MouseProc = 1
    Exit Function
    End If
    End If
    MouseProc = CallNextHookEx(lMShook, nCode, wParam, lParam)
    End Function
    Public Function SetHook()
    If lMShook = 0 Then
    lMShook = SetWindowsHookEx(WH_MOUSE_LL, AddressOf MouseProc, App.hInstance, 0&)
    End If
    If lMShook = 0 Then
    MsgBox "failed to install hook :" & lMShook & " : " & WH_MOUSE_LL
    bHookEnabled = False
    Unload Form1
    Exit Function
    Else
    bHookEnabled = True
    End If
    End Function
    Public Function UnSetHook()
    If bHookEnabled Then
    Call UnhookWindowsHookEx(lMShook)
    lMShook = 0
    End If
    bHookEnabled = False
    End Function
    Public Function InstalledHook()
    MsgBox " installed hook is :" & lMShook
    End Function
    code for form is below:
    Option Explicit
    Private Sub Command1_Click()
    InstalledHook
    End Sub
    Private Sub Command2_Click()
    Call SetHook
    End Sub
    Private Sub Command3_Click()
    Call UnSetHook
    End Sub
    Private Sub Form_Unload(Cancel As Integer)
    Call UnSetHook
    End Sub

  • Stop right click Event on JTabbedPane

    Hi,
    Does anyone know how to stop tabbed pane changing by right click of the mouse? I still want left click to change.
    Thanks a lot.
    Qian

    The proper way to do this is to write a custom UI as this behaviour is controlled by the UI.
    As a quick hack you can replace the deault MouseListener with a custom MouseListener. The listener code below was taken from the BasicTabbedPaneUI and slightly modified:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class TabbedPaneNoRightClick extends JFrame
        public TabbedPaneNoRightClick()
            JTabbedPane tabbedPane = new JTabbedPane();
            getContentPane().add(tabbedPane);
            newTab(tabbedPane, "one");
            newTab(tabbedPane, "two");
            newTab(tabbedPane, "three");
            newTab(tabbedPane, "four");
            MouseListener[] ml = (MouseListener[])tabbedPane.getListeners(MouseListener.class);
            for (int i = 0; i < ml.length; i++)
                tabbedPane.removeMouseListener( ml[i] );
            tabbedPane.addMouseListener(new MouseAdapter()
                public void mousePressed(MouseEvent e)
                    JTabbedPane tabbedPane = (JTabbedPane)e.getSource();
                    if (!tabbedPane.isEnabled()
                    ||  SwingUtilities.isRightMouseButton( e ))  // added
                        return;
                    // int tabIndex = getTabAtLocation(e.getX(), e.getY()); // changed
                    int tabIndex = tabbedPane.getUI().tabForCoordinate(tabbedPane, e.getX(), e.getY());
                    if (tabIndex >= 0 && tabbedPane.isEnabledAt(tabIndex))
                        if (tabIndex == tabbedPane.getSelectedIndex())
                            if (tabbedPane.isRequestFocusEnabled())
                                tabbedPane.requestFocus();
                                //tabbedPane.repaint(getTabBounds(tabPane, tabIndex)); // changed
                                tabbedPane.repaint(tabbedPane.getUI().getTabBounds(tabbedPane, tabIndex));
                        } else
                            tabbedPane.setSelectedIndex(tabIndex);
        private void newTab(JTabbedPane tabbedPane, String text)
            JLabel label = new JLabel(text);
            tabbedPane.addTab( text, label );
        public static void main(String args[])
            TabbedPaneNoRightClick frame = new TabbedPaneNoRightClick();
            frame.setDefaultCloseOperation( EXIT_ON_CLOSE );
            frame.setSize(200, 100);
            frame.setLocationRelativeTo( null );
            frame.setVisible(true);
    }

  • Right Click Problems With Flash

    Sometimes when I click anywhere within a Flash object it will be like I'm right clicking. I'll have to refresh the page several times to make the error go away.
    According to software update, I do not require any updates.
    -Matt
    Message was edited by: AcesEleven

    I thought I was the only one having this problem.
    I've been looking around the internet and it seems to be an issue with the newest version of flash.
    If someone could post instructions on downgrading to a version of flash that will not have this issue, that would be most appreciated.

Maybe you are looking for

  • How can i implement a doppel click im form 10g?

    Hi all, i want to implement a doppel click in my trigger in form 10g, because, wenn i start my form, it appears correctly on the canvas, but it disappears directly when i click the canvas when my mouse. it reappears when i doppelclik on the canvas. H

  • Business scenario configuration

    Dear all How to configure in SAP system for the following scenario 1. Client manufactures a huge material where generally it will be make-to-order with assembly or with out assembly and finished product will deliver to the customer site as per the PO

  • Using the same Realm for passwd auth and ssl auth

    Hi, does someone can tell me if it's possible to use the same Realm to authenticate some client with username,password and other client with certificates.In other word can a same realm support 2 different authentication method Thanks a lot romain

  • HOW to add Dynamic Columns in ADF Faces CORE Table

    In ADF im going to display the dynamic column in Coretable, Header are displaying very fine. but im unable to display rows sucessfuly,how to resolve. Second thing is that JSF page isn't getting the value from dataList, whats wrong in JSF code. // JSF

  • System variable Quiz Score deducts points when lesson is re-opened (Capt 5.5 with Kallidus LMS)

    I'm trying to get to grips with quizing and reporting, particularly complete/incomplete to check content has been covered. I've set up a small test file that awards 1 point to each 'Next' button. The project works well in the LMS when completed in on