Tagged Questions

0
votes
1answer
41 views

AS3 - Using Matrix3D objects for reordering display

I'm working with about 20 objects that are moving around in 3D space. Adobe recommends "Using Matrix3D objects for reordering display": Use the getRelativeMatrix3D() method of th …
1
vote
2answers
51 views

JQuery: Creating boxed text that shows on top of a div on hover

Let's say that I have a div that is called mainDiv, and it contains a <p> element with some text inside. I want to create another element (a <p> or a <div> or som …
0
votes
2answers
116 views

Window z-ordering in java

Is there a way to manage the window z-ordering of JDialog windows within java? I would like to able to assign each window to a layer such that windows on lower layers can never go …
1
vote
3answers
160 views

Change the z-order of subviews on the iPhone

I'm developing a game. I'm using about 150 UIImageView to hold the graphics. I'm simulating a 3D enviroment, so i would like to change the z-order (how close is an object to the ca …
0
votes
1answer
85 views

Progress Bar in Setup Application

I have created a custom action for my setup project and have successfully implemented a form that displays a progress bar for a download step in my install (I'm using a WebClient i …
0
votes
2answers
175 views

CSS, z-order, & a jQuery mini-menu

I am trying to implement a very simple little dropdown-style mini-menu that will appear when a website user hovers over an image. The image is a link to download something and the …
0
votes
3answers
159 views

XAML tooltips are being clipped

I am trying to make a WPF app (regular Windows app, not XBAP or Silverlight). I want the main app window to support transparency, and show through the desktop below. But when I sp …
1
vote
1answer
64 views

Winforms BringToBack Option?

In winforms there is a function "BringToFront" that moves a form to the top of the Z-Order. Is there a way to do the opposite--push a form to the back?
0
votes
1answer
98 views

How can I tell at run-time which control is in front?

I have a container control (a Panel) that has a number of Forms loaded into it. Based on user interaction, I .BringToFront() certain forms. However, in other parts of the program, …
0
votes
2answers
255 views

Problem with Z-Order involving TopMost and Invoke

I am showing Dialogs with Form.ShowDialog(). Forms are set to TopMost. Some image processing calculations are performed asynchronly in the background. Their results are rendered in …
0
votes
1answer
305 views

What is the best way to determine if a window is actually visible in WPF

I'm trying to toggle the display of a small window based on the click of a notify icon in a system tray app. This is simple enough to implement, however when the small window is di …
1
vote
0answers
212 views

Creating custom transparent control

Hi all, I am trying to create a custom control that displays a bitmap with per-pixel alphablend (as some of you already know for other questions). Right now I am using a custom c …
0
votes
3answers
486 views

focus lost after making another app’s window topmost

I'm making another app's window topmost to ensure that a click in my app brings the other's dialog into views. The problem I'm having is that I don't get focus back to my app after …
2
votes
6answers
1k views

In openGL, how can you get items to draw back to front?

By default it seems that objects are drawn front to back. I am drawing a 2-D UI object and would like to create it back to front. For example I could create a white square first t …