overlay

How to add overlay view over other view in android?

I want to put button above image view. How can i do this? (Please, don't offer to set Background, cause i need ImageView) ...

overlay opaque div over youtube iframe :)

How can I overlay a div with semi-transparent opacity over a youtube iframe embedded video? <iframe class="youtube-player" type="text/html" width="520" height="330" src="http://www.youtube.com/embed/NWHfY_lvKIQ" frameborder="0"></iframe> <div id="overlay"></div> CSS #overlay { position:fixed; top:0; left:0; width:100%...

Image overlay showing IDs and not text

In the post editor when you click on an image that has already been inserted an overlay pops up allowing you to edit the image. This overlay is displaying things like {#cancel} instead of the word Cancel. All text on this overlay has been changed in a similar way. Screenshot: http://awesomescreenshot.com/0151v82eb I have disabled all ...

Explain animated overlays? (Android)

The Android Javadoc for the MapView Overlay class mentions two draw methods. One regular, and one for animated overlays. I have tried to find more information on how to animate overlays and use this second method, but it all keeps coming back to the same forum postings. Can anyone explain how you specify to the MapView that a certain Ov...

Apply opaque overlay to control

Hi, I have a control data template. The viewmodel behind it has a property IsReadyForUse. When this property is false, i want a semi transparent overlay on the control. This overlay must prevent the user from editing any of the items on the control. Once the property goes back to True, the overlay should dissappear. If someone could p...

Issue with jquery tools overlay in Safari

I am trying to present a form inside an overlay. The form is loaded via ajax. This all works fine on firefox 3.x. But on Safari 5.0(5533.16), the overlay shows but does not make an ajax request, rather makes a html request. Here is how I configure it in my js and then on document.ready I call ModalPostForm.init(); pastie - http://pas...

How to make my page non clickable when a form submit process is working ?

I would like to load an overlay image or something when a long time form submit process is working. So that no one can click, any other links in the page during the process, and at the same time show a loading image over the overlay image...how can i make this work with jquery.. ...

Ubuntu 8 + Firefox 3.6 + Flash: DIV Overlay Problem

Situation: Got a flash object with an icon bar (div with pngs) on top of it. Works on all browsers except Firefox 3.6 on Ubuntu 8. Example: http://ListAndPlay.com Problem: Icons suddenly disappear after the flash is being loaded. See this screenshot: http://api.browsershots.org/png/512/e3/e30de0b1ad995fa1aa9c14cbc19fb43c.png What I've ...

How to overlay div / box on mouseover?

I have a link and when user hover mouse over it, it should display a box (div) under the link. The box should overlay whatever is under it. How can I do it using css or javascript? ...

Merging two images with PHP

I'm trying to merge two images together with PHP. For example... how would I go about placing image one on top of image two or merge, with basic PHP? I have tried something such as watermarking, but it doesn't seem to be working. Image One Image Two ...and have it turn into this? FINAL RESULT: ...

Capture camera view and onverlay in an image.

I open the camera view and place an image as an overlay. I then want to save both the overlay and the camera view's image as one image. Previously I achieved this using UIGetScreenImage(). Now that Apple forbid this what are my options ? takePicture will only capture the camera data but the the overlay. Merging the overlay with the image...

java.lang.OutOfMemoryError: bitmap size exceeds VM budget while overlaying on Google map on Android !

Hi Everyone, What I want to do: I want to setup some routes overlay on google map in android ! What I have done so far: I have parsed the file (geo points) and have them ! I am using asynctask. My overlay class has a custom draw method. I have used destroyDrawingCache () in my draw function. Problems I faced: While running the app, it...

memory problem with google map and overlays !

Hi all. I am drawing some overlays on google map. If i move around the map too much, I get this error : 10-15 14:43:43.020: ERROR/dalvikvm-heap(299): 32768-byte external allocation too large for this process. 10-15 14:43:43.020: ERROR/GraphicsJNI(299): VM won't let us allocate 32768 bytes 10-15 14:43:43.260: ERROR/AndroidRuntime(299): ...

mirror an mpmovieplayercontroller to tvout

I am looking for a way of mirroring videos to the TVOut on an iTouch, not in fullscreen. For my code, I have used Rob Terrell's screen mirroring example here: http://www.touchcentric.com/blog/archives/123 and this one as well: http://www.e-string.com/content/screen-mirroring-ipad I have used image = UIGraphicsGetImageFromCurrentImageCon...

what parameters to pass to invalidate(left, top,right,bottom) for google map on android ?

Hi there, what parameters do I pass to this function ? invalidate(left, top, right, bottom) for use with google map on android ? thanks - ahsan ...

HTML text over images for buttons?

I am designing my first website. I have designed a button image in gimp and saved it as a jpg. I want to use this button for my navigation buttons on the site. Should I make a separate image(jpeg) for each button or is it possible to just use one image and then overlay text on top of the images on the page using HTML? What's the best pra...

Google Map Api v3, how to get list of custom InfoBoxes (custom Overlays)?

hello, i created custom overlays using next link. how can i get a list of created overlays (or array, or whatever)? i need it, because i need ability to close some of them. ...

Overlay an Android layout on a surfaceview

I am designing a simple Android game using a surfaceview similar to the Lunar Lander sample provided by Google. I want to have various things such as highscores, messages, menus etc pop up on screen with the surface view still in the background. The problem is that I want the "pop ups" to contain many design elements such as images, tex...

Overlay pop-up user license agreement

Hello! I'm looking to create a Javascript Pop-up Agree/Deny User License Agreement when people visit any page on my website. I just need suggestions on a good Javascript plugin to use for my idea. What I'm looking for: Never pop-up's again after user clicks Accept (To prevent pop-up every time user clicks a link.) Visitor canno...

How to overlay a button programmically?

What I would like to accomplish is to, at runtime, place a button in the middle of the screen, as the very top layer, overlaying anything below it. (It's not big, so it will not completely cover the screen, just whatever happens to be below it.) I looked at creating a custom dialog, however that blocks all other user input. I want all...