Distinguish between pure AS3 and Flex project

Hey,
how can I distinguish if I am compiling currently an AS3 or a Flex project (mxml vs. pure as)?
I acutally want to look something up in the "evaluate" method of a GenerativeFirstPassEvaluator before doing the processing. So I need to know it there.
Any help is much appreciated.
Best,
Joa

MXML is converted to AS3 code as part of the compilation process, then the AS3 is compiled normally like the rest of the project. I don’t think that GFPE is run over anything but an AS3 tree. There
may be a way to figure out where the original source came from, e.g. .mxml or .as file, but you’d have to interactively debug and scan the data structures — I don’t know off hand.
 - Jono
From: Joa Ebert <[email protected]>
Reply-To: <[email protected]>
Date: Mon, 31 Mar 2008 05:40:13 -0700
To: <[email protected]>
Subject: Distinguish between pure AS3 and Flex project
A new discussion was started by Joa Ebert in
Developers --
  Distinguish between pure AS3 and Flex project
Hey,
how can I distinguish if I am compiling currently an AS3 or a Flex project (mxml vs. pure as)?
I acutally want to look something up in the "evaluate" method of a GenerativeFirstPassEvaluator before doing the processing. So I need to know it there.
Any help is much appreciated.
Best,
Joa
View/reply at Distinguish between pure AS3 and Flex project
<http://www.adobeforums.com/webx?13@@.59b4da24>
Replies by email are OK.
Use the unsubscribe
<http://www.adobeforums.com/webx?280@@.59b4da24!folder=.3c060fa3>  form to cancel your email subscription.

Similar Messages

  • Distinguishing between bookmark page and ordinary jsp

    If I bookmark a page in my project and close the browser , and again on restarting the browser
    viewing the same bookmark page without logging in,
    All the links should work.
    It is working , but problem arises here
    how to
    distinguish between bookmark page and ordinary jsp
    which is viewed with login

    The problem is not the bookmark.
    Review your JSP, you may find it does not check the session id.
    In this case, everyone can access the page without login.

  • How can I distinguish between the first and the rest in Smartforms??

    I have made an Invoice in Smartform. I have to take three copies of that. In the first copy it will be printed "ORGINAL INVOICE" and in the next copies it will print "Duplicate copy".  How can I distinguish between the first and the rest in Smartforms??
    Regards,
    Subhasish

    >
    Subhasish Ganguly wrote:
    > I have made an Invoice in Smartform. I have to take three copies of that. In the first copy it will be printed "ORGINAL INVOICE" and in the next copies it will print "Duplicate copy".  How can I distinguish between the first and the rest in Smartforms??
    Hello Vamshi,
    As per the OP's requirement he has to print 3 copies of the invoice. Which according to my understanding should be printed at the same time ? May be i am wrong in interpreting this.
    You must be knowing you can control the print params of the SmartForms in CONTROL_PARAMETERS where you set the NO_DIALOG & in the OUTPUT_OPTIONS pass the number of copies.
    I think the solution you have proposed the "Original Copy" will be printed only once. (Correct me if i am wrong)
    Every time the user prints the invoice again he will be getting a "Duplicate Copy". If this is what the OP wants the logic is perfect
    Cheers,
    SUhas

  • Distinguish between 'Edit Page' and 'Customize'

    I have a portlet/provider that needs to be able to distinguish between 'Edit Page' and 'Customize (Page)' (top level). In both cases you can add portlets, but I want to implement different logic for both instances.
    Thanks,
    Jan
    null

    Okay, so here goes!
    Oracle Portal stores the way a portlet instance is shown/put on a page in the db-column 'wwpob_portlet_instance$.include'.
    In the portlet 'register' call you can find out what the originating action was for this portlet to be placed on the specific page. At this stage only two possible values are interesting:
    3: WWPOB_API_PAGE.PORTLET_CUSTOM; The originating action was [Customize Page - Add Portlet]
    1: WWPOB_API_PAGE.PORTLET_BASE_SHOWN; The originating action was [Edit Page - Add Portlet]
    For now this gives me a hook to process the two originating actions differently.
    Please let me know if you know of any other (less hacked) way to do this.
    Thx,
    Jan.

  • Basic ?   Difference between a Song and a Project

    I'm just wondering what the difference is between a song and a Project.  Usually I start with 4 Audio tracks, then add software instruments later on or add more audio tracks as need be.   MY buddy always talks about "Projects"  I always save mine as songs.  And if I select recent open it and then edit or add parts and just save it as a song.  Please give me some basic idea of the differences between a Song and a Project.  thanks

    This is a historical thing.
    Up to Version 7, Logic called its files "Songs".  These files had the .lso extension.
    From v8, the default file became a "Project" with the .logic extension.
    So....there actually IS a difference.
    If you're using the current v9, you'll see that the File menu only refers to Projects and not Songs.
    Hope this clarifies things.
    Colin

  • Distinguish between Document Libraries and Subsite

    Hello Team,
    When I create a Subsite or create a document Library, How can I access the Document library through the network Share
    If I add documents to a Document Library:
    Does it create a static link or a dynamic link
    How can I access the Document library through the network Share
    If I create a folder structure and add document to the folders to subsite
    Does it create a static link or a dynamic link
    How can I access the folders in a subsite through the network Share
    How can I distinguish between a sharepoint site or document library by just looking through a URL

    Following links explain how a Document library can be accessed using Network Share/Windows explorer.
    https://hubone.zendesk.com/hc/en-us/articles/200167580-SharePoint-Using-Explorer-View-or-Mapped-Network-Drives
    https://social.technet.microsoft.com/Forums/sharepoint/en-US/b3425c4b-6558-4b51-882d-f9603c36f214/accessing-sharepoint-documents-from-windows-explorer-on-the-server?forum=sharepointgenerallegacy
    The Url of a Document library will conatin "Forms" in it. Example:
    http://yoursite/MyDocs/Forms/AllItems.aspx
    Blog | SharePoint Learnings CodePlex Tools |
    Export Version History To Excel |
    Autocomplete Lookup Field

  • A way to distinguish between 'Parent' keys and 'Referential' keys

    Hi,
    We use referencial keys to specify the FK to a parent table and also link to other tables... I need to write a script that needs to distinguish between a 'Parent' key and and a 'Referential' keys. In the database they both look the same, as they are both foreign keys...
    What's the easiest way to determine whether a FK is a link to a parent table or a link to an unrelated table..
    I hope this question makes sense...
    EDIT:
    Here's an example of the tables, and a better explanation
    CREATE TABLE PARENT_TABLE(
    par_id number PRIMARY key,
    par_name varchar2(200)
    create TABLE RELATED_TABLE(
    rel_id number PRIMARY key,
    rel_name varchar2(200)
    create TABLE CHILD_TABLE(
    kid_id PRIMARY key,
    kid_name varchar2(200),
    par_id,
    rel_id,
    CONSTRAINT kid_par_fk FOREIGN KEY(par_id) REFERENCES PARENT_TABLE(par_id),
    CONSTRAINT kid_rel_fk FOREIGN KEY (rel_id) REFERENCES RELATED_TABLE(rel_id)
    )Ok, as you can see the child table has 2 references but no way to tell which one is the parent table.. In our database we have this hirearchy of parent-child tables (where it's one-to-many relationships) where we consider a table a parent of other.. And also we have a ton of other foreign keys that link to related tables (many-to-many) relationships...
    Now i need a clean way of distinguishing between PARENT and RELATED table.. A more elegegant solution to a keeping a hierarchy table of parent, child tables.. I'm sure others have this kind of structure..
    let me know if there is more clarification needed.. Sorry for the confusion..
    Edited by: wonderboy87 on 23-Jan-2011 4:07 PM
    Edited by: wonderboy87 on 23-Jan-2011 5:59 PM
    Edited by: wonderboy87 on 23-Jan-2011 6:00 PM

    wonderboy87 wrote:
    Yes sorry.. I can see how consufing this is. Here goes;
    CREATE TABLE PARENT_TABLE(
    par_id number PRIMARY key,
    par_name varchar2(200)
    create TABLE RELATED_TABLE(
    rel_id number PRIMARY key,
    rel_name varchar2(200)
    create TABLE CHILD_TABLE(
    kid_id PRIMARY key,
    kid_name varchar2(200),
    par_id,
    rel_id,
    CONSTRAINT kid_par_fk FOREIGN KEY(par_id) REFERENCES PARENT_TABLE(par_id),
    CONSTRAINT kid_rel_fk FOREIGN KEY (rel_id) REFERENCES RELATED_TABLE(rel_id)
    )Ok, as you can see the child table has 2 references but no way to tell which one is the parent table.. You are right. There is no way to tell which one is the "parent". It's only your own business rules and usage that make one of the FK relationships to a "parent" while the other is to .. what, an "uncle"? ;-) Oracle has no way of knowing what your business rules and usage are.
    In our database we have this hirearchy of parent-child tables (where it's one-to-many relationships) where we consider a table a parent of other.. And also we have a ton of other foreign keys that link to related tables (many-to-many) relationships...
    Now i need a clean way of distinguishing between PARENT and RELATED table.. A more elegegant solution to a keeping a hierarchy table of parent, child tables.. I'm sure others have this kind of structure..
    let me know if there is more clarification needed.. Sorry for the confusion..
    Edited by: wonderboy87 on 23-Jan-2011 6:00 PM

  • Distinguish between Office x64 and Office x86 versions in SCCM 2012 R2 Inventory

    I need to distinguish between SCCM clients who have Office 2010 x64 and those who have Office 2010 x86 version.
    I have tried creating a collection with query-based-membership looking at all computers with ARP64 Display name like Office 2010.
    I have also tried creating a report with the same query basics.  The query shows different machine lists than the collection looking for the same information.  Also, I am looking for the WinWord.exe path, which for x64 version of Office on Win
    7 x64 should be "c:\Program Files\Microsoft Office\Office 14".  However, I find that file in the "c:\program files (x86)\Microsoft Office\Office 14".  So the query returns the machine as having Office x64, but the Office EXEs
    are all in the c:\program files (x86)\ folders instead.
    Should I trust the report for the inventory?  I have done a spot-check on some computers (18 of 222), and it's not always true that they have x64 version of Office installed.
    What's a girl to do?
    thanks,
    Azin
    azwright

    I suggest you create a compliance base line and deploy it to the collections. The compliance will check whether the clients are running Office x64. If not, it will report as non-compliant, then you can create Collection based on this info.
    http://gallery.technet.microsoft.com/scriptcenter/Create-Non-compliant-eb023e3c
    Juke Chou
    TechNet Community Support

  • How can I have Facetime callers distinguish between my Ipad and my MacBook Pro?

    I'm wondering how does one set things up so that a Facetime caller can distinguish between calling me on my iPad versus calling me on my MacBook Pro? I have family calling me and it is popping up on the MacBook when, ideally, the call would come through to my Ipad when I'm traveling?

    Hello Mac_ThePI,
    In FaceTime's preferences, you can choose what Apple IDs and/or phone numbers you can be reached at. You might choose to make the phone number or certain Apple IDs the only checked option(s) on your iPad, and others on your Mac.
    iOS and OS X: Link your phone number and Apple ID for use with FaceTime and iMessage
    http://support.apple.com/kb/HT5538
    Cheers,
    Allen

  • AS3 and FLEX API Posters

    Would anyone know where I can purhcase the ActionScript 3 and
    FLEX API Posters that were handed out at the MAX 2006 Conference in
    Las Vegas? I've seen versions of it on the Internet, but I cannot
    print these versions out. Any information would be much
    appreciated.
    Thanks -

    Good question, I'd like to know this myself. 4.5 has a huge number of changes since 4.0.

  • What's the difference between Home Movie and Movie Project?

    I edit my movies in iMovie. After editing, I 'Share' them to Movie Projects in Finder. There's also an iMovie Home Movies folder that contains duplicates of some of the movies I've created myself. What's the difference between these folders. And, can I delete any of them? Thank you.

    A Time Capsule is hardware. It's basically an Apple AirPort Extreme wireless router with a built-in hard drive. For more info on this product:
    http://www.apple.com/timecapsule/
    Time Machine is a software application that allows your Mac to backup its data automatically to the hard drive on the Time Capsule. For more info on this software, which is included with the Leopard, Snow Leopard and Lion operating systems:
    http://www.apple.com/findouthow/mac/#timemachinebasics

  • What is the "Language Reference" difference between AS, Flash, and FLEX?

    I'm fairly new to the world of Flash9 / Flex2 / ActionScript3
    development environment.
    As I was reading through tutorial for FLEX/AS, I was
    introduced to Language Reference for FLEX 2.0.
    At the same time, I noticed in FLASH9 / AS3 there is also
    Language Reference page. For a moment, I thought these 2 Language
    Reference shared the same API / Language components.
    As I have found out, when I was looking up Language Reference
    for "Button" class for FLE2.0, it provided
    - mx.controls.Button
    But for Language Reference for "Button" class for FLASH9 /
    AS3, it provided different package
    - fl.controls.Butoon
    Why are there 2 sets of packages for the class Button?
    Shouldn't there just be one package for class Button?
    thanks,
    Ming

    Hello,
    The names can be confusing, especially since IE identifies Flash Player as Shockwave Flash Object in 'Manage Add-ons'.  They are, in fact, two different programs, as noted in your Programs and Features screenshot. Flash Player plays web content created using Flash Professional, Flex, or Flash Builder (ActionScript programming language).  Adobe Shockwave Player plays web content that has been created using Adobe Director.  They are not interchageable.  Web content created using ActionScript requires Flash Player and web content created with Adobe Director requires Shockwave Player.
    More info:
    Adobe Director
    Adobe Shockwave Player
    Flash Player | Adobe Flash Player | Overview
    HTH.
    Maria

  • Integration between SAP HR and PS (Project System)

    Hi Guys,
    Is there any integration between Project System and HR in SAP. My client is service oriented company.
    Every month New customers will join and each customer they call it as one project & maintain in PS. Now my client requirement is, through PS recruitment requisition should have to come to HR (For ex XYZ customer requires 2 Supervisors, 1 Manager), so that HR will recruit employees for the project.
    So is there any integration between PS & HR
    Regards
    Prasad

    Hi Vikram Patil,
    In my client place we are not implementing SAP Payroll, hence if any new project is created in PS, I need only man power requirement from PS, how can I proceed now
    If is there any documents on PS and HR integration please forward to my mail ID
    [email protected]
    Regards
    Prasad

  • Difference between SAP cProjects and SAP Project System

    Hi,
    SAP already has a solution PS ( Project System ) for managing the projects in an Organization.
    When there is a solution already existing then why did SAP come up with a new solution cProjects ?
    Can any help me in understanding the main differences and advantages between cProjects and PS ?
    Thanks and Best Regards,
    Priyatham

    Hi.
    I have copied an SAP text below which sets PS, cProjects, (x)RPM and PPM into context.
    In the ninties, the Project System was developed within SAP R/3 to provide a powerful application with full integration into logistics and financials.
    Target groups were industries such as engineering and construction, automotive, high tech or utilities with focus on project manufacturing or large maintenance projects.
    Later on, the need for more flexible and easy-to-use tools supporting the new process methodologies, phased-based approaches, quality gates, and so on, emerged. SAP developed Collaboration Projects and Collaboration Folders (cProjects Suite), which takes these new requirements into account and provides extensive features to collaborate with internal and external partners using a HTML-like interface and Web Application Server technology.
    Thus, cProjects was able to address to a broader range of industries, such as service providers, offering a high degree of visibility and flexibility to support various scenarios from product development to consulting projects. Nevertheless, cProjects is seen as a complementary product to Project System, not as ist successor!
    It always depends on the scenario that a customer wants to cover, which application is the best choice.
    As another matter of fact, combinations of both are also possible.
    In addition to this, the new generation of composite applications was born and SAP xApp for Resource and Portfolio Management provides excellent capabilities to align operational project management with strategic portfolio management.
    The latest developments bring all these three applications tighter together and offers a comprehensive solution for project and portfolio management by covering logistical, financial and human resource aspects and addressing the needs of all stakeholders throughout the entire organisation.
    However, xRPM capabilities are not only restricted to project portfolios but can be leveraged to control all kind of portfolio items.
    Regards / Anders

  • Distinguish between Journal Listing and Order Listing

    Hi Guys
    Is there a way to distinguish whether it can come into an activity journal and not in an ERP or Transfer order?  Is there config that tells it to come into an activity journal only.  Or only into an order.
    Help Needed.

    Hi,
    It depends on the determination procedure you assign to your application, either Order or Activity Journal.
    Check the below path in IMG,
    CRM -> Master Data -> Listing -> Listing Setting for Applications ->
    1) Order Management
    2) Activity Journal

Maybe you are looking for

  • Unable to login in to Mac App Store using valid account.

    I recently inherited a spare MacBook Air from my wife (who got a new one). I deleted her user account, and set up a new admin user account for me. The machine is running 10.7.5. Now, I am absolutely unable to login to the App Store. I am using my val

  • Account is blocked messege is display:

    Good Day everybody, Please help me out, I have few issues that, 1) I am seafarer and sailing from one place to another. We have internet on ship in which skype is the medium for connecting to our home. Skype was working good till 21 June, 2014. I had

  • Iphone charges fine but nothign happens when plugged to any computer

    Hi there, help really need or I wont be able to get anythinf off or on my phone again!! it charges with a sync cable no problem every time. however when i plug into my work computer to get the photos nothing happens. when i want to connect to itunes

  • How can people without Macs use iBooks Author?

    Hi, How can PC people use iBooks Author? Thanks, Elaine

  • Error while cancelling the billing documents with VF02

    Hi,   I am trying to cancell the billing document with VF02   but while cancelling with VF02 i am getting error  "For object RF_BELEG MS20, number range interval 62 does not exist FBN1",  here MS20 is our company code  then in FBN1 i have checke numb