Questions tagged [nativewindow]

50 questions
0
votes
0 answers

Dispaly data from getOutputBuffers to ANativeWindow

Im trying to display the decoded data manually to a native window. But I cant seem to display it. I dont have any idea. Our project will be ndk and more native codes. Your thoughts are very much appreciated. uint8_t* decoded =…
markhamknight
  • 365
  • 2
  • 3
  • 15
0
votes
1 answer

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 it sets the last used window pos and size and THEN…
BadmintonCat
  • 9,416
  • 14
  • 78
  • 129
0
votes
1 answer

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 the native OS's top bar. Similar to how Chrome…
rectangletangle
  • 50,393
  • 94
  • 205
  • 275
0
votes
1 answer

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 work. Actually I want to add…
Jason
  • 29
  • 5
0
votes
1 answer

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 do not works with a JSP called file I have…
Jean-Philippe Encausse
  • 1,491
  • 2
  • 22
  • 40
0
votes
1 answer

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…
Craig Myles
  • 5,206
  • 3
  • 40
  • 37
0
votes
1 answer

How can I change the NativeWindow for the stage?

For an application I'm creating in Adobe Air, I'd like to close the default window immediately and open a new one, then use that new window as the 'main' one (but still be able to make references to the stage). This code closes the current window…
Olin Kirkland
  • 548
  • 4
  • 23
0
votes
1 answer

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 window.open() function is called? It is required…
Oliver
  • 1
0
votes
1 answer

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 creationCompleteHandler(event:FlexEvent):void { …
mattwallace
  • 4,132
  • 6
  • 43
  • 77
0
votes
1 answer

How do you close a JOGL/NEWT GLWindow completely?

I have an incredibly dumb little sample, probably ripped straight from a tutorial, every time it runs it generates warnings on exit. I'm curious what I'm missing. Any ideas, links, things I'm forgetting? Here's the main window setup... package…
Eugene Marcotte
  • 751
  • 8
  • 21
0
votes
0 answers

CreateParams Confusion

I am creating a class to simplify designing controls. It's called ControlDrawer and has three private fields: a Point named _location a Bitmap named _innerImage a NativeWindow named _window I have most of the class done, but here's my snagging…
notagull
  • 113
  • 1
  • 1
  • 11
0
votes
0 answers

How to find the window MS Word in order to sub-class and override WndProc

I need to use custom event processing for ebedded Office applications in a WebBrowser ActiveX control. I have made great progress using the WebBrowser as a container for Word, Excel and PowerPoint and so far with some work I'm able to get almost all…
0
votes
1 answer

Adobe AIR NativeWindow Inner Width & height

When calling nativeWindow.width in Adobe AIR, it returns the width of the window include the border. How can I get the inner width / height of the window? Thank you.
user1995781
  • 19,085
  • 45
  • 135
  • 236
0
votes
2 answers

Implementing windows hooks using NativeWindow properly

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 NativeWindow and overriding WndProc and have determined the msgs…
almog.ori
  • 7,839
  • 1
  • 35
  • 49
0
votes
0 answers

AIR window alwaysInFront preblem in MAC

I am working in adobe flex 4.6 AIR application. I run my main application and click on button, a window is opened which is transparent, alwaysInFront="true", width and height of the screen. When it opens, i click on another buttons in my main…