dialog

Facebook FBML popup dialog with youtube video

I am trying to put a youtube video inside of a pop dialog with fbml. The dialog works and the video plays the first time. The video does not play after the dialog has been closed. Any suggestions? <fb:dialog id="my_dialog"> <fb:dialog-title>Video</fb:dialog-title> <fb:dialog-content><fb:swf swfsrc='http://www.youtube.com/v...

Sliding panel lightbox/overlay in JavaScript?

I was wondering if anyone had any ideas if a plugin or other script existed out-of-the-box to do this kind of functionality: User opens up a lightbox/modal dialog User clicks some action The previous lightbox slides out and a new one slides in I'm trying to do this as a more graceful way of handling multi-level modal navigation than st...

How can I use custom icons in a "Browse for folder" dialog?

There is a nice feature in the "Open Project..." dialog (see image below) in the NetBeans IDE which uses a custom icon for the folder symbols depending on the project type in that folder. For example, if a folder contains a pom.xml file, the Maven project symbol appears. Maybe there also an extension point in the Windows standard dial...

cancel dialog after 3 seconds - keeps crashing my app after multiple uses

I have an extended dialog class that I want to show for 3 seconds then disappear. This works great the first 2 times it's called, but then it crashes my app after that. Admittedly, I'm not the best with threads and I think that's where my problem might be. As you can see from the code below (commented out section), I tried using a can...

Focus NSAlert accessory item

I have an NSAlert item that uses an NSTextField as an accessory item to provide an prompt-like dialog box. The only problem that I have is that when the alert is ran the text field is not focused. I tried looking for a way to change NSAlert's first responder but found nothing. Is there a way to easy focus an accessory item in NSAlert? ...

Alternative to having to select device every time I run an Android application?

Is there some way to have Eclipse NOT present the Android Device Chooser dialog every time I run the Android application I'm developing? I'm using a running Android device, not an AVD. There's got to be some place I can set my default device to be the Android device so that I don't have to double-click on the device entry in the ADC di...

How to show Properties Dialog like in Explorer? (in WPF)

Possible Duplicate: How do I display a files Properties dialog from C#? Hello. Is there a way to show the exact (ie. not simulated) Properties dialog in WPF? The one in Explorer's context menu? Thanks ...

remove extra real-estate from top of custom dialog

I created a custom dialog that I'm dynamically putting views into via a RelativeLayout. Every time the dialog is displayed, it shows all my child views just great, but it has some space at the top that I can not account for. I'm assuming this is reserved for a "title" of the dialog (which I won't have). Is there a way to remove that s...

Does a window have place for background image like a dialog?

Can you set a background bitmap in a window as in a dialogbox? what are the differences? ...

how to display underoot character in my vb6 dialog box

Hi, I need to put a underoot symbol on dialog that i am creating in vb6 and i copy √ symbol from charactar map and when i paste it on the label in the dialog box a ? appears instead of the √ symbol. Any idea what should be done? Regards ...

Mouse position in jQuery Dialog open function

How to get a mouse position inside open function of jQuery Dialog? ...

What are event and UI parameters in Dialog

What are event and UI parameters in jQuery Dialog? Can I get a mouse position using them? $( ".selector" ).dialog({ open: function(event, ui) { ... } }); ...

How to "Open" and "Save" using java

I want to make "Open"(pic 1) and "Save" (pic 2) anyone know how to do that in java? Thx b4 Pic 1 Pic 2 ...

How to make sure a dialog is always front of the main window.

I have not yet found the best solution for this. I have a non modal dialog that can be opened in unlimited instances by a hotkey in the application. Even the dialog itself can open a new instance. I want those dialogs to always be front of the main application window. I have tried a couple of things. Set FormStyle to fsStayOntop. This ...

jquery ui dialog and csrf protection

I am using jquery ui dialog to display form. Unfortunately, this function clears hidden input with csrf token inside my form. Can I somehow force dialog not to clear this field or do I have to store this token somewhere and set the proper field myself? ...

jQuery UI modal input button value

I need to change the value of the input buttons created in the jQuery UI dialog modal to present them in the language of the user. I don't see how to do it. var $dialog = $('<div><div style="padding:10px;text-align:left">' +'New name' +'</div>' +'<div style="padding:0 10px 10px 10px;text-align:left;">' ...

[Android] Error trying to open a dialog: android.view.WindowManager$BadTokenException

I received this error while trying to open a dialog from my Android activity. A Google search did not provide any helpful interpretations. Hoping someone has some idea what this exception even means? 08-21 00:42:48.515: ERROR/AndroidRuntime(880): Uncaught handler: thread main exiting due to uncaught exception 08-21 00:42:48.595: ERROR/A...

show dialog when application/activity startup

can we show the dialog when our appliaction/activity startup? ...

Jquery-Ui Dialog / Draggable bug with chrome

Hi I made a dialog with jquery-ui, it's draggable. Inside the title bar i created a simple input with a counter. surrended by 2 arrows (to navigate between records). Everytime I click on the title bar, it begins to drag but if I release the mouse button while in the input, it's like it does'nt consider i released the button and it keeps ...

Win32: Displaying a Stock Icon in a Dialog Box under High DPI

Hi, I've got a dialog box where I need to display the standard Information icon. Here's my RC code: ICON "",IDC_ICON_INFORMATION,18,70,21,20 I process the WM_INITDIALOG message as follows: HICON aIcn = LoadIcon(NULL, IDI_INFORMATION); SendDlgItemMessage(m_hWnd, IDC_ICON_INFORMATION, STM_SETICON, (WPARAM) aIcn, 0); Everything wo...