button

iPhone App Store Green Button

Hi, I want to use a green button on my app like the one used on App Store when you select an app to install and press the button "FREE". Is it possible to use a button like this without a custom image? Thank you, A ...

can two overlapping buttons recieve the same click?

I am new to flex and as3 and I need to create a workaround for a button issue. I don't know how to have one button created by one class send a click event to another item created in a different class Therefore, I'd like to place both of my buttons on top of one another, alpha one of them out and have both buttons receive the same click....

Invoke Action Method from Clicking a button in ASP.NET MVC

I want to know if I can call a method in the controller when a button is clicked. I have a view called home and when the view is loaded, it invokes the Index action method in the controller. I have a Button (HTML or ASP.NET) called LoadData. When I click the button, I need to load some data in the same view called Home. How do I do th...

How do I put a download button on a site to get a CSV of a table Query?

How do I put a download button on a site to get a CSV of a table Query? Currently I am using "SELECT * INTO OUTFILE" to make the CSV file on the sever HD and is fine except... I want to create the CSV like I am now, but I want the "OUTFILE" to be saved on the clients computer when they click Download. <?php // Create new file name f...

Getting information from a button using (id)sender

So, this is pretty straight forward, but I'm not sure how to do it. To get a title from a button, you can use: NSString *title = [sender titleForState:UIControlStateNormal]; However, is there a way to get other information from the button such as the "Label" or "hint"? And if there isn't, I want to be able to have different actions...

Win32 On Mouse Over Event

How to know if the cursor on a specific control like a button in Win32? For this purpose WM_MOUSEMOVE exists but I can't get WM_MOUSEMOVE message? What to do? ...

Yahoo UI Custom Button

I have a YUI button defined through HTML markup. I managed to get it loaded and "skinned" properly. The problem is a custom click event. I have tried a number of approaches all of which links the custom function to the 'click' event, but no matter which way I do it, it ALWAYS triggers upon page loading and then it doesn't fire when cli...

Remove Done Button From Number Pad upon a New Keyboard Loading

Alright, I'll try to explain this the best I can. I have an iPhone app and it has a text field which the user can only input Numbers. Not a problem there. However, there is no done button on the numpad, so I can't make it disappear. I could make a button that the user presses to dismiss the keyboard, but I'd rather have a done button...

Content of a WPF button - unable to put anything but text

I designed a nice STOP graphic with red bg and gradient and all that in Expression Design - just like it'll look on a real taperecorder or something. I exported it as a XAML WPF Resource dictionary and got the XAML code. I want this graphic to appear inside the button along with the text "STOP". If I directly paste the XAML inside the...

Why would some buttons in CK Editor not work?

I am usuing CKEditor (version 3.0.2) in a site that I built. I have used it before in other sites and never had any issues. In the current site any of the buttons that would have opened a JavaScript Popup will not work. Thinks like Bold, Source, Save all work fine. But thinks like Add Image, Link, Anchor, Table, Smiley, Special Character...

Java: "Add Tab Button" for a JTabbedPane

Hi, Is it possible to add a button to a tabbedpane like in firefox. The green plus-button is what I want. Thanks ...

C# Draw Custom Button on Existing Window's TitleBar

I need to figure out how to draw a custom button next to the minimize, maximize and close buttons within the Titlebar for ALL open windows. I have seen some solutions for how this might be done for a user created form, but none for existing windows. The end product will be a button next to the minimize button (on every window) that wi...

Using html link as form button

Hello, I have a login form where a user (that is not logged yet) can insert his login and password, after filling these fields the user has to press a submit button. What i'm trying to do is: Replace the normal submit button for a $html->link with some css styles. So is there anyway I can use something like this: <span class = "licit...

jquery menu buttons mouseover effect

Hello I have two divs. One is position:absolute (.buttonEffectWrapper), over the top of the other div (called .rightColumnButtonHighlighted). I also have the following JS code: $(function(){ $('.buttonEffectWrapper') .mouseover(function(){ $('.rightColumnButtonHighlighted').stop().animate({opacity: 1}, {duration:300}) }) .mo...

paypal new buttons

My old paypal buttons work fine, going to the paypal shopping cart. These buttons were created a few years ago. The new buttons use s-xclick, and go to a blank page. I'm told the paypal code is correct and it must be my host,.....and the host says it must be paypal. Anyone have this problem, or know what I'm doing wrong? Thanks ...

php remove button keeps retreiving posted information

Hi every1! im quickly finding im quite the beginner to php, so please bare with me! I have a quick problem, I have a remove button for a shopping cart and the code works for it everytime except for the last product thats in the cart. If a person pushes the addtoCart button the URL is reloaded with ?buyproduct=$productNumber and when the...

What is the default CSS border property for an HTML button in IE?

I have the below code: <button onmousemove="this.style.border='2px #555555 solid';" onmouseout="this.style.border='';">Test</button> On mousemove, it correctly changes the border as specified. On mouseout my intention is to change the border back to the original. This works in Gecko based browsers but not in IE. IE removes all the...

ckeditor change button icon dynamically

Hi everyone, I am trying to write a plugin for ckeditor, like in the link below http://stackoverflow.com/questions/1139766/ckeditor-custom-plugins-button/1994020#1994020 the problem is, I want the button to change once I click it, and change back, so the users knows something happened. how can i change the path to the icon after the but...

custom Back Button image on the Navigation Bar doesn't Work ! [iPhone SDK]

Hi guys i create a custom navigation back button , but when i add this code , my back animation doesn't work and go back with animation .why ? i think it depends on my @selector action ! - (void)viewDidLoad { UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom]; [button setImage:[UIImage imageNamed:@"goback.png"]...

Android: Override back button to act like home button

On pressing the back button, I'd like my application to go into the stopped state, rather than the destroyed state. In the Android docs it states: ...not all activities have the behavior that they are destroyed when BACK is pressed. When the user starts playing music in the Music application and then presses BACK, the application ov...