Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6385839
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T02:56:59+00:00 2026-05-25T02:56:59+00:00

In my AIR application, when a user creates a new project I want a

  • 0

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 box, but is there a way to do this using NativeWindows? That is, can I make a window using the system chrome appear which contains a text field and a button?

I’m using Flex 4 and AIR 2.7 in FlashDevelop.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T02:56:59+00:00Added an answer on May 25, 2026 at 2:56 am

    Yes you can. When creating a new NativeWindow you can add and remove children to its stage. So you could add your class / components to the new window and listen to their events.

    // create NativeWindowInitOptions
    var windowInitOptions:NativeWindowInitOptions = new NativeWindowInitOptions();
    windowInitOptions.type = NativeWindowType.NORMAL;
    windowInitOptions.minimizable = true;
    windowInitOptions.resizable = false;
    windowInitOptions.maximizable = false;
    windowInitOptions.systemChrome = NativeWindowSystemChrome.STANDARD;
    windowInitOptions.transparent = false;
    
    // create new NativeWindow
    var newWindow:NativeWindow = new NativeWindow(windowInitOptions);
    
    // create your class
    var popupBox:Sprite = new Sprite();
    
    // resize
    newWindow.width = popupBox.width;
    newWindow.height = popupBox.height;
    
    // add
    newWindow.stage.addChild(popupBox);
    
    // configure
    popupBox.addEventListener(YourCustomEvent.CONFIRM, onPopupConfirm);
    
    // for a popup it might be nice to have it activated and on top
    newWindow.alwaysInFront = true;
    newWindow.activate();
    

    Within the onPopupConfirm function you can close the Window and cleanup references. (Event.CLOSING on the NativeWindow, could come in handy for catching alt+F4 closing and such)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to provides an option in my air/flex application. A user can check
How can i prevent a user from running multiple instances of Air application? somebody
I have an AIR application with a login form. What I want to do
I wonder if my adobe air application can communicate with external hardware's API functions.
Within an Air application, can I take a screenshot of a website WITHOUT rendering
I'm creating an air application that allows the user to create, edit and save
I'm working on an AIR application that connects to facebook. After the user connects
My question is quite simple: I want to create an adobe AIR application for
I have written an AIR Application that downloads videos and documents from a server.
I have an Air application with a main window. I would like to have

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.