Put something on top of the stagewebview with flash builder 4.6 - flash-builder

I'm using stagewebview > Flash Builder 4.6
I have a stagewebview and I load an url in it. I want to show sometimes a slide panel on top of the stagewebview. I tried it, but the panel is always behind the stagewebview. I know that stagewebview isn't a display object, but does anyone know if there is any way I can do it?
Thanks in advance

I think I have the answer, it's a little trickery but I think it's the only way
You need to take a picture of the stagewebview, add the picture to the stage, hide the real stagewebview and THEN you can add something over the top of the pic.
Thanks

Related

Vb.net HMI like graphic

i would like to make a very simple HMI where i use picturebox (no fancy ) as simple and link them together , the problem is that the pictures of symbols i use (although i use png with tranparent background ) when placed in a picturebox and needed to be on top of each others (in case for example a valve to be linked with a pipeline ) the picturebox on top will hide some of the other one's details and block it so it doesn't look like one piece and something is missed .
i don't know what i really can do exactly to get rid of that
any sugestions are more than welcome
thanks in advance
It will be hard to place an control with layerd, but a best way is to create a new shape (with gdi+ drawing) on the canvas, with that, you can layer it as you want.
You can use Qt or exd++ or Visual Basic.net

XAML Control / Layouts Image Sliding for windows 10

currently i'm developing an windows 10 uwp apps, and i'm getting trouble ini designing my apps
i'm planning to make some kind of a image slider or whatever it names, just like in the Store apps, on the top page. it looks like a banner slide or something.
but i hardly find it on tutorials anywhere in the internet nor in documentation.
i think and believe that this using a pivot, but i'm confuse how to style it. so if someone probably knows, how to achieve this, please kindly answer it.
thank you
you must use FlipView control.
Please check the documentation.
https://msdn.microsoft.com/en-us/windows/uwp/controls-and-patterns/flipview

I want to make VB.NET effects

I want to write a program that creates cool effects in VB.NET.
Few example of what the program should do:
How to make an intro to my program? I know how to make a splash form but can I put an animated logo?
I want to put effects to buttons, such as the effects in the (HTML-CSS) websites, and also in the professional programs.
Finally , Can I make notification-icon (Tool-Tip), like Avast 2015 ? > http://imgur.com/65DbXoN
You might be able to modify a splash screen for an animated logo. Try using a picture box with a logo picture in a .gif format. However I've never tried that before.(Worth a shot tho)
For button effects there are many ways to do it. You can add sounds, add pictures/icons,ect.
I've never done much with tool tips before, however they can be done. To make them look like the image you provided, I don't think would be easy.

Windows like window look

I am looking on the internet for two days to create a form with the extended titlebar (to have the left, right and an search-bar) and the sidebar. I extracted 3 background images from shell32.dll that are used in the sidebar.
I'd like to know if I could namespace some shell objects or is there a solution. I really would like to see this happening.
Thank you.
Code Project, non-client area. I know it's not VB, but maybe enough to glean what you need.

How to animate group of images in winform application using VB.Net

I am trying to load bulk images and trying to put them as a slideshow and it's working fine.
Now I would like to have some effects like flip out,ease out effect and fade effect on those images when changing them without using any user control as I would like to do with the existing picturebox.Is it possible to do so?
If so can anyone point me to some resources.
As I have done googling and found some useful links and I am placing here that might helpful to someone.And all these have use seperate usercontrols to do, and I am not looking into that.
http://code.google.com/p/dot-net-transitions/
http://www.codeproject.com/KB/cpp/fluid_effect.aspx
The built-in picture box has no such capability. Your solution will require custom-drawing regardless what control you use (assuming you don't get a 3rd party product).