The nativewindow tag has no wiki summary.
5
votes
1answer
47 views
AIR - set size of NativeWindow to include system chrome
How do you find out the size of the system chrome so that I can specify the window size to achieve the stage size I want?
If my main window is set at 800 x 600 (stage), and I create a second window ...
2
votes
2answers
1k views
How can I create a new NativeWindow in Android NDK?
I tried the test-libstdc++ demo and liked that I can start it from the console and all without running a full-grown android application.
I'd like to create an opengl context so that I'd be able to ...
2
votes
1answer
292 views
Show a taskbar item with a NativeWindow
My application is intended to work almost entirely through a Windows 7 taskbar item with the use of thumbnails and jump lists. I know I can easily create a Form and simply hide it, but this seems like ...
2
votes
1answer
433 views
C#: What is destroying my NativeWindow object and why?
I am using a NativeWindow object to subclass an unmanaged window's message pump, with the purpose of intercepting its messages.
Code structure looks something like this (its psuedo C#, please excuse ...
1
vote
0answers
58 views
Form won't redraw or fire without mouse hover
I've got a WinForms app written for Net Framework 4 that implements a custom mdi controller.
However, I've found that some of the controls on this form will not update and certain events tied to ...
1
vote
1answer
99 views
Air Native Window Active Window Change
I have a Adobe Air app (AS3, not Flex) that has 2 windows. When I click away from them onto another desktop program, I get an "Deactivate" Event (as you would expect).
When I click on say Window#1 I ...
1
vote
1answer
134 views
Return an IOleCommandTarget from processing WM_GETOBJECT in a NativeWindow
I am trying to retrieve an IOleCommandTarget reference from a panel control handle, so that I can call IOleCommandTarget.Exec() on it.
NativeMethods.IOleCommandTarget target = null;
if ...
1
vote
2answers
129 views
+50
AIR: How to set NativeWindow type to Utility
The nativeWindow supports systemChrome (standard,none) and transparent (false,true); These options are in the Adobe AIR Application Descriptor File (xml)
<!-- The type of system chrome to use ...
1
vote
1answer
361 views
How to check whether Flex AIR application is minimized to system tray or not?
I have an AIR Application in which i am monitoring a server. By Default, it will be minimized to system tray. Whenever server sends an alert, then minimized application in system should display a ...
1
vote
1answer
330 views
Can't resize content to fit a new NativeWindow in AIR
I'm trying to make a popup window class which will get a content DisaplyObject, and popup and display it in itself, but I'm cracking my head with matching the size of the content to the window or vise ...
1
vote
1answer
456 views
NativeWindow WndProc not receiving messages
Could someone shed some light on why my WndProc method as implemented below isn't receiving any messages? If I put this class below in a WinForms application and pass in that application's handle, ...
1
vote
2answers
578 views
Accessing contents of NativeWindow in a HTML AIR application?
I'm currently building a HTML/JS AIR application. The application needs to display to the user a different 'window' - dependant on whether this is the first time they've launched the application or ...
1
vote
1answer
542 views
How do I make an AIR NativeWindow always in front of just the app, but not in front of other windows?
I want the window to be always in front of all of the app windows, but when the app is deactivated I don't want the window to be in front of the other apps.
0
votes
1answer
92 views
eglCreateWindowSurface on ICS, and switching from 2D to 3D
I'm trying to make an NDK-based game work on Android ICS. It worked fine on Honeycomb and Gingerbread.
The game uses some 2D rendering, some 3D rendering, switching between the two at various stages ...
0
votes
1answer
36 views
Ignore nativeWindow event listener
This has been bugging me for days, cant seem to get an answer after googling forever...
Problem is simple,
I have a rectangle with an event listener like so:
...
0
votes
1answer
143 views
Swiz framework with AIR - Using ViewAdded/ViewRemoved on child windows?
I'm trying to implement a popup window (NativeWindowType.UTILITY) in an AIR 2.7 application that uses Swiz for dependency injection.
I have followed the Swiz guidelines that I've been able to find, ...
0
votes
1answer
351 views
AS3 AIR - NativeWindow pop-up box
In my AIR application, when a user creates a new project I want a pop-up box to appear where they can enter their project's name in. I understand how this is doable by making my own type of pop-up ...
0
votes
0answers
52 views
Load an existing module in a new nativeWindow in Air
How do I load a new module in a newly created nativewindow in air?
I've read everywhere that you can add new nativewindows but all of them are empty.
0
votes
1answer
306 views
Flex4 AIR NativeWindow doesn't stay invisible at launch
In Flex 3 I had my AIR application setup to always have the native window being invisible at startup so that the app can recall stored window position and size from a local shared object. After that ...
0
votes
1answer
78 views
wxPython Altering Native Window Styles
One of the things I like about Google Chrome is that the tabs are placed in the top bar so that precious viewing space is conserved. I was wondering if wxPython facilitated the placing of widgets in ...
0
votes
1answer
313 views
What kind of Flex component can I utilize in NativeWindow?
I'm developing Adobe Air application.
To show additional window, I create NativeWindow object.
In the object, "stage.addChild( Sprite Obj )" does work, but almost all other flex components do not ...
0
votes
1answer
293 views
Adobe Air - window.nativeWindow undefined
I have an Adobe Air Application opening a Window from menu tray. The html content have a javascript code doing alert(window.nativeWindow) on load.
It works fine with an embeded html static file
It ...
0
votes
1answer
107 views
How to transfer the NativeApplication instance to another NativeWindow
Not sure if my title accurately describes what I'm trying to do, but basically I've created a new NativeWindow as follows (using an example from the Adobe NativeWindow documentation ...
0
votes
1answer
274 views
Handling JavaScript calls to window.open()- not using Native Windows - Adobe AIR
I am developing an Adobe AIR application which uses both native windows and floating panels. Is is possible to enable the creation of a floating window instead of a native window when a JavaScript ...
0
votes
1answer
434 views
controlling X and Y of spark.components.Window
I am building an air app in Flex 4. I am creating windows as I need them in a chromeless application.
Here is what I have in my main app creation complete
protected function ...
0
votes
2answers
414 views
Implementing windows hooks using NativeWindow properly
Hi guys
I dont have much of a C++ background but have successfully hooked a window and converted its msgs into raised events that my application can consume, Ive started by inheriting from ...