overlay

Using ItemizedOverlay and OverlayItem In Android Beta 0.9

Has anyone managed to use ItemizedOverlays in Android Beta 0.9? I can't get it to work, but I'm not sure if I've done something wrong or if this functionality isn't yet available. I've been trying to use the ItemizedOverlay and OverlayItem classes. Their intended purpose is to simulate map markers (as seen in Google Maps Mashups) but I...

How can I create a Netflix-style iframe overlay without a huge javascript library?

I'm trying to use a link to open an overlay instead of in a separate popup window. This overlay should consist of a semi-transparent div layer that blocks the whole screen from being clicked on. I also aim to disable scrolling at this point. Not matter where you are on the main page, when the link is clicked, the overlay should be in the...

How to do picture overlay in HTML (something like marker on top of google map)?

Hi, Anyone know how to do picture overlay or appear on top of each other in HTML? The effect will be something like the marker/icon appear on Google Map where the user can specify the coordinate of the second picture appear on the first picture. Thanks. ...

Is it possible to create full screen color overlay effects in windows?

I remember my old Radeon graphics drivers which had a number of overlay effects or color filters (whatever they are called) that would render the screen in e.g. sepia tones or negative colors. My current NVIDIA card does not seem to have such a function so I wondered if it is possible to make my own for Vista. I don't know if there is s...

Overlay in IE 7 to prevent messing with controls in background

I haven't got a unique problem, but for the life of me I can't figure out what I'm doing wrong. I have a page that has a series of sections. Part of the section is a little image. When the image is clicked, I want to show a custom control. Showing the control is trivial, set the z-index a bit higher to ensure the control is on top of...

jQuery - How Do I Place a DIV On Overlay?

I'm trying to make a modal dialog in the least amount of jQuery code as possible because my project already has a bit too much jQuery loaded into it. So, I first needed an overlay, which is achieved with: $('body').wrapInner('<div />') .css('opacity','0.5') .css('z-index','2') .attr('id','dim1'); Disregard for now that I have another...

Overlaying of charts

I want to know whether this is possible using Google Charts API: First, create a bar chart with the given input data. And then overlay a line chart (or a line) on top of it. My use case here, is to show a student's performance in a test when compared to the rest of the crowd which is already available as a bar chart. EDIT: Dug and fou...

Implement sticky overlays in .NET

I'm looking for a nice way to render overlays over a native Windows form not owned by myself preferably using a library available for .NET (WinForms, GTK#, ...). Precisely, I'd like to display a few labels or text boxes at a given location on the window. Device Context & System.Drawing: What I'm currently doing is drawing directly onto ...

How to overlay or watermark a picture in windows media player

I working on a distributed mediaplayer that uses the windows media player component. Now the customer asks me if its possible to have their logo overlayed on the media played instead of them having to render every movie with the logotype. I have google it and it seems like I can use a directshow filter to do this, but I havent found any...

C# Ajax updatepanel doesn't work

Hi, I have an updatepanel which doesn't work. My whole code: <%@ Page Language="C#" MasterPageFile="~/Master.Master" AutoEventWireup="true" CodeBehind="AlgemeenDocument.aspx.cs" Inherits="PCK_Web_new.WebForm7" Title="Untitled Page" %> <asp:ScriptManager ID="ScriptManager1" runat="server" /> <script language="javascript" type="tex...

What is the best ajax control to display floating windows?

Aloha, I'm looking for a floating div type of control, to display another (user)control over an aspx page, using ASP.NET and Ajax. As far as I can see the Ajax Control Toolkit doesn't have a nice overlay control. Can anyone point me at a solution? ...

How can I make a Google Maps custom Overlay object behave like an InfoWindow?

My only problem with the InfoWindow is that I don't have a way to customize it's appearance (ie, the bubble, not it's contents). It seems that the only way to do that is to make my own Overlay and style that instead. But that gives me problems such as not being able to select text (dragging the mouse over this overlay just pans the map) ...

CSS IE7 slow overlay

When i press a button an overlay appears. In Firefox the overlay is fast, nothing special. But in IE7 the overlay is very slow. I was wonder why? Here is my CSS: .DocOverlayShow { background: url("/Graphics/overlay bg.png"); top:0px; left:0px; width:100%; position:fixed; padding:10px; } .DocAddCommentBox { color: #000; mar...

Java Applet z-index problem; Safari and beyond

A well known problem with Java Applets in webpages is that browsers ignore the z-index of the applet tag vs. other components in the page. No matter how you position and z-index elements in the page, applets will draw themselves on top of everything. There is a workaround, known as the iframe shim, is described here: http://www.oratran...

How can I overlay images over one another in Java?

So I have been posting all over and have yet to get a solid answer: I have created an image resizing class, with a crop method. The cropping works great. The issue that I am having is the background color that I specify in the drawImage function of Graphics is not working correctly. It defaults to black as the background regardless of w...

Overlay Control over Winform

Hi, is it possible to overlay a control (lets say a rich text box or a link label) over onother control at a specific position on a Winform? I have did some test with GDI+ but without luck... ...

<DIV> overlaying other Elements

I have a treeview which when visible takes too much space on the web page. Hence the user is asked to click a button to make this visible :) But the issue here is that when that treeview ( located within a element ) is made visible it MOVES the other elements down but i would prefer if it OVERLAYS ( something like what happens when we c...

Flash overlays thickbox on Internet Explorer

Here's my code: I've got a flash slideshow on my page. I've used thickbox for login but when someone clicks on the login, the flash overlays thickbox. I've managed to solve the problem on Firefox, but nothing seems to work on Internet Explorer. ...

jquery plugin not loading -- script failing

I've tried this with a couple of different plugins, so I'm sure it's not them. I also have one running on my personal machine and it works just fine. I'm loading jquery and then loading the plugin second. Then the next line of code is calling the plugin via: $("a[rel]").colorbox(...) or $("a[rel]").overlay(...) and I'm getting "...

Problem adding image overlay (jQuery)

What I want to do is find all images with a particular class name, and place an overlay image over them. My script thus far in jQuery 1.2.6: jQuery.noConflict(); jQuery(document).ready( function($) { var module = $(".module-contactus div div div"); module.find("img.let").each( function() { var iWidth = $(this).width(); var i...