Get info about current movie

Hi,
I just stumbled about the undocumented SystemManager.info function which seems to know quite a lot about the currently running movie - such as backgroundcolor, dpi, frames
Is there a way to access this information in an AS3 only project (where the main class extends Sprite)?

Call FM GUI_HAS_ACTIVEX to check if gui is a normal sap gui and supports ActiveX objects
and FM GUI_IS_ITS               to check if is a web gui

Similar Messages

  • How to get info about currently running threads in j2sdk1.4.2

    I am using j2sdk-1.4.2. There are many threads running in my program. I want to see after which thraed is invoked after another thread. I have used Thread.sleep() method to sleep the thread and give the chance to another thread to run.
    Thanks,
    Amit Mittal.

    There is no way known to me to find out, which thread is currently active if you don't want to use debugging-outputs.
    But please don't use sleep(), it slows your code down unnecessarily and is not save. Use Thread.yield() in order to give other threads the chance to run.
    Regars, tom

  • How to get info about the mobile, like screensize...

    hi,
    i need some info about the device my midlet is running on.
    how is it possible to get info about the screensize, screentype(color/black) and perhaps devicetype or modelname?
    i already read it somewhere but i didn't find the source again.
    tia
    mmkl

    thx,
    the example below shows some basic information.
    Display myDisplay = Display.getDisplay(this);
    Displayable dis = myDisplay.getCurrent();
    int high = dis.getHeight();
    int width = dis.getWidth();
    boolean isCol = myDisplay.isColor();       
    int nubCol = myDisplay.numColors();more detailed information about model, aren't available through the standard api, on blackberry's there some restricted apis that provide these device-type and other detailed information...
    for more basic information, just look at the class-methods from display and displayable...
    mmkl

  • Get info About Interconnect in 10gR1 (10.1.0.4)

    Hallo,
    I need as much info as possible on cluster interconnect.
    I get info about OCR configuration for DATABASE cluster interconnect from
    $oifcfg getif
    and from Alert.log and querying X$KSXPIA.
    How can I get info about CLUSTERWARE cluster interconnect?
    Thanks

    ottocolori wrote:
    I need as much info as possible on cluster interconnect.By looking at the Interconnect from the o/s level. Oracle only uses the Interconnect at IP layer (via the standard Berkely socket interface). (assuming that CRS is not configured for using RDS* instead)
    It does not care what the Interconnect is.. or how it works.. or how it is configured. It deals with the Interconnect via the o/s kernel's IP stack API (i.e. sockets).
    If you want to look at the Interconnect layer itself, you need to do it from the o/s layer. Like using ethtool to configure or query the Interconnect interfaces. And using the s/w tools provided by the Interconnect layer. For example, Infiniband provides a range of ib commands at o/s level to query and configure IPoIB (IP over Infiniband).
    * RDS is a low latency protocol that can be used instead of IP protocol suite as the Interconnect protocol

  • How to get info about web service caller inside Web Service

    Hi..
    I want to know that can we get info about Web Service Caller inside called web service..
    Info Like IP Address, User Id, User Name
    Regards,
    Ajay Sharma

    Hi,
    I tested following code using JDevloper 11g
    @Resource 
        WebServiceContext wsc;
        @WebMethod
        public String webMethod() {
                    MessageContext msgCtxt = wsCtxt.getMessageContext();
            HttpServletRequest req = (HttpServletRequest)msgCtxt.get(MessageContext.SERVLET_REQUEST);
            System.out.println("Client IP = " + req.getRemoteAddr());
            return req.getRemoteAddr();
        }It is giving me IP address but when i tested this web service from another computer there also it is giving my machine address instead of the machine IP from where the web service is called.
    What is wrong in my code ?
    Regards,
    Ajay
    Edited by: Ajay Sharma on Dec 31, 2012 1:06 PM

  • How can i get info. about sun systems in real life situation

    Hi
    infact i m not so experienced ? but i have got certification and nowadays i m improving myself and applying for jobs. please tell me how can i get info about the sun systems in real life situation. i mean that how can i get details like that mostly companies use which systems ? what is the trend of companies and how i can get detail of history of sun systems?
    Thanks in advance

    hmm.......... its very difficult to explain. an its more difficult simulate....well my suggession is to get in to some job with your present knowledge and try to learn more from there....

  • Business transaction - get info about attached documents

    Hello,
    I'm looking for some FM to get infos about the documents in the business transaction. I need to know if a folder has been created, if a document has been attached in this folder...
    If you also know a FM to create some folders, it is also welcome.
    Thanks and Regards,
    Frédéric

    Dear Frederic,
    you can try something like the following code (it checks if a document with the name LOGO is assigned to a Businesspartner and works in a same way for business transactions:
    DATA:
        lt_documents      TYPE skwf_ios,
        lt_doc_phios      TYPE skwf_ios,
        lt_properties     TYPE sdokproptys.
    DATA:
        ls_sibflporb      TYPE sibflporb.
    FIELD-SYMBOLS:
        <lfs_document>   TYPE skwf_io,
        <lfs_phio>       TYPE skwf_io.
    * get all documents to the businesspartner
      ls_sibflporb-instid  = lv_partner_guid.
      ls_sibflporb-typeid  = 'BUS1006'.    "#EC NO-TEXT .
      ls_sibflporb-catid   = 'BO'.         "#EC NO-TEXT.
      CALL FUNCTION 'SKWG_OLS_BO_LINKS_GET'
        EXPORTING
          BUSINESS_OBJECT              = ls_sibflporb
    *     RELATION                     = 'WCM_LINK'
    *     CSPC                         = ' '
        TABLES
          IOS                          = lt_documents.
    *  try to find the right document (name = LOGO)
      LOOP AT lt_documents ASSIGNING <lfs_document>.
        REFRESH lt_properties.
    *    Eigenschaften lesen
        CALL FUNCTION 'SKWF_IO_PROPERTIES_GET'
          EXPORTING
            IO                       = <lfs_document>
          TABLES
    *       PROPERTIES_REQUEST       =
            PROPERTIES_RESULT        = lt_properties.
    *    Property "KW_RELATIVE_URL" have to be LOGO!!!    READ TABLE lt_properties WITH KEY name = 'KW_RELATIVE_URL'
                                          value = 'LOGO'
                   TRANSPORTING NO FIELDS.
        CHECK sy-subrc EQ 0.
    * do something......
       ENDLOOP.
    Regards,
    André

  • Get info about if you use WindowsGUI or HTMLGUI in ABAP

    Hello all,
    I'm now wondering if I can get info about if you're using GUI for Windows or GUI for HTML in ABAP report.
    If you know anything on this, please help me.
    thanks in advance,
    Hozy

    Call FM GUI_HAS_ACTIVEX to check if gui is a normal sap gui and supports ActiveX objects
    and FM GUI_IS_ITS               to check if is a web gui

  • Getting info about a particular property of an object....

    Hi ,
    How to get info/help about a particular property of an object...???? I mean that if all the properties of an object displayed in the property palette(for example an iterator) how to get info about and only about RefreshCondition property , without having to activate the whole on-line help and search it in there.....????? Pressing F1 , on it , displays general help about the Property Inspector....
    NOTE : I use JDev 10.1.3.
    Many thanks ,
    Simon

    If you'll look carefully at the property inspector window you'll notice two bars at the bottom - if you pull them up then the second one contains help text for each property you stand on.
    Note that this only works for properties that have the help in them.
    I think for the pagedef items it doesn't show much info, but try for example standing on JSF objects in your page.

  • ITunes Bug: Get Info on a movie displays actors instead of director

    Bug in iTunes 12.0.1
    Get info on any movie in iTunes and where it shows "Director" it will list the Actors instead, not the director at all.

    This issue has been happening to me for years as well doing the same exact thing. Import an album and want to change info in bulk such as the number of discs. Each time one track is left out normally towards the middle of the album.
    Any solution for this would be much appreciated as it is just frustrating for this to continue after so many years.

  • How to get info about Composition/Candidate window?

    Hi All,
    I'm working on an application which should be able to take multi-language input (especially chinese, japanese, and korean).
    When we type something in Chinese/Japanese, there will be Composition and Candidate Window popped up. I want to know whether there is a way to get/set some attributes/info about those windows.
    Specifically, I want to be able to position the Composition/Candidate Window anywhere I want...
    I've tried the active client tutorial for the on-the-spot and below-the-spot input, but I still haven't find a way to get a 'handle' to the windows...
    Can anyone help? Thanks in advanced :)

    I do not think the individual temp file percentages is of much use. What you usually want to know is how much of the temporary tablespace is in use and how much is available.
    For that I think you want to compare current total usage information that can be found in v$sort_segment against total available for usage data that can be found in dba_temp_files to get the percentage of available temporary file space that is in use.
    I quickly put together the following. See if either is on any use in constructing the information you really want.
    > @t20
    >
    > select
      2    used_blocks
      3   ,total_blocks
      4   ,f.blocks                             as FILEBLOCKS
      5   ,round(used_blocks/total_blocks * 100,1) SORTSEGPER
      6   ,round(used_blocks/f.blocks * 100,1)        TEMPFILEPER
      7  from
      8    v$sort_segment
      9   ,(select sum(t.blocks) blocks from dba_temp_files t) f
    10  /
    USED_BLOCKS TOTAL_BLOCKS FILEBLOCKS SORTSEGPER TEMPFILEPER
           8960       689664    1025024        1.3          .9
    >
    > select
      2    round(used_blocks/ (select sum(blocks) from dba_temp_files) * 100,1) ||'%'
      3    as TEMPFILEPER
      4  from v$sort_segment
      5  /
    TEMPFILEPER
    .9%HTH -- Mark D Powell --

  • Cannot play or "Get Info"  for certain movies - just get spinning wheel???

    I have all my DVD's on Apple TV in mv4 format for my daughter (this is not a thread about ripping them!) and everything has been fine. I have 3 AppleTV's I keep her stuff on and it also syncs to an iPod for the car. I'm not sure when it started but I noticed that some of my movies didn't have their artwork anymore. I tried the "get info" but all I get is a spinning wheel. I tried to double click to play and yet again, spinning wheel. The file is there but it crashes my whole system when I try to use it.
    So, why one minute would everything be ok and the next some of my files are problematic? Any ideas?
    Message was edited by: aubiem

    You may be linked to an image (of auto opening font)that went corrupt, is there a comon image between them. If so put that image temporarily in a folder to break the link.
    Try making a new user account, or opening on another computer if you can. How do the file size look on the document, are the the size they are supposed to be?
    Try resettting your preferences. Cmd-Opt-Ctrl-Shift when restarting AI on a Mac or Alt-Crtl-Shift on a PC to reset to the defaults.
    Is the problem definitely associated to them being on the same date, or is the similarity possibly a job with similar fonts/images?

  • Need some info about current market on SAP HANA

    Hello all,
    Iam ajay. I have 2 years experience on java and i learned SAP ABAP and want to learn SAP HANA. I I have some doubts regarding current market on SAP HANA and how people are using HANA now. I have searched a lot in google and contacted many people but i didn't get the good answer. I hope this post provide me the required info. Thanks in advance.
    Can somebody please give some info. about the following.
    What exactly does the following mean and what is the future of these areas?
    BWI with HANA
    BODS with HANA
    HANA modelling and implementation.
    HANA Migrations.
    SAP UI5 with HANA.
    please spare some of your valuable time and help me on this.
    Thanks,
    Ajay.

    Hi
    I agree its a common HD webcam with a resolution of 1Mpix.
    You can record the video in Mpeg format and the pictures would be taken in format: 160x120, 176x144, 320x240, 352x288, 640x480, 1280x720, 1280x800

  • ITunes crashed during "Get Info" now the movie won't add to the library

    Hi all,
    I've been using iTunes with my Apple TV for over a year now, and this is the first time this has happened, and I'm at a loss on what to do to remedy it.
    I added a number of movies to my iTunes (as i have done a number of times before), and selected them all, and clicked on Get Info, to move them from "Home Movies" to "Films", nothing new there, but this time when i clicked ok this time, for whatever reason iTunes stopped responding, and came up with the usual error of "iTunes has stopped responding....", so after I get returned to my desktop I went back in to iTunes and the movies i'd added weren't in "Home Movies" so i figured, "oh well, it must have completed it anyway, and then crashed", so i went and checked my movie list, and they aren't there either.
    I figured that it just hadn't saved the fact i'd imported them, and went to add them again, but it just won't add them... i've tried adding them as multiple files, and adding them as individuals, but still to no avail.
    Can anyone shed any light, or point me in the right direction for correcting this issue?
    Thanks in advance for reading, and any help anyone can offer.

    Hi beau_nidle,
    Thanks for visiting Apple Support Communities.
    If iTunes quit unexpectedly while saving changes, and now will not import the movies again, I'd suggest rebuilding your iTunes library. See this article for help with this troubleshooting step:
    iTunes: How to re-create your iTunes library and playlists
    http://support.apple.com/kb/ht1451
    All the best,
    Jeremy

  • How get info about computer app is running on?

    I am making an application that will have a license for running on only one computer at a time. I will have a license file that will hold info about the app, its version, etc. But I also want to put info about the computer that it's being installed on (none of that info will be sent to me, just saved in the license - enrypted - so the license can't be used on a diff computer). I do NOT want the OS name and version (they can change that) but the actual computer info.
    I know some C/C++ programs can do this, but is there any way to get this info from java? Does anyone have any sample code or even just suggestions of places to look for this information? It'd be greatly appreciated!
    Thanks in advance!

    I know it's not a perfect solution - yes someone could
    decompile it, but how many people do that or know how
    to do that? Well, most semi-decent Java programmers know how to do that. Then they'll decompile and crack it and distribute it, provided that your
    program actually is something good.
    While doing what I suggest wouldn't stop
    100% of the users from pirating my software (which I'm
    attempting to make a living off of), it would stop
    MORE than if I didn't do it.Probably it'd annoy more potential customers. It's a very bad idea to piss off the customers.
    As for changing the HD, or even the computer it's on,
    that would be totally possible. The app is equipped
    with a way to invalidate the license so it won't work
    on that computer, and contact my site to invalidate
    the public key and then allow them to redo it on
    another computer/HD. It all would take only about 2
    minutes actually, so it's not even an inconvenience.As a potential customer I'd have to disagree.
    I see no problem with that.Yes, but you're the author not the customer.
    Do you or anyone else know of a way to do this, even
    if not through Java, in C (JNI) or C++?Through JNI it's possible naturally, but I don't know the specifics.
    The reason
    it's a big deal is this: for a company like MS if only
    20% of the users of their product actually pay for the
    product, they're still making millions. If only 20% of
    the users paid for mine, I wouldn't even have enough
    money to live for 3 months!Get a job? :) Sorry, but seriously having copy protection isn't really going to make a difference. If your product is really good it will get cracked, if it's a specialized piece of software that won't be circulating in the mainstream, then a simple license check would suffice.

Maybe you are looking for

  • I DARE someone to help me!!! Since installing Lion I cannot open app store... tried EVERYTHING!

    Please HELP! Have not been able to open the app store for weeks now (I think since i installed Lion). Software is up to date. Cache has been emptied. I have even reinstalled using Lion recovery. I have had a few people try to help me out but nothing

  • My iPod Touch (3G) won't turn on?

    I've owned my iPod Touch since June 30th, 2010 (a little over a year). I am no longer under the warranty, so I know that if my iPod is broken, I will have to pay. My iPod has been dropped several times, it has cracks in the screen, but the screen has

  • Opening PDF in IE "breaking" for loop

    Hi, I have a dynamic PDF that is uploaded to a website.  When the PDF opens, the user has to fill in certain fields before clicking the "Next" button.  Upon clicking the Next button, I have a JavaScript function that sets certain fields access to req

  • Do i need to clean my imac?

    Hi, I am new to Apple and I have an iMac 27 2.7 GHz intel i5 with 16 gb of RAM and a 1 TB hard drive.  Do I need to clean the hard drive and defragment it as I used to with my windows based machines? It seems to freeze and slow down occasionally and

  • Keyboard short cut for add comments

    I would love to have a keyboard shortcut to apply html comment and apply */ comments which appear in the icons on the left of the code window. I cannot find anyway to do this. Is it possible?