Questions tagged [clicking]

60 questions
4
votes
2 answers

Java: JPanel cannot receive key events after button is clicked (which has no registered event listener)?

First of all, thanks for taking the time to read my question, I appreciate it. Here's the overview of what I've got now: I'm writing a slider puzzle game, 3 by 3 using buttons as grid cells. I've added a key listener to the JPanel which holds those…
imicrothinking
  • 95
  • 4
  • 11
3
votes
1 answer

Clearing mouse buffer in C#

I have a problem while doing this in the code-behind file of a winform : // Waiting Cursor + disabling form Cursor = Cursors.WaitCursor; this.Enabled = false; // Synchronous method SomeWork(); // Re-enabling form Cursor =…
Fares
  • 542
  • 1
  • 7
  • 17
2
votes
0 answers

AutoHotkey - How to make background clicking without activate the window?

I has some code as below DetectHiddenWindows On SetControlDelay -1 WinHide, Form1 Loop { sleep, 1000 ControlClick, x1700 y160, Form1 } ^p:: Pause ^o:: WinShow, Form1 I expect this will bring me keep on clicking Form1 at background without…
NewBieS
  • 147
  • 2
  • 10
2
votes
0 answers

sorting all data on multiple pages by clicking on its header

i want to sort all results by clicking on its header of column, Actually I took reference from code pen http://codepen.io/anon/pen/fjkcg which is working fine but only difference is that i have multiple pages for displaying data so when I used that…
sam patel
  • 45
  • 6
2
votes
3 answers

How do I change an image when clicking a button?

so i am trying to change an image when a button below it is clicked. I am trying to toggle the phone from normal to silent mode and have a picture change according to the state of the phone. I am following a book and dont know what is wrong ( I am…
alaboudi
  • 3,187
  • 4
  • 29
  • 47
2
votes
1 answer

Form buttons don't work

This is my first question, so I'll do my best to make it clear! I am just starting up in WPF after several years in WinForms, and for the life of me, I can't get my buttons' events to trigger. All I currently have in the project is a border-less…
JosephGarrone
  • 4,081
  • 3
  • 38
  • 61
1
vote
1 answer

How do I select a line by clicking in Makie?

I want to be able to select a line on the plot by clicking on it. Ideally, when I click on any line, the number of that line will appear on the screen. I wrote my code based on the tutorial, but there is no example with lines, so I did what I did.…
1
vote
1 answer

scroll snap and scroll full page

when I scroll my page scroll snap property works, but I clicked home or contact in the navigation bar is not working? if I removed my .container class height property or .contentContainer class height property its worked but the scroll snap property…
Muthukumar
  • 27
  • 4
1
vote
1 answer

Web browser going too fast, how to control speed?

My app needs to click a button on a page x number of times (user defined). The page works like this: After you click a button, the page reloads with the same yes/no buttons. Using my code, the app goes crazy and starts clicking way too fast and then…
No One
  • 11
  • 1
1
vote
1 answer

Jquery filter list by clicking link and show it in table

I'm trying to get propper search by href values , but when i click on each value it shows me blank table, and index of values is always 0. I tried literally everything and none of that worked. I think that the main problem is in the script , …
anonimus
  • 11
  • 2
1
vote
1 answer

How can I create points, display them and store them in some sort of Array

I want to create points and then store them in an array. I'm doing this to put a linear regression through my data points afterwards. So I need to be able to cycle through all my points. I could not find anything like that on the web for processing…
enwo02
  • 25
  • 3
1
vote
2 answers

TestCafe .click doesn't trigger onClick event within an iFrame

I'm attempting to automate a payment system, where the "Pay with PayPal" button is within an iFrame. I've searched through TestCafe's support pages, and can't seem to resolve the issue. TestCafe believes it has clicked on the button, and so fails at…
Rob C
  • 662
  • 5
  • 15
1
vote
1 answer

TestCafe: Clicking SSL link does not load page

In a test, I click a link (SSL Cert) link that does not actually load the expected URL page. It hangs and as far as I can tell no issues when I look at network or console. Is there a known issue with TestCafe and clicking certain kinds of links.…
1
vote
1 answer

Disable button by clicking button

So I was trying to disable a certain button on the entire page and every page onwards by clicking the same button. Meaning the user can only use it once. Now it just doesn't seem to work out :/ I've tried to create a variable and make this variable…
G Buis
  • 303
  • 4
  • 17
1
vote
1 answer

FullCalendar DayClick clicked twice

I'm very new to JQuery, so please excuse my lack of experience that I most surely will demonstrate within this question. So far I've coded a calendar that changes the colors of a particular day's box in the calendar. What I want to be able to do is…
Michela
  • 59
  • 7
1
2 3 4