Some weird errors when i put flex online

I made my first flex project off the demo from adobe's
site.....
you can go here and look at it but when you click one of the
phones it gives you an AS error...cuz im new i have no clue what
this means....
http://24.180.92.58:2000/flex/phones/bin/phones.html
And to get it online i just copied my bin folder to my
webserver....im not even sure if thats right...my server is only
running apache on it and php does it need something more

Hi. The links works for me also. the reason clicking on a
phone does nothing is that you are missing the 'Show Details'
button that should be on the lower left (it's a 'details' state) in
main.mxml.
The app works fine - if you want to see it online, go here:
http://www.timos.com/PhoneSelector/flex/main.html.
Have fun
Carlos

Similar Messages

  • Weird error when clicking on instance- flow from the console

    When I have heavy volume coming in for the bpel server(ex: hundreds of instances generated at a time), I see the following weird error when I am trying to see the instance flow from console:
    Process state off. The process class "BugBAM" (revision "v2004_12_20__61032" ) has not been turned on. No operations on the process or any instances belonging to the process may be performed if the process is off. Please consult your administrator if this process has been turned off inadvertently.
    I didn't do anything to the process to turn the state off. What does this error message mean?
    Thanks, Jenny

    I am assuming that you are using 10.1.2 beta 1. Is that correct? I am wondering if in that version there is a switch that turns a process off when a new version of the process is deployed (this would be a bug because the active process should only be switched to retired).
    Next time you get this error, could you please go to the BPEL Console and check the state of the BPEL process.
    We will try to trace the error message in the source code and try to determine if there are other circumpstances which would generate the same error code.
    Edwin

  • HT1338 i've been getting an error when trying to play online games saying that i need to have the browser in 32 - bit mode. my browser is in 32 - bit mode but the msg keeps coming up and not running the game

    i've been getting an error when trying to play online games saying that i need to have the browser in 32 - bit mode. my browser is in 32 - bit mode but the msg keeps coming up and not running the game

    I dunno, that doesn't make any sense to me.
    I just shut down and rebooted into the SnowLeopard partition and took a peek at the preference panes.  There are only 3 that run in 32 bit only.  They are all 3rd party, and none of the prefpanes are non Intel.  Like I said, I have never owned a PPC machine.  Anyhow, SnowLeopard doesn't even have an iCloud prefpane, or a combined mail, contacts, and calenders prefpane, and the ML security and privacy prefpane is all new as well.  The software update prefpane is Intel and 64 bit in both SnowLeopard and Lion.
    As to the triple boot, unless I'm totally mistaken, what I have here is, in essence, 3 seperate descrete computers in one box.  All using the same hardware. but one at a time.  I wouldn't know how to get more than one running at the same time, without using a virtual machine, even if I wanted to.  (Which I don't)  I do sometimes transfer files from one to another using the shared folder, but other than that, they do not interact.  How could ML system preferences be trying to launch prefpanes from a totally different machine?

  • Weird Error When Verifying External HDDs

    Hello
    I'm getting a weird error when verifying my 2 external HDDs. Both give me an "invalid leaf record count" error. But only when I check them with the OSX install cd. If I check them in my user account, they come up OK. Both drives also gave me a "reserved fields in the catalog record have incorrect data" error. Disk Utility was able to fix that error, but not the invalid leaf error. I have tried multiple repairs, but DU says the volume cannot be repaired. The other weird thing is when I ran the first repair, it said 1 HFS Volume Repaired and 1 Volume could not be repaired. I have also tried using Disk Warrior, but it gives a "this volume appears to be formatted with a newer version of the OS" error.
    Both these drives I had plugged into my mom's iMac (running 10.5--my eMac is running 10.3.9) because I had firewire problems back in June. Did 10.5 modify something that has 10.3 mixed up?
    Is there something I can do to fix this or do I need to do another re-install?
    Music Luver
    "+I hear her playing music+..." ~ Barry Manilow

    OS X 10.5 does add additional attributes bits to the file descriptors, so using the drive under 10.5 would be expected to add those additional bits to at least the disk directory plus any modified files.
    When you then check the drives using utilities created prior to OS X 10.5, those older utilities don't understand the additional bits and report then as errors (DU), of the utilities check first and refuse to run if the disk is tagged as from a latter OS version (DW).
    There's a generic warning about mixing older utilities with newer OS versions in Only use Mac OS X 10.4-compatible disk utilities with Mac OS X 10.4 volumes.
    I'd be ready to shrug the error reports off as spurious; however, that DU "corrected" the reserved bits suggests the drive directories will be rewritten again should you again move the drives to a 10.5 computer. Are you seeing any actual problems wiuth reading or writing to the external drives? If not, write it off to 10.5 settings bits that earlier versions ignore; it shouldn't affect your data.

  • My applet can access an image in Eclipse, but not when I put it online...

    Basically, I have an applet that displays images among other things.
    I stuck the images in the bin directory, and when I run the applet from Eclipse, there's no problem.
    But when I put the applet on my webpage, it crashes with a NullPointerException because
    image = ImageIO.read( new File( imageName ) ) can't seem to get the image.
    The images are in the same directory as my class files. I tried turning on all permissions.
    My html code is very simple:
    <applet code="ImageGenerator.class" width=1000 height= 500> </applet>
    Am I missing anything?
    Any idea what the problem is?

    Meteor,
    Can you shed some light on how big these files are?
    If these images are 200K each and you have 10 of them, then you're loading 2MB across the network each time the application loads. Depending on what you are doing, that may not be a good design.
    If these slow-loading images are needed right away, then embed them with your applet (preferably a Jar) and they should load pretty fast.
    If these slow-loading images are needed later, then thread the loading of them to a background task and use some form of visual feedback (like a "please wait" image) until they're finished.
    Lastly, if these images are relatively small and you are experiencing a significant speed difference between accessing them locally (such as on the server's file system or through a mapped-drive) and accessing them through http (or url, etc) then make sure your web server is feeding them up in a timely fashion and that there's no outstanding issues with the URL loading method and the Java version you're using.
    Please read Andrew's posts closely as you should not be designing an applet that loads files as a local resource unless you really need to. Signing the applet will allow you to save them locally to the filesystem (as a "cached" version to be loaded later), but don't try to load the images as files directly from the web server's file system. The signed applet will only be able to access the local file system of the station it's being run on, hence, usually not the server!
    As far as caching the files locally, Java webstart has potentially a better ways of doing that sort of stuff for you.
    -Tres

  • Error when I put a component in the stage and I change any property

    Hello
    I'm using Flash CS4, as3 and adobe air file. I have an application with 3 scenes, first scene to login, second to set up, and third to see an video.
    The problem is that, when I put a component in the second or third scene, if a change any property in the component inspector, any property it gives me error. So put the component and I change property by code in as3.
    But I'm doing things with FLVPlayback component, and now before enter the scene gives me error, the solution will be to get the original properties, but I don't remember, I could install other time Flash CS4, but I can do that for any componet, better know the solution.
    For example, I have an as file who is the class named p.e. MyMainclass, and in the scene3, I put FLVPlayback, who default values it's the last I used (I don't remember default after instalation), if any code in as3, it gives me this error:
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at com.program::MyMainClass/__setProp___id2__scene3_myvideo1_1()[com.program.MyMainClass::__ setProp___id2__scene3_myvideo1_1:7]
    I remove this component, I put another one I never used, it doesn't give me error, I change any property in the object inspector, p.e. color, it gives me error, I change to original property again, and then NO ERROR.
    Thanks in advance

    I would reccomend that you not use scenes for that purpose, not exactly sure why  but scenes are unreliable. Try putting all of your content in one scene, one timeline and just add a few stop() 's at the end of each "scene", then in your code remove scene2 and scene3 three references, and you'll possibly need to change frame anchors/targets also if you have them.
    The error indctates that you have called an object that does not exist at the time the code is run, check where you placed your code, should be frame one, scene1, and also check if you have objects entering the stage down the timeline, that do not enter in frame 1, possibly the movieClip? if so add another keyframe on your actions layer on the same frame as the object and enter the call function for it there.

  • Weird error when calling AS function to switch state from embedded HTML page

    Hey everyone,
    I'm developing an application that has 5 states in it. The
    welcome state is set by default. I wrote a function called
    changeState that looks like this:
    internal function changeState(sState:String):void
    currentState = sState;
    Now, inside the registration state, there is an mx:HTML
    component named htmlReg with the following attribute:
    htmlDOMInitialize="htmlReg.htmlLoader.window.changeState =
    changeState;"
    Inside the plain handcoded HTML web page that's loaded,
    there's a button that looks like this:
    <button onClick="changeState('Welcome')">Back to
    Welcome</button>
    The idea being, when the user clicks the HTML button, it
    calls the AS function changeState('Welcome') and the user gets
    taken back to the welcome screen.
    The good news is that when I click this button, it works
    fine, and I'm taken back to the welcome state.
    The bad news is that when I then switch to another state
    (using an mx:Button in the welcome state), I get the following
    error:
    TypeError: Error #1009: Cannot access a property or method of
    a null object reference.
    at flash.html::HTMLLoader/onFocusOut()
    I'm having trouble figuring out why this is happening, and
    what to do about it.
    Two additional data points:
    1) If I add an mx:Button to the registration state with a
    click="changeState('Welcome')" handler, it works as expected and I
    don't get an error. I only get this error when clicking the HTML
    button, which calls the same function in the same way.
    2) If I move the mx:HTML component out of the registration
    state and into the main application, I don't get this error any
    more (and the HTML state change button still works as expected).
    Anybody have any clues or ideas as to what might be
    happening? Or ideas as to what I might try to collect more data
    points? Or even workarounds to accomplish the same task in a
    different way?
    Thanks in advance.

    Probably what is happening is that when you change states,
    the HTML control is removed from the stage. However, the HTMLLoader
    (which is wrapped by mx:HTML) does seem to know that it has been
    removed, and losing focus, it's internal handler for the focusOut
    event access some property that requires it to be on the stage --
    hence the null object reference.
    You should report this bug at
    http://www.adobe.com/go/wish
    and provide a sample that demonstrates the issue.
    A workaround might be to change the focus to another object
    with stage.assignFocus() before you change states.

  • Weird Error When Creating A Datasource

    Hi, I am getting the following error when trying to create a
    datasource in the CF administrator.
    Unable to update the NT registry.
    Variable DRIVERPATH is undefined.
    And when I navigate to my application through the web browser
    I get the following error:
    Error Executing Database Query.
    [Macromedia][SequeLink JDBC Driver][ODBC Socket]internal
    error: Data source name not found and no default driver specified
    Now, I have lots of experience of doing this before, but that
    was on my desktop machine which runs Vista Home Premium. This new
    laptop of mine also runs Vista Home Premium, but I think it is the
    64 bit version - could this have anything to do with it?
    I am using the Developers installation of Coldfusion 8 and
    trying to hook the exact same application and mdb database file
    that worked and used on my desktop machine - same files, same
    process as before.
    I can't figure out what is going wrong or how I can resolve
    the problem. Has anyone else encountered this before? If so, any
    advice would be great.
    Many thanks,
    Michael.

    Using CF 9 64-bit on a Windows Server 2008 and I still get the
    Unable to update the NT registry.
    Variable DRIVERPATH is undefined.
    message.
    Any thoughts on this?

  • Weird error when sending DatagramPackets from a multicastSocket

    hi i got this error when running a program that uses a multicastSocket in different Threads
    the error is java.lang.NullPointerException: null address || null buffer
            at java.net.TwoStacksPlainDatagramSocketImpl.send(Native Method)
            at java.net.DatagramSocket.send(DatagramSocket.java:638)
            at network.Main$LocalServer.runloop(Main.java:363)
            at network.Main$LocalServer.run(Main.java:382)line 363 is
                    DatagramPacket dp=new DatagramPacket(b, 19);
                    System.out.println("LocalServer: Packet created with 19 bytes");
                    sleep(100);
                    SL.send(dp);line 283 is (the run method of LocalServer)
    public void run() {
                runloop();
            }variable SL is created at line 173 in class main.java
    sl=new MulticastSocket(1234);
                System.out.println("local socket created");
                sa=new MulticastSocket(51234);
                System.out.println("global socket created");
                InetAddress g1=InetAddress.getByName("[ff05::1]");
                InetAddress g2=InetAddress.getByName("[ff1e::1]");
                sl.joinGroup(g1);
                System.out.println("local socket group joined");
                sl.setLoopbackMode(true);
                sa.joinGroup(g2);sl is passed to Thread as SL at line 290:
    LocalServer s=new LocalServer(sl);
                s.start();and at line 343
    SL=sl;i am using JDK 1.7.0
    and Netbeans IDE 6.0
    please help me fix this problem!
    thanks in advance for any help

    The DatagramPacket has to be constructed so as to contain the target address.
    MulticastSocket.joinGroup() doesn't help that. It only affects incoming datagrams.

  • When i put an online repair service it says my post code is in wrong format

    when i do the online repair service(ive tried on many other comps) the postal code says incorrect format and it is making me angry

    Are you using the correct country selection when you start? If you are call Apple explain the problem and they should be able to help you get a ticket started.
    Mort

  • Syntax error when running GLPLUP - Flex Plan Upload

    HI,
    We want use transaction GLPLUP to perform a Flex Plan Upload, but encounter a syntax error in program RK50003 stating:
    The following syntax error occurred in program "RK500003 " in include
      "PP_FISL_GINC " in
    line 652:
    "The data object "ITDAT1" does not have a component called "XBILK"."
    This program is a local object, and appears to be generated by SAP.  Checking the program attributes the owner and the last person to change this program is a consultant who has rolled off the project, and is not available for help.
    I suspect that there must be some steps to regenerate this code, but I am not certain where to look for this information. 
    I have tried running GLPLDEL and GLPLINSTALL, but this did not change RK500003.
    Any insight you can provide on this is greatky appreciated.
    Thanks,
    Roy

    HI,
    I reported this issue with SAP and the following is what they had me do to resolve the issue:
    1. Run transaction GLPLDEL:
    Deletes all generated reports of the planning processor for
    FI-GL/SL planning (application class GLU1). After a new call of
    the planning, these reports will be generated once again.
    2. Run transaction GLPLINSTALL:
    It regenerates necessary database table entries for FI-G/SL Planning
    (tables t8pl*). Make sure that you will perform this step when no
    posting of FI-SL data is running.
    This resolved the issue for us.
    Good luck,
    Roy

  • Weird error when adding a transition to gif...

    I keep getting the error below. All I'm doing is trying to
    add a transition to a .gif file. I've tried converting it to a
    graphic , movie clip, etc and I still get the same thing. Any idea
    why its doing this?
    Exception in forward: TypeError: myCurrentFrame has no
    properties
    Error opening URL 'file:///C|/Documents and
    Settings/Compaq_Administrator/Local Settings/Application
    Data/Adobe/Flash CS3/en/Configuration/preview1.swf'
    Exception in reverse: TypeError: tmpFrame has no properties

    Well I imported the gif to the stage and added the transition
    fine. No problems so far. I go on adding some more content to my
    movie clip and come back later and delete the gif with the
    transition. I then add the original gif into the movie and try to
    put a transition to it and thats when I get the error. It also
    won't show a preview of my gif either in the window that you add
    transitions and such.

  • 404 Error when trying Report fault online

    Hi,
    I can't log fault online as I get webpage not found (error 404) when clicking link. Same when using IE or Firefox.
    I have had no dial tone for a day (just silence). Broadband is intermittent; crashing every few minutes. Have tried removing everything and just plugging phone into main socket; still no luck.
    Regards,
    Jonjo

    Hi and welcome to the forum.
    Can I suggest to prove that the fault is not in your premises that you try a known working phone in the test point of your main socket without using an ADSL filter:
    If you still get no dial tone you can report a fault by calling 0800 800 151 from a landline or 0330 123 4151 from a mobile.
    (If I have helped you in any way to say "Thank You" please click on the star next to the message. Thank You)
    If I have solved your Issue please click the "Mark as accepted solution" button.

  • Error when using XML gallery online.

    Hey,
    I followed a tutorial online to create a photo gallery using an XML file. It works fine when tested in flash via the test movie window and with the bandwidth pro-filer turned on.
    So, I uploaded the page to my website to test it, and when I load the page in any browser I receive this error message in an adobe flash player pop up box:
    Error #2044: Unhandled IOErrorEvent:. text=Error #2036: Load Never Completed.
    Here's the Actionscript I am using:
    var xmlRequest:URLRequest = new URLRequest("http://www.davidframpton.co.uk/Gallery/galleryData.xml");
    var xmlLoader:URLLoader = new URLLoader (xmlRequest);
    var imgData:XML;
    var imageLoader:Loader;
    var rawImage:String;
    var rawH:String;
    var rawW:String;
    var imgNum:Number = 0;
    var checkSec:Timer = new Timer(100);
    var numberOfChildren:Number;
    xmlLoader.addEventListener(Event.COMPLETE, xmlLoadedF);
    master_mc.addEventListener(MouseEvent.CLICK, nextImgF);
    master_mc.buttonMode = true;
    function xmlLoadedF(event:Event):void{
    checkSec.start();
    checkSec.addEventListener(TimerEvent.TIMER, checkerF);
    imgData = new XML(event.target.data);
    function packagedF():void{
    checkSec.removeEventListener(TimerEvent.TIMER, checkerF);
    rawImage = imgData.image[imgNum].imgURL;
    numberOfChildren = imgData.*.length();
    imageLoader = new Loader;
    imageLoader.load(new URLRequest(rawImage));
    master_mc.addChild(imageLoader);
    function checkerF(event:TimerEvent):void{
    if (imgNum == 0) {
    packagedF();
    }else if(imgNum < numberOfChildren){
    imageLoader.unload();
    packagedF();
    }else {
    imageLoader.unload();
    imgNum = 0;
    packagedF();
    function nextImgF(event:MouseEvent):void {
    checkSec.addEventListener(TimerEvent.TIMER, checkerF);
    imgNum++;
    Please help if you can.
    Kind regards and thanks in advance.
    Dave

    Hey,
    Sorry to be a pain. But I have just fixed the problem by moving all of the .swf, xml, and .jpeg files out of
    the gallery folder into the main public_html folder and everything seems to work fine.
    Thanks for your efforts though!
    Kind regards
    Dave

  • Weird error when trying to log in

    Hello,
    After an incredible support from an user I was able to install Developer Suite 10g. However when I try to perform this action suggested:
    Part 2: Steps to setup Designer 10g
    Time Taken: 30 minutes to 60 minutes depending on the speed of your PC’s CPU
    1. Login SQL Plus as “SYS” with password and connect string of “orcl as sysdba”
    The software responds with the following message:
    ERROR:
    ORA-12154: TNS:não foi possÃvel resolver nome de serviço
    Translating from Portuguese it would be:
    TNS:it was not possible to resolve this service name
    In addition I simply do not know how to do the following activity in PL*SQL:
    Login SQL Plus as “SYS” with password and connect string of “orcl as sysdba”
    I have no idea where to put the connect string because the PL*SQL does not have any such option when logging in (Windows XP Professional) Please let me know how to solve this problem. Thank you very much indeed...
    Sincerely yours,
    André Luiz

    Hello,
    each oracle installation modifies the PATH variable, your PATH variable should contain something like C:\oracle\product\10.1.0\Db_1\bin and C:\oracle\product\<..DeveloperSuite..>\bin (don't know, where DevSuite is installed).
    It is installed in c:\oracle\product\Oracle10gDS
    It's important, what's comes first, because it determines your current ORACLE_HOME and , for example, which tnsnames.ora is used.
    Very interesting and important however I cannot find ORACLE_HOME anywhere in the System Properties/Environment Variables window (both parts of it: user variables and system variables). The only thing I can find the oracle word is in the PATH variable. Its value is depicted below:
    c:\oracle\product\Oracle10gDS\jdk\jre\bin\classic;c:\oracle\product\Oracle10gDS\jdk\jre\bin;c:\oracle\product\Oracle10gDS\bin;c:\oracle\product\Oracle10gDS\jlib;C:\Arquivos de programas\Oracle\jre\1.1.8\bin;C:\Arquivos de programas\Oracle\jre\1.3.1\bin;C:\oracle\product\10.1.0\Db_1\bin;C:\oracle\product\10.1.0\Db_1\jre\1.4.2\bin\client;C:\oracle\product\10.1.0\Db_1\jre\1.4.2\bin;C:\oracle\product\10.1.0\Db_2\bin;C:\oracle\product\10.1.0\Db_2\jre\1.4.2\bin\client;C:\oracle\product\10.1.0\Db_2\jre\1.4.2\bin;C:\texmf\miktex\bin;%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;C:\Arquivos de programas\cvsnt;C:\Arquivos de programas\ProMod4;C:\Arquivos de programas\proe2001\bin;C:\Arquivos de programas\flexlm\bin;C:\Arquivos de programas\ptchelp2001\bin;C:\Arquivos de programas\proeWildfire\bin;C:\Arquivos de programas\PTC Collaboration Tools\bin;C:\Arquivos de programas\promechWildfire\bin;C:\Arquivos de programas\ptc_distributed_services\bin;C:\Arquivos de programas\LINGO9\;C:\Arquivos de programas\Microsoft SQL Server\80\Tools\Binn\
    Perhaps it is somewhere else because I can login in the system and use everything except Designer
    Normally there's no need to define explicitly ORACLE_HOME and ORACLE_SID in Windows, you have to set ORACLE_SID only, if you are in the 'wrong' ORACLE_HOME (DevSuite home, not database home, for example) and you want to connect without @<connect_identifier> (for example, @phd).
    What to set the ORACLE_SID if it is the software itself that sets it up and it is nowhere in the evironents variable section? I usually connect with as my username without any @<connect_identifier>. I hope the above explains a little better the current status... Thank you.
    Sincerely yours,
    André Luiz

Maybe you are looking for