overlay

Flash on top of normal HTML

Hi All, In our web application we are planning to develop the Top Navigation in Flex and the page content in normal HTML.On hover over the menus of top nav, the child nodes are shown. The childrens should be shown on top of the HTML content. So what should be the height of the top navigation SWF file for the overlay to work properly. In...

Please wait modal overlay before waiting for a function with a heavy workload without setTimeout()?

This is a simplified example, to make sure that there are no asynchronous fading/animation functions involved. I want, that the background is red when the function with the heavy workload works and turns to black, when it is ready. What actually happens is, that most times the background will turn directly to black, after the function i...

In what order do Firefox extensions get initialised?

When a user has several Firefox extensions, what decides the order in which they get initialised? Specifically, in which order are XUL overlays applied? In most cases the order is not important, but it does affect things like the order in which items appear on the Tools menu, say, or in the status bar. Furthermore, being able to rely on ...

Qt Widget Overlays

How do I overlay widgets in Qt? I want to create some widgets and place them out-of-layout, but rather tweak their size and position when some other widget's geometry is changed. Something like the buttons on the screenshot: ...

Adding subview to MKMapView that's above the map but below the annotation views?

For an app I'm building, I have a custom "old map" effect PNG that I'd like to overlay on the MKMapView view. Unfortunately, neither way I've tried to do this is exactly right: Add a subview to the MKMapView (issue: the UIImageView for the PNG gets placed above the Annotation pins, which looks weird Make the image an annotation view it...

One question about background overlay

<div> <div> <div></div> </div> </div> It seems to me that the inner background will overwrite the outer one,why is it designed like this? ...

I can add an overlay, but I can't remove it (jQuery).

This function adds an overlay with the following properties to the entire browser screen, $('a.cell').click(function() { $('<div id = "overlay" />').appendTo('body').fadeIn("slow"); }); #overlay { background-color: black; width: 100%; height: 100%; position: fixed; top: 0; left: 0; display: none; z-index: 100; opacity: 0.5; } And...

In place rotation of overlay image on the background with ImageMagick

I have a small (100x80) overlay image which will be placed at x=40, y=50 on a transparent background(800x600) and then rotated 80 degrees in place. convert -size 800x600 xc:none -background transparent m01.jpg -rotate 80 -geometry +40+50 -composite final.png rotates the merged image. how can i rotate only the overlay image in pla...

PNG overlay makes asp hyperlink unclickable

I've managed to get a PNG overlay to appear over an asp:hyperlink image, but this now means the hyperlink is unclickable, is there a way around this ? <div class="ProductItem"> <div class="picture"> <asp:HyperLink ID="hlImageLink" runat="server" /> <div class="overlay"></div> </div> </div> .HomePageP...

WPF Canvas and Grid overlay

I have a grid which represents some data, and i need a canvas to overlay on top of it to layout some lines. The canvas is inside it's own usercontrol The problem is that the canvas and it's contents should autoresize when the grid resizes width and height. I added the canvas inside a viewbox, but it didn't do the trick. When the grid...

WPF and canvas overlay

I have a grid which represents some data, and i need a canvas to overlay on top of it to layout some lines. The canvas is inside it's own usercontrol The problem is that the canvas and it's contents should autoresize when the grid resizes width and height. I added the canvas inside a viewbox, but it didn't do the trick. When the grid r...

More efficient map overlays in Android

In my app I am drawing bus routes on top of a MapView. The routes have anywhere between a dozen and a few hundred GPS coordinates that describe the route that the bus takes. The problem I'm having is that once I draw out all these lines panning/zooming the MapView is incredibly slow (even clicking the 'Back' button takes a minute to h...

Blacking out content leaving one page div visable

Hiya, So i am looking to do something like what the apple inspector tool does, but with CSS for a project i am working on. So, the idea is on a certain page of the site, the site is shaded out (much like a lightbox or thickbox) but certain Divs, & other elements are still visible. This is similar to what Safari does when you inspect an...

How do I bind the Overlay Tool for new Ajax elements in Jquery?

Hi, I'm using: echo $javascript->link('tools.overlay-1.0.4', false); which is initialized with: $(".overlay_popup").overlay({ expose: '#000000', close: '.close_overlay', finish: { top: 'center', left: 'center', absolute: false } }); I call the overlay popup box like this: echo $html->link( ...

KmlScreenOverlay Buttons

KmlScreenOverlay Buttons!!? real? how? Any other way to put anything flash or html over GEPlugin? ...

RSS to KML Overlay

I'm want to display my blog as a Google Map overlay (each post contains geotags). How can I dynamically create a KML overlay from an RSS? Or better, how can I create a loop (PHP) that would display map placemarks according to given geotags? Thank you! ...

How are firefox notifications implemented?

Hi! I would like to implement a notification mechanism in a firefox extension equal to firefox's "save password" option or popup blocking warning with the yellow bar sliding in above the main window. Does anybody now how this can be achieved in XUL? Thanks for any help. ...

Plot Overlay MATLAB

How do you take one plot and place it in the corner (or anywhere for that matter) of another plot in MATLAB? I have logarithmic data that has a large white space in the upper right-hand side of the plot. In the white space I would like to overlay a smaller plot containing a zoomed in version of the log plot in that white space (sort ...

JQuery, AJAX, PHP, XML; Image overlay script stops working on callback content.

A button click fires my function that fetches image data via an AJAX-call: $("#toggle_album").click(function () { album_id = $("#album_id").val(); $.post('backend/load_album_thumbnails.php', { id: album_id }, function(xml) { var status = $(xml).find("status").text(); var timestamp = $(xm...

How to create an overlay window in Java?

I'm trying to create a HUD style display for a foreign application. To do this, I'd need to make a transparent overlay window, that would be placed on top of the window of the foreign application. The overlay window should allow me to place widgets and draw text on it. Events should get forwarded to the underlying window, if they happen...