Trace("helo world"); not working

Hi Experts,
i am new in Flex world and just wrote my first action script program which just ouput Helo World but it doesn't give me anything.
when i run my program, it simply load empty browser but doesn't show anything on console
package {
import flash.display.Sprite;
import flash.events.*;
    import flash.net.*;
public class ReblogrAPI
public function ReblogrAPI()
trace("Helo World");

thanks,
debuger was not working because of flash player.
i reinstalled flex and now i got my first program running.
Date: Thu, 4 Jun 2009 16:15:40 -0600
From: [email protected]
To: [email protected]
Subject: trace("helo world"); not working
Launch in Debug mode.
>

Similar Messages

  • First WDA (Hello World) not working in IE but looks good in FireFox.

    Hi,
    My Hello World App in WD  is not working in Browser IE. So I can't TEST it in SE80. It only shows a blank page and a javascipt error...
    Taking the same URL in Firefox works just fine....
    BSP apps is working just fine in both browsers.
    sapr3d.korkow is inside a "single label domain"
    http://sapr3d.korkow/sap/bc/webdynpro/sap/zwd_test2?sap-system-login-basic_auth=X&sap-client=300&sap-language=EN
    I have looked at the Config Manuals for WDA. FQDN etc.
    RZ10 now looks like this
    icm/host_name_full                          sapr3d.korkow
    rdisp/rfc_min_wait_dia_wp                   5
    rsdb/ntab/irbdsize                          8000
    rsdb/ntab/ftabsize                          35000
    rsdb/esm/buffersize_kb                      6144
    rsdb/cua/buffersize                         5000
    zcsa/installed_languages                    DEFKNOV
    abap/buffersize                             400000
    DIR_EPS_ROOT                                F:\usr\sap\trans\EPS
    DIR_TRANS                                  
    $(SAPTRANSHOST)\sapmnt\trans
    SAPTRANSHOST                                sapr3d
    SAPSYSTEMNAME                               U01
    SAPGLOBALHOST                               sapr3d
    SAPSYSTEM                                   00
    INSTANCE_NAME                               DVEBMGS00
    DIR_CT_RUN                                  $(DIR_EXE_ROOT)\$(OS_UNICODE)\NTAMD64
    DIR_EXECUTABLE                              $(DIR_INSTANCE)\exe
    PHYS_MEMSIZE                                9059
    rdisp/wp_no_dia                             16
    rdisp/wp_no_btc                             4
    rdisp/max_wprun_time                        900
    icm/keep_alive_timeout                      180
    icm/server_port_0                           PROT=HTTP,PORT=80,TIMEOUT=0,PROCTIMEOUT=180
    ms/server_port_0                            PROT=HTTP,PORT=81$$
    rdisp/wp_no_enq                             1
    rdisp/wp_no_vb                              4
    rdisp/wp_no_vb2                             2
    rdisp/wp_no_spo                             1
    In my hosts file I have:
    127.0.0.1       localhost
    178.18.8.15     SAPR3D
    Any Pointers ?
    Br,
    Martin

    Hi,
    I'm using IE 7.0.5730.13
    I also "fixed" securtiy settings to be as Low as possible....
    (Below message I could not cut and paste... so there may be some spelling misstakes.)
    First javascript error:
    Line: 10
    Char: 13
    Error: Invalid argument
    code: 0
    URL: http://sapr3d.korkow/sap/bc/webdynpro/sap/zwd_test2?sap-system.....
    second error (pushing Next button):
    same as above but:
    URL: http://sapr3d.korkow/sap/bc/webdynpro/ssr/domain_relax.html?000041-1
    third error:
    same as above but:
    URL: http://sapr3d.korkow/sap/bc/webdynpro/sap/zwd_test2~ucfLOADING?sap-contextid=SID.....&sap-wd-clientWindowid=25143
    Any pointers ?
    Br,
    Martin
    Edited by: Martin Andersson on Jun 29, 2008 5:36 AM

  • Black barry Z10 - BB world not working

    Hello,
    I have just bought BB-Z10 , My Black Berry World is not working , all other function like emails , calls etc working fine. 
    I really need help to start the BB world. 
    I saw few post in using Music , Games etc to start BB world but its not working in My case.
    Please help to sort out.
    Thank you,
    Prashant 

    On your Homescreen, at the top right >> do you have the BlackBerry dots log next to the wifi router signal indicator?
    Try rebooting the device... with it powered ON, remove the battery a minute, reinsert and after reboot connect to the wifi again and try App World.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Trace & Alert is not working

    Dear Friends,
    iam using snackr open source to evaluate and learn flex. i
    know Flash3 & AIR very well. iam New to Flex.iam trying to use
    trace or alert.show command in order to debug the coding. it is not
    giving out put. even it is not going to that line. i read the help
    file and searching for mm.cfg to edit and fix enabletrace =1.
    pls help me..
    Thanks and Regards,
    Syed Abdul Rahim

    Dear Mr.Rushme,
    Thks for your reply, as u said, i creeated a folder called
    c:\user\syed.rahim\mm.cfg, and run the following code, i want to
    find the saving path of the file, i mean application storage
    i.e. trace(docRoot.nativePath);
    Alert.show(docRoot.nativePath);
    in some case i want to use trace for debugging, like certain
    function is getting fire or not? but the trace or alert is not
    working, basically i want to display a message and debug..
    code is:
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    applicationComplete="handleApplicationComplete(event)"
    frameRate="60"
    visible="false"
    autoExit="true">
    <mx:Style source="styles/styles.css"/>
    <mx:Script>
    <![CDATA[
    import ui.utils.UIUtils;
    import model.logger.Logger;
    import model.feeds.FeedModel;
    import model.options.OptionsModel;
    import ui.windows.SnackrMainWindow;
    import mx.controls.Alert;
    * Name of the database where we store all feeds and options.
    This file
    * is within the user's documents folder in the Snackr
    subfolder.
    static private const DB_FILE: String = "FeedDatabase.sql";
    private var _mainWindow: SnackrMainWindow = null;
    private function handleApplicationComplete(event: Event):
    void {
    // Create the Snackr data folder if it doesn't exist (inside
    the user's
    // document's folder).
    var docRoot: File =
    File.documentsDirectory.resolvePath(UIUtils.appName);
    docRoot.createDirectory();
    trace(docRoot.nativePath);
    Alert.show(docRoot.nativePath);
    // Initialize the logger. The logger writes to the file
    Log.txt in the
    // Snackr data folder. We keep the previous 3 log files
    around.
    var oldLogFile: File;
    for (var i: int = 2; i >= 0; i--) {
    oldLogFile = docRoot.resolvePath("Log" + (i == 0 ? "" :
    String(i)) + ".txt");
    if (oldLogFile.exists) {
    try {
    oldLogFile.moveTo(docRoot.resolvePath("Log" + String(i+1) +
    ".txt"), true);
    catch (e: Error) {
    // Too early to log this. Oh well. It just means that we
    won't be preserving
    // log files earlier than the current one.
    trace("Can't back up log file " + oldLogFile.name);
    Logger.instance.initialize(docRoot.resolvePath("Log.txt"));
    Logger.instance.log("Snackr starting");
    // Open the Snackr database file and initialize the models
    from it.
    var feedModel: FeedModel = null;
    var optionsModel: OptionsModel = null;
    var sqlConnection: SQLConnection = null;
    var dbFile: File = docRoot.resolvePath(DB_FILE);
    try {
    sqlConnection = new SQLConnection();
    sqlConnection.open(dbFile);
    sqlConnection.compact();
    optionsModel = new OptionsModel(sqlConnection);
    feedModel = new FeedModel(sqlConnection);
    catch (error: SQLError) {
    Logger.instance.log("Couldn't read or create the database
    file: " + error.details, Logger.SEVERITY_SERIOUS);
    throw error;
    _mainWindow = new SnackrMainWindow();
    _mainWindow.initializeModels(sqlConnection, feedModel,
    optionsModel);
    var showInTaskbar: String =
    optionsModel.getValue(OptionsModel.OPTION_SHOW_IN_TASKBAR);
    if (showInTaskbar == "0") {
    _mainWindow.type = "lightweight";
    else {
    _mainWindow.type = "normal";
    _mainWindow.open();
    ]]>
    </mx:Script>
    </mx:Application>
    Thanks and Regards,
    Syed Abdul Rahim

  • Applicatio​n World not working

    Hi,
    my application world is not working. I am using BB Bold 9780 model. Please help.
    Regards,Ravi

    Yes use the email to back up. Too save time I just copy and paste my media files and documents to my pc. I do a selective backup and select apps and apps data. Make sure you have the latest dm software installed.
    Hope this helps.
    Be a Shepard and not an iSheep.

  • Blackberry Z10 app world not working

    Ever since the latest software update, Blackberry App world on my phone will not work.  I open it and it tries to load but never gets past that point.  I have pulled the battery to see if this would help but still no luck.  I can't remove it as it is part of the new os 10 system.  Any info would be appreciated.
    Thanks,
    Solved!
    Go to Solution.

    On your Z10, go to your Music or Games icon.
    Tap the lower left three dots overflow icon and touch BlackBerry World.
    Now, BlackBerryWorld should start for you.
    credit to ukmight for this solution.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Any news on CC Particle World not working on the new Macs?

    I discovered to my horror that CC Particle World doesn't work on the early 09 Mac Pros. Something about Adobe stuff not fully workable with the Nehalem processors. Any news on a solution?  I need my particle world!

    We're working on an update that will address this issue. Here's a link to a Technical Support knowledgebase article that says essentially the same thing now and will be updated with more information when we have it.

  • Blackberry App World not working after update to 3.1.0.58

    I have a Bold 9650. I am running BB version 6.0 Bundle 2333, Yesterday (12/25/2011) App World told me I had an update to App World. It was for version 3.1.0.58. I was at 3.1.0.56 at the time. I accepted the upgrade. After the restart, App World no longer shows up as a running application. I have restarted the Bold twice, and I can not even find the app in the "All" screen. It is listed in the Options->Device->Application Management but says it has never been used. I'm new to this beast and am stuck. Any idea how I can go back to 3.1.0.56 - which worked for me? After this, I am going to be a bit more careful before allowing updates.
    Thanks in advance for any help you may offer.

    When I enter www.blackberry.com/appworld/download in the blackberry browser, it redirects me to http://mobileapps.blackberry.com/devicesoftware/index.do which tells me to "View Blackberry App World Availability" which in turn gives me a list of countries. But no download link or any other link - just a flat list.  And, of course, it does include the USA....
    So, I brought up the URL in IE after hooking up the Blackerry to my laptop, which has the plugin installed. I got the page with 2 options. "Enter an email address and it will send to my mailbox a link to the download." So I entered my email address and it sent me a link. The link that it sent me took me right back to the "View Blackberry App World Availability" page. Nothing.
    The other option said to plug in the Blackberry, which was already plugged into the USB and communicating. Supposedly this will install via the USB port. But it returned the following. 
    "Downloads via a USB connection are not enabled for this product. Please visit our mobile download site using the browser on your BlackBerry® smartphone.
    Which again gets me nowhere.
    This is crazy. Can't wait to get rid of this useless "SmartPhone". What a joke. But thanks for the help... 

  • App world not working on curve 8520

    My app world just doesn't want to work it does not give me a log in option it wants to log in by itself then it gives me this message "there is a problem with the current session. Please log in to continue. (Error Id: 30702)" I've logged in on my computer and it logs in there but not on the phone self I've tried everything So I give up please help this has been going on for a long time now

    Does this BlackBerry device have the BlackBerry Data Plan on your mobile provider account? Are you able to use Email and BlackBerry Messenger fine?
    More info for you:
    Article ID: KB28212 "Unable to login to your BlackBerry ID account" or "Unable to update your BlackBerry ID account information" error occurs on a BlackBerry smartphone running BlackBerry 7
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • App World not working after upgrade

    I upgragded App World to 3.1.2.32 this morning. Now App World Will not run.
    There is no action after clicking the icon .

    I have the same issue. Details:
    Model: Torch 9800
    Providor: Telus
    Other: Connected to my company's BES
    Issue: When attempting to launch Blackberry App World, nothing happens when clicking on the application. The application does show that it is currently running, but when attempting to switch to it nothing happens.
    Troubleshooting:
    -Rebooted Blackberry twice
    -Pulled battery from Blackberry
    -Reinstalled Blackberry App World from the web site download
    -Refreshed the service books as suggested in the earlier post
    Unfortunately when using the desktop software, it's not listed as an application that you can remove or else I would try that as well. I've done a backup, but I really do not want to wipe my device unless absolutely necessary.

  • Blackberry app world not working. Please help me.

    Okay, basically I'm having this major problem. I have a blackberry torch 9800. I've just had my phone replaced as I dropped it into a puddle.. So i'm happy I got a replacement phone, the only problem I'm having is downloading one app in particular. It's 'Barclays PingIt' i had it on my app world before I dropped my last one into a puddle, but now its almost as if blackberry app world doesn't want to let me download it again? It's fine with every other app just this one. It won't even open to let me download it. It is shown under my uninstalled list in my app world but it just won't let me open it to reinstall or download that one app.
    Any suggestions on what to do as this is really getting on my **bleep**.
    Much appreciated.

    The place where you can find the reinstall or delete button is blank? Please check you application management if it is already there, if not, please email the app vendor support for them to to send you an OTA downlink link of its no longer available in App World.
    Click "Accept as Solution" if your problem is solved. To give thanks, click thumbs up Blackberry Battery Saving Tips | Follow me on Twitter

  • Unlimited world not working

    Got it yesterday and payment went through fine. I was able to make 3 phone calls yesterday but cant make any today. Subscription is active and it says I have no skype credits to make this call, Yes it is a landline number and no I have not went over the fair usage policy limit. I am calling to estonia Thanks...

    @RGomez
    Unlimited World includes over 40 countries, but currently Colombia is not included: www.skype.com/intl/en/prices/pay-monthly/#UnlimitedWorld
    You can purchase Colombia subscription from: http://www.skype.com/go/subscriptions
    Alternative is to use Skype Credit which you can purchase from account page: https://secure.skype.com/account/
    Andre
    If answer was helpful please mark it with Kudos and if issue is resolved mark it with solution. This will help other users find this answer more easily. Thanks in advance!

  • KBS world not working right

    Hello
    I'm using KBS world app it work a few days ago until someone hit the power line down town and made our power go out after that I tried resetting my internet that I have is CenturyLink and we tried KBS world and it keeps cutting out it will play but go and cut out it's driving us crazy before our power went out it work fine I thought it was the weather over there or it may be KBS itself otherwise the Apple TV works great other apps work on it but just KBS world it's kind of hard to watch the program you want to watch with it stopping in the middle like there a internet connection error or something it plays but it stops in the middle like it taken a long time to load or something we got a LG TV and that's it and yes I tried resetting the Apple TV that didn't work at all

    Contact Apple TV content providers - Apple Support

  • App World not working

    hi,
    Unable to download the Blackberry App World on my new Curve 8520. It says device hardware not supported!!! Pls guide...
    Regds,
    Bithindra

    Where are you located?
    And, do you have the BIS BlackBerry Data Plan on your mobile provider account?
    App World Requirements / Support
    You must meet all of the requirements:
    1. BlackBerry® Device Software version 4.2 or higher
    2. BlackBerry smartphones with trackpads, trackballs or SurePress™ touch screen
    3. To use BlackBerry App World, you require a service plan that includes access to the BlackBerry® Browser
    4. And you must be in one of the countries which AppWorld supports
    http://www.blackberry.com/app_includes/devicesoftware/appworld/appworld_availability_en.html
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • My computer's key board and trac pad is not working! help!!

    I just bought the new iphone 5. Inorder to activate it, i needed to download the newest version of itunes. In order to do so, i had to download snow leopard first before lion because aparently i hadn't updated in a while. So I downloaded snowloepard offline (I don't have a disk). Now my computer's track pad and the keyboard doesn't work!! I bought a keyboard and mouse to see if that would work, it doesn't!! I have taken the battery out and reset PRAM. any other suggestions?? My computer is a 2008 MacBook, please help! All of my info is unreachable
    Thanks!!!!

    How did you download Snow Leopard? It is not available from Apple online. If you got it from another source, it is suspect.
    You can get SL by calling Apple. 1-800-MY-APPLE in the USA.
    Best of luck.

Maybe you are looking for

  • Terminating event and abap oo class

    Hi, gurus, I 'd like to know how the terminating event works. for example,  i define a custom abap oo class (which has been implemented the interface of IF_WORKFLOW), and i want to use it as the terminating event of a standard task. could you please

  • ORA-06502: PL/SQL: numeric or value error ORA-06512: at "APPS.WF_NOTIFICATION", line 5754 ORA-06512: at line 5

    Hi, I have a variable l_body in my pl/sql code with varchar2(32767). it displays max. 44 lines, more than 44 lines it gives buffer size error. if I use clob data type then it gives value or numeric erro on more than 44 lines. code is below regards l_

  • Problems shutting down illustrator cs3

    greetings - just curious if anyone else has had issues w/ illustrator not shutting down (i.e., file/exit). i have yet to attempt an uninstall/reinstall since it took a long time to install cs3 on my machine the first time (had to restart it once). ab

  • ALE IDOC object development

    Hi All, I am developing one object using ALE IDOC. But i have little knowledge of ALE IDOC. The requirement is to pass data from from corporate HCM side to SAP BW side if there is corresponding field in the SAP BW side. i know i have to use ALE ,IDOC

  • Creating URL iview for Interaction center

    Hi All, We currently have Interaction center ( CRM application) integrated in our Portal ( EP 7.0). Due to some issues, we need to create an URL iview for Interaction center instead of a BSP application. Pls let me know what parameters should I menti