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 6151707
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T19:48:25+00:00 2026-05-23T19:48:25+00:00

I usually work with many AS files in the same folder and it is

  • 0

I usually work with many AS files in the same folder and it is easy to address those files to each other. But I now have a sub folder inside the name folder which stores most of my files; and there is another as file inside that sub folder. How can I change variables of the AS file(inside the sub folder) from the AS files from the main folder and vice verses. Thank you a lot ^^

  • 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-23T19:48:26+00:00Added an answer on May 23, 2026 at 7:48 pm

    You probably need to use the import keyword if I’ve understood your question correctly. ActionScript files that reside in the same folder are automatically visible to each other, but files in different folders need to be imported. For example:

    - name              // folder
        - sub          // folder
            - c.as     // file
        - a.as         // file
        - b.as         // file
    

    In this structure, a can access b (and vice versa) because they are in the same folder, or package. Neither a nor b can access c, becuase it is in a different package (name.sub), and likewise c cannot access a or b.

    To make a able to access c, you must import the file first, like this:

    //file a.as
    import name.sub.c;
    

    Notice that

    1. The path is using dot notation rather than slashes
    2. The path is from the base folder of your project, not relative to the folder in which a resides
    3. the file extension .as is omitted

    The same would be done to allow c to access a:

    //file c.as
    import name.a;
    

    And as a bonus, if you want to import all the files in a package you can use a wildcard selector:

    //file c.as
    import name.*; //imports a and b
    

    Edit: As Taurayi notes in the comments, correct naming convention is to use lowercase names for folder/package names and to capitalize file/class names, e.g. com.myproject.components.MyComponentClass

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

Sidebar

Related Questions

I'm trying to use git and I have many computers. I usually work on
I work with Mac OS X Leopard. I usually have 5 or 10 text
I'll preface this by saying that I usually work in C#/.Net. Normally, I use
I usually test my code locally on my work machine and then move it
I'm working on a C# windows program with Visual Studio 2008. Usually, I work
Usually when I plot in MATLAB , it always draws on the same figure.
I usually don't post questions on these forums, but I've searched all over the
I'm using VS2005, and have been for many years without problems, and 2003 before
From what I have read java (usually) seems to compile java to not very
I usually use 4 white spaces to indent C programs, but in order to

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.