button

Python ttk.Button -command, runs without button being pressed

I'm making a small script in python with ttk and I have a problem where a function runs where it shouldn't. The button code looks as follows: btReload = ttk.Button(treeBottomUI, text="Reload", width=17, command=loadModelTree(treeModel)) btReload.pack(side="left") and the function is as this: def loadModelTree(tree): print ("Loa...

Flash Buttons Don't Work: TypeError: Error #1009: Cannot access a property or method of a null object reference.

I've read through several threads about this error, but haven't been able to apply it to figure out my situation... My flash file is an approx 5 second animation. Then, the last keyframe of each layer (frame #133) has a button in it. My flash file should stop on this last key frame, and you should be able to click on any of the 6 butt...

Can I increase a buttons onclick-area programmatically?

Sometimes I have a button in my UI that it is so small that it is difficult to click. My solution so far has been to add a transparent border around the button in photoshop. Just increasing the padding on the button does not work, since this will also stretch the image. Since it is kind of a fuss to open photoshop each time I want to cha...

"Share to facebook" button has problem showing thumbnails

hi all, I have added a "share to facebook" button in all my website's articles. Clicking this button would normally open a new window showing the facebook post's preview: the post's title, the post's description, and the ability to select one of the page's images, as a thumbnail to my facebook post. Without no reason, the past few da...

Combining EditText and Button?

Hi there! In some apps I see an EditText widget combined with a Button on the right side (e.g. the search field in the twitter app). How can I create a widget like that? Regards, Marco ...

Selenium RC: How to click buttons that use onclick window.location?

I have a button (outside of a form) that redirects to another page using the onclick attribute that calls window.location to redirect the user to another page. This time I can't change the HTML. I am using Safari 4 for testing. How can I click a button that uses the onclick attribute and window.location to redirect using Safari 4 and Sel...

Disable Ribbon Button

I want to disable and NOT hide a ribbon button (specifically Ribbon.ListItem.New.NewListItem) on a particular List type. On web I could find a lot many posts showing me ways to remove/hide buttons but none really worthwhile which could tell me how can I just disable an alrteady existing sharepoint button in my custom List type. e.g. Fol...

Is it possible to put a toolbar button on the right side of it using wxpython?

Hello, I'm making a toolbar using wxpython and I want to put the Quit button on the right side of it, I don't want to put them sequencially. Is it possible to define this position? Thanks in advance! ...

Take input through Buttons in java

I understand that the title might not be descriptive enough, but I'm making a magic square game in Java and basically, I'm trying to replicate user input as found in the sudoku game here: http://www.websudoku.com/. What I have is a n x n grid of Buttons (not JButton) as the board and what I want the user to be able to do is when the use...

How do I make a button on a form behave like a button on a toolStrip? VS2008

How do I make a button on a form behave like a button on a toolStrip? I want a menu-type list to come down. I tried using a toolStripContainer but it is very hard to manipulate to get it to behave as just one button. Is there an easier way than just putting a toolStrip with one button in a toolStripContainer? Thanks. ...

Android - Convert Button to TextView at runtime

Is it possible to convert a Button into a TextView onclick during runtime? Thanks Chris ...

Multiline Text as the button label - WIndows Forms

Basically, i am creating a button in Oval shape. But my button label is too long to display in one line. So i wanted to split in to multiple lines. So the Oval button looks good. My Problem is, How to enable word wrap on a Button? Any suggestions? ...

AS3 Function to start download after clicking a button!

Hello there, I need an actionscript 3 function for my website, that lets people download a document after they have clicked on a button. Couldn't find this anywhere on the net. Thanks! Jennifer ...

where to place cancel button on form

Hi all Does anyone know the correct place of the cancel button in a form? Does it have to be on the left of the submit button or on the right? ...

[WPF] Button with menu

How to create a Button with menu? The same like on meny windows in Windows. Example: while opening file: link text ...

Winforms - Datagridview, disable button/row

Hi folks, I have a datagridview on a form with some data. The 1st column contains button for deleting the row. How can we disable this button or the entire row based on some condition, so the row cannot be deleted? TIA ...

Interface Builder + Sprite Strips

Hello, I'm in the midst of porting a win32 app to cocoa. Wherever possible, I'm using IB, since... well its way easier in every way possible, obviously. One thing is the designer and the win32 dev set up all the button assets on a massive "sprite sheet" such you move around the viewport to determine button state. Similar to how yahoo do...

Android: How to enable my button back if EditText is not empty?

I have 2 EditText01 and 02. My button will be disable once the activity is started. And when these two EditText box got text inside, the button have to be enabled back. However my button is always disable and can't enable back using, button.setEnabled(true);. Can anyone help me with this? Thx... :) summit.setEnabled(false); buttonEnab...

java Sockets and Threads Problem

I am doin a Some Socket Programing Stuff in Java.. Here i have created a button(Create Server)..and when i click it ,it starts server...but i want to change the button name to (Stop Server) after Starting the server... so i did this.. but when i press start server it starts and the button name remains the same... and when a client gets ...

How do I change variables from different classes?

Before I delve into it, I'm very new to Android and I have just started learning Java last month. I've hit bumps while trying to develop my first simple app. Most of these hurdles were jumped thanks to random tutorials online. MY CODE IS VERY MESSY. Any tips are appreciated. The question above is quite broad, but this is what I want to ...