Flash & XML ... Please help me !!??

hi,
i have flash document & i want to write some data one my
xml docyment with flash. Plase help me. but i want to do it with
flash and not to do with .Net or something like that ... if any one
can help please mail me .
My email address:
[email protected]

For starters, read the Help Docs in Flash on Data
Integration. There's even a tutorial in Flash 8 called "Flash and
PHP Integration." Then you might want to Google "flash php xml
tutorial" which returns plenty of stuff to keep you reading for a
while.
Good luck!

Similar Messages

  • I have the 10.7.4 and I cannot get the Flash Player ,, please help me.

    I have the 10.7.4 and I cannot get the Flash Player ,, please help me.

    If you downloaded it, it's likely in your Downloads folder as a Disk Image .dmg. Just open it and intall Flash player and restart your browser. Everything should work.
    Clinton

  • Flash XML file help

    I am trying to add multiple flash files to my website...the
    only way these seem to work is if the swf and corresponding xml
    file are all on the root of the website directory. I would have
    liked to organize them into files to sort.
    My problem is that many of these flash files (mainly
    purchased) have the same xml file, so I cannot use these together
    on the root. Thus, I need to either rename in the flash the xml
    file or figure out how to put into folders...please help!
    -Josh

    ANSWER: I figured it out myself. I am just replying to let
    everybody else know how I fixed it. I had the full URL in the load
    request and apparently some Flash players don't like this. I put a
    link to the file without the domain name and everybody is working
    fine. The load function, Flash, or something could not resolve the
    domian correctly and could not find the XML file. I was not getting
    a request for the file from the Flash movie so I knew it had to be
    soemthing in Flash.

  • Firefox constantly freezing due to issues with Flash. Please help.

    I was running the firefox 20 beta (and have been for a while) when in the last few days, suddenly any time I tried to open any site that used even the slightest amount of flash, the browser would freeze for minutes on end before finally releasing a "plugin error" type message about Shockwave Flash. If i clicked 'continue' it would stay frozen. If i clicked 'stop script' then sometimes it would fix it, but most of the time it would keep freezing and showing that same message over and over until I stopped the process in task manager.
    First I tried to update flash and shockwave- both are up to date. So i decided to delete the files themselves and the programs via add/remove and reinstalled them. Still did not fix the problem.
    Next I tried to do a reset firefox to default state. This didn't work. I tried doing it again with the flash files deleted/uninstalled AND I rebooted the computer and the problem still persisted.
    Finally, I tried to downgrade to a more stable version of firefox, so I downloaded 19 and it still didnt work. Tried the uninstall/re install for flash one more time and nothing.
    At this point, I cannot access about half of the pages I usually go to on the web and I need help here, please anything will do.
    One thing that I noticed that might be helpful is that no matter how many times i uninstalled or reinstalled flash, every time it would try to run, task manager would show two instances of it, each using different amount of memory.
    again, please please help. If there is any solution short of a total wipe it would be greatly appreciated

    hello, maybe it's an issue with the protected mode in the flash plugin - you could try if [https://support.mozilla.org/en-US/kb/flash-113-crashes#w_solution-2-downgrade-to-flash-10-3 downgrading to flash 10.3] (which is still supported) or [http://forums.adobe.com/thread/1018071#TemporaryWorkaround disabling protected mode] makes a difference.

  • Big problem installing Adobe Flash Player, please help?

    Please help. I tried to download Adobe Flash Player 5 times without success. Every time it states Installation succeeded, but I can't find it anywhere.
    I have to keep closing and opening Browsers without any reaction of the so called installed Flash Player. What a mess!

    Flash is installed as a browser plugin. You won't see it as an app in OS X. If you go here it will tell you if flash is installed and working. http://www.adobe.com/software/flash/about/

  • Procedure to generate invoice in xml---please help

    Hi all,
    I have to write code review of a pakage which contain procedure to generate invoice in XML.The procedure contain two
    files .pkb and .pks.All i know is that it will deliver elemt of the post script layout.?But i dont understand what it mean nor i am able to understand the code.I dont have any prior knowledge about this.Please help me and tell me any tutorial to understand and know how this is done.
    Also i have pasted some part of code here .please help me in understanding what is going on.
    help help help
    * GET_INVOICE_XML
    FUNCTION GET_INVOICE_XML(inInvId NUMBER) RETURN CLOB IS
    BEGIN
      IF NOT isClobReady THEN
        dbms_lob.createtemporary(invClob, TRUE);
        isClobReady := TRUE;
      ELSE
        dbms_lob.trim(invClob, 0);
      END IF;
      vInvoice :=
        XML_VER_STR || NL ||
        ' <!DOCTYPE INVOICE_FILE SYSTEM "invoicfile.dtd">' || NL ||
        '<INVOICE_FILE VERSION="1.1">' || NL;
      GEN_PROLOG(InvId);
      GEN_INVOICE(InvId, 1);
      vInvoice := vInvoice ||
        '</INVOICE_FILE>' || NL || NL;
      APPEND_INVOICE(0);
      RETURN invClob;
    END GET_INVOICE_XML;
    PROCEDURE GEN_INVOICE(InvId NUMBER, inITBMode NUMBER) IS
    vP1    PLS_INTEGER;
    vP2    PLS_INTEGER;
    vAtt     BOOLEAN;
    inv      ABCINVOICE%ROWTYPE;
    cdr_no   NUMBER;
    t0       TIMESTAMP;
    t1       TIMESTAMP;
    execTime NUMBER(12,6);
    BEGIN
      t0 := LOCALTIMESTAMP;
      SELECT * INTO inv FROM ABCINVOICE WHERE OACT = InvId;
      dti := inv.DTI;
      SELECT NVL(SUM(cdrNO),0) INTO cdr_no FROM ABCCONTRACTS WHERE OACT = InvId AND ITB IN ('Y', 'F');
      vInvoice := vInvoice ||
        ' <INVOICE>' || NL ||
        '  <HEADER>' || NL ||
        '   <SEQ>' || inv.SEQ || '/' || inv.PROC_ID || '</SEQ>' || NL ||
        '   <LEN ';
      vPos1 := INSTR(inv.LEN, '|', 1, 1);
      vInvoice := vInvoice || 'INV="' || SUBSTR(inv.LEN, 1, vPos1-1) || '" ';
      vPos2 := INSTR(inv.LEN, '|', vPos1+1, 1);
      vInvoice := vInvoice || 'BAL="' || SUBSTR(inv.LEN, vPos1+1, vPos2-vPos1-1) || '" ';
      vPos1 := INSTR(inv.LEN, '|', vPos2+1, 1);
      vInvoice := vInvoice || 'DET="' || SUBSTR(inv.LEN, vPos2+1, vPos1-vPos2-1) || '" ';
      vPos2 := INSTR(inv.LEN, '|', vPos1+1, 1);
      vInvoice := vInvoice || 'PDET="' || SUBSTR(inv.LEN, vPos1+1, vPos2-vPos1-1) || '" ';
      vPos1 := INSTR(inv.LEN, '|', vPos2+1, 1);
      vInvoice := vInvoice || 'ITM="' || SUBSTR(inv.LEN, vPos2+1, vPos1-vPos2-1) || '" ';
      vPos2 := INSTR(inv.LEN, '|', vPos1+1, 1);
      vInvoice := vInvoice || 'PITM="' || SUBSTR(inv.LEN, vPos1+1, vPos2-vPos1-1) || '" NTF="' ||
        SUBSTR(inv.LEN, vPos2+1) || '"/>' || NL;
      vInvoice := vInvoice ||
        '   <BAR>' || inv.BAR || '</BAR>' || NL ||
        '   <BCD>' || inv.BCD || '</BCD>' || NL ||
        CASE WHEN inv.BIC IS NULL THEN '' ELSE '   <BIC>' || inv.BIC || '</BIC>' || NL END ||
        '   <REF>' || inv.REF || '</REF>' || NL ||
        '   <OHX>' || inv.OHXACT || '</OHX>' || NL ||
        '   <CID>' || inv.CID || '</CID>' || NL ||
        '   <CCO>' || inv.CCO || '</CCO>' || NL ||
        '   <CND>' || inv.CND || '</CND>' || NL ||
        '   <PBF>' || inv.PBF || '</PBF>' || NL ||
        '   <DTI>' || inv.DTI || '</DTI>' || NL ||
        '   <DTD>' || inv.DTD || '</DTD>' || NL ||
        '   <DPS>' || inv.DPS || '</DPS>' || NL ||
        '   <DPE>' || inv.DPE || '</DPE>' || NL ||
        '   <DAS>' || inv.DAS || '</DAS>' || NL ||
        '   <DAE>' || inv.DAE || '</DAE>' || NL ||
        '   <PAY>' || inv.PAY || '</PAY>' || NL ||
        '   <NAM>' || ABCUTIL.CONVERT_POL_CHAR(inv.NAM) || '</NAM>' || NL ||
        CASE WHEN inv.ADS1 IS NULL THEN '' ELSE '   <ADS>' || ABCUTIL.CONVERT_POL_CHAR(inv.ADS1) || '</ADS>' || NL END ||
        CASE WHEN inv.ADS2 IS NULL THEN '' ELSE '   <ADS>' || ABCUTIL.CONVERT_POL_CHAR(inv.ADS2) || '</ADS>' || NL END ||
        '   <ADZ>' || ABCUTIL.CONVERT_POL_CHAR(inv.ADZ) || '</ADZ>' || NL ||
        '   <NIP>' || inv.NIP || '</NIP>' || NL ||
        '   <REG>' || inv.REG || '</REG>' || NL ||
        '   <PES>' || inv.PES || '</PES>' || NL ||
        '   <BCY>' || inv.BCY || '</BCY>' || NL ||
        '   <TXT>' || ABCUTIL.CONVERT_POL_CHAR(inv.TXT) || '</TXT>' || NL ||
        '   <GRO>' || TO_CHAR(inv.GRO, 'FM999990.90') || '</GRO>' || NL ||
        '   <FBL>' || inv.FBL || '</FBL>' || NL;
      IF inv.STP > 0 THEN
        GEN_TEXT(inInvId, 1);
      END IF;
      vInvoice := vInvoice ||
        '  </HEADER>' || NL ||
        '  <ADDRESS>' || NL ||
        '   <ENV>' || inv.ENV || '</ENV>' || NL ||
        '   <TNA>' || ABCUTIL.CONVERT_POL_CHAR(inv.TNA) || '</TNA>' || NL ||
        CASE WHEN inv.TAS1 IS NULL THEN '' ELSE '   <TAS>' || ABCUTIL.CONVERT_POL_CHAR(inv.TAS1) || '</TAS>' || NL END ||
        CASE WHEN inv.TAS2 IS NULL THEN '' ELSE '   <TAS>' || ABCUTIL.CONVERT_POL_CHAR(inv.TAS2) || '</TAS>' || NL END ||
        '   <TAZ>' ||ABCUTIL.CONVERT_POL_CHAR(inv.TAZ) || '</TAZ>' || NL;
      GEN_TEXT(inInvId, 2);
      vInvoice := vInvoice ||
        CASE WHEN inv.MTX  IS NULL THEN '' ELSE '   <MTX>' || inv.MTX  || '</MTX>' || NL END ||
        '  </ADDRESS>' || NL;
      APPEND_INVOICE(0);
      IF inv.BCY <> '99' THEN
        GEN_INVOICE_BILLING(inInvId);
        GEN_BALANCE(inInvId);
        vPos1 := INSTR(inv.LEN, '|', 1, 2) + 1;
        vPos2 := INSTR(inv.LEN, '|', vPos1, 1);
        vPos1 := SUBSTR(inv.LEN, vPos1, vPos2 - vPos1);
        IF vPos1 > 1 THEN
          GEN_SUMMARY(inInvId);
        END IF;
      END IF;
      vInvoice := vInvoice || ' </INVOICE>' || NL;
      APPEND_INVOICE(0);
    END GEN_INVOICE;Edited by: BluShadow on 28-Aug-2012 09:46
    added {noformat}{noformat} tags for readability. Please read: {message:id=9360002}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Not quite sure what you want to know about it.
    If you want a code review of it, I can tell you it's very poor code, because that's not how to generate XML data in Oracle. Oracle has built in XML functionality for generating such data, and doesn't require hard-coding XML tags.
    Here's the Oracle documentation...
    http://tahiti.oracle.com/
    pick your database version and search for things like XDB, SQLX or more specifically XMLELEMENT, XMLAGG, XMLATTRIBUTES etc.

  • Flash Crash Please Help

    I've been using Flash CS4 for some time on two computers (Laptop and Desktop).
    The installation on the laptop is OK, but recently the Flash program on the Desktop crashes (it worked well before).
    On my Desktop computer, If I load ANY previously good *.fla or even if I write a new one the following happens everytime....
    1. Open Flash
    2. Open *.fla progam
    3. Open windows->actions
    4. Dock the action panel as required
    5. Attempt to select any (code:frame) in the action panel - program crashes.
    The crash report (which I've sent off wihout any response) includes the following...
    <crash exception="EXCEPTION_ACCESS_VIOLATION" instruction="0x010f8a96">
    This happened in Vista and is the same after upgrading to Windows7
    I have Kaspersky Internet Security 2010 installed.
    I have 3Gb RAM and 1Tb hard disk and 2x2.5Ghz processors
    I have re-installed CS4 several times (ensuring that Kaspersky is disabled).
    I have tried running Flash with Kaspersky disabled completely.
    Please help!
    Regards
    Dave

    Do I get points for Answering my own question !! 
    It seems as though my system crashes are simply due to having the wrong Workplace Selected ???
    Having no responses to my question, I tried playing around with the Workspace setup.
    It was set to "Essentials" and as soon as I set it to "Classic" my system crashes stopped.
    Resetting to "Essentials" bring the problem back.
    Hope this little nugget of information helps someone else

  • Drag and Drop with a response in Flash..please help

    Hi
    I have just started with flash and actionscript3 about 5 weeks ago. I'm in my first year uni and I have a drag and drop assignment (for a kindergarten class). Its "little Red Hen" and they have place the correct picture in right holder.
    I have gotten the drag and drop working but I can't seem to figure out how to display a tick when they have place it in the correct holder.
    Please help....
    This is my script (it may seem messy...still new)
    import flash.events.MouseEvent;
    /*Mouse Event that ensures the function of hen movieclip to start dragging
      when mouse is pressed*/
    hen1_mc.addEventListener(MouseEvent.MOUSE_DOWN, dragStart);
    hen2_mc.addEventListener(MouseEvent.MOUSE_DOWN, dragStart);
    hen3_mc.addEventListener(MouseEvent.MOUSE_DOWN, dragStart);
    hen4_mc.addEventListener(MouseEvent.MOUSE_DOWN, dragStart);
    hen5_mc.addEventListener(MouseEvent.MOUSE_DOWN, dragStart);
    hen6_mc.addEventListener(MouseEvent.MOUSE_DOWN, dragStart);
    function dragStart (event: MouseEvent):void
        event.target.startDrag();
    /*Mouse Event that ensures the function of hen movieclip to drop
    when the mouse button is realeased with Condition statement, if
    hen = holder, hen snaps into place*/
    hen1_mc.addEventListener(MouseEvent.MOUSE_UP, dragStop1);
    function dragStop1 (event:MouseEvent):void
        hen1_mc.stopDrag();
        if (hen1_mc.hitTestObject (holder1_mc)==true)
            hen1_mc.x=holder1_mc.x;
            hen1_mc.y=holder1_mc.y;
    hen2_mc.addEventListener(MouseEvent.MOUSE_UP, dragStop2);
    function dragStop2 (event:MouseEvent):void
        hen2_mc.stopDrag();
        if(hen2_mc.hitTestObject (holder2_mc)==true)
            hen2_mc.x=holder2_mc.x;
            hen2_mc.y=holder2_mc.y;
    hen3_mc.addEventListener(MouseEvent.MOUSE_UP, dragStop3);
    function dragStop3 (event:MouseEvent):void
        hen3_mc.stopDrag();
        if(hen3_mc.hitTestObject (holder3_mc)==true)
            hen3_mc.x=holder3_mc.x;
            hen3_mc.y=holder3_mc.y;
    hen4_mc.addEventListener(MouseEvent.MOUSE_UP, dragStop4);
    function dragStop4 (event:MouseEvent):void
        hen4_mc.stopDrag();
        if(hen4_mc,hitTestObject (holder4_mc)==true)
            hen4_mc.x=holder4_mc.x;
            hen4_mc.y=holder4_mc.y;
    hen5_mc.addEventListener(MouseEvent.MOUSE_UP, dragStop5);
    function dragStop5 (event:MouseEvent):void
        hen5_mc.stopDrag();
        if(hen5_mc.hitTestObject (holder5_mc)==true)
            hen5_mc.x=holder5_mc.x;
            hen5_mc.y=holder5_mc.y;
    hen6_mc.addEventListener(MouseEvent.MOUSE_UP, dragStop6);
    function dragStop6 (event:MouseEvent):void
        hen6_mc.stopDrag();
        if(hen6_mc.hitTestObject (holder6_mc)==true)
            hen6_mc.x=holder6_mc.x;
            hen6_mc.y=holder6_mc.y;

    Ok so I figured it out, thank you Ned.
    I have made the tick_mc alpha 0 in the beginning of the script and then in my conditional I have made the alpha = 100
    So it works...yay!
    Now all I have left, if the piece is placed in the wrong holder then it needs to go back into its orignal position.
    I have tried
    Written above the script
    var startX:Number;
    var startY:Number;
    then just below my dragStart code
    startX = event.target.x = startX;
    startY = event.target.y = startY;
    then after each if statement I placed an else statement
    else
          hen1_mc.x = startX;
          hen1_mc.y = startY;
    Its clearly not working, please could you tell me what I am doing wrong?
    thank you

  • Not getting past step 2 out of 3 with flash installer. please help!

    Im trying to run MP3 rocket pro.
    I have already made it run once since downloading it. Once i closed mp3 rocket and tryed reopening it. I got the box saying i needed to install flash player 10 or higher. I go to adobe and download it. I open up my download folder and hit run and the box disaperes but nothing happens. i then try to click on the download box again but it says only one program can run at a time. Im stuck at this point. i have gotten nowhere with internet Explorer so i uninstalled it and tryed to download chrome but now thats not running correctly . I have tryed installing and uninstalling adobe and mp3 rocket and got nowhere. its just chewing up my internet.
    this is a 2nd hand laptop so should i just do a rebot and be done with it or ?
    please help,
    kylie

    Nobody can tell you anything without proper system info or other technical details. That aside, there's a whole Flash Player forum where people deal with this all the time and you may simply get better answers overall
    Mylenium

  • Text doesn't show, scroll bar does? using Flash CS3 Please help!

    A little background:  I made text box, typed some text, converted it to a movie clip, named etc.  Used a purchased and proven scroller component ... followed directions to the letter, including referencing/linking the files. However, when I tried to test the scroll bar .... the scroll bar appears, scrolls and works perfectly except the text does not appear.  I have tried making a scroll bar with the UIscrollbar same thing happens. I made an other attempt and put pics along with the text in the movie clip ... this time the pics appeared and scrolled, but the text still would not appear.  PLEASE HELP. I am on a deadline and can't get past this scroll bar issue. THANK YOU!

    Hi
    Thanks for the tip. I did embed the text, but still not showing. Currently, I have the text  box set to the following: Dynamic Text, Multiline, Border Around text, Anti-Alias for Animation (but I have tried all choices and embed the text each time).
    Here are the original instructions with the FTscrollbar which I followed exactly.
    1. Drag the component (FTscrollbar) from the components panel to the stage.
    2. Create a new movie clip to be scrolled:
         a. create a textfield on the scene and type in a few lines of text
         b. select the text fields and covert them to a move clip symbol having the registration point top left. (I did top right since my scroll bar is on the right).
         c. give the new movie clip an name in properties panel.
    3.Select the component of the stage and configure its parameters in the parameters panel or component inspector panel.
         a. Instruc the component to scroll the new created movie clip as the targetMovieClip
         b. Set the viewAreaHeight and viewAreaWidth
         c. set snapMode to snapToView value
         d. leave rest of parameters unchanged unless you want to adjust.
    4. Test Movie (contol/test movie)
    On the FTscrollbar, I have the targetMovieClip set to the movieclips name the only other parameters the instructions said to change were veiwAreaHeight=100 veiwAreaWidth=150 which were the defaults.  When I change this numbers the scroll bar goes away and the text still doesn't appear?  The scroll bar is 16 x 140, the text box to be scrolled is 130 x 143 and the entire flash page is 500 x 550. I am not sure what the viewAreaHeight and viewAreaWidth are for ... or if that could be the problem?  I have never had problems with scrollers but I used MX. I just recently purchased the CS3 and I am not sure what I am not selecting or not selecting but if feel it's probably something simple I am overlooking.  So any more ideas are MOST APPRECIATED. If you need more info from me to help solve, please feel free to ask. THANKS!

  • When i tried to upgrade, it deleted flash! please help!

    I tried to download Adobe Flash because a website said I did
    not have the latest version. The download said it was successful
    but now I have no Flash at all! I can't see certain websites or
    even watch Youtube videos. I tried uninstalling Adobe and then
    reinstalling it, but that didn't work. I don't know what to do!
    Please help! Thanks.
    P.S. I have a Mac OS X version 10.4.10, 1.6 GHz PowerPC
    G5

    I had that happen with a MacBook. It turned out that the metal case above the slot was slightly bent down.
    Putting a flat blade screwdriver in the slot and gently twisting it to move the metal case up allowed it to eject. Don't put it in too far you only want to bend the case not the drive.
    The case can get bent down by picking it up with your thumb pressing down on the case above the slot.

  • No sound in flash player please help =S

    title and summary says it all, please help me :)
    <edit>
    fixed it dont worry
    </edit>

    HI GUYS I HAD LOTSA MESSING WITH NO SOUND IN FLASH PLAYER 10.VIDEO AT FIRST THEN NOTHIN AT ALL.
    THEN AFTER UNINSTALLING AND THEN RE INSTALLING ,ICHECKED AGAIN ,YET AGAIN NO VODEO /OR SOUND. I THEN WENT TO TOOL BAR,CLICKED ON TOOL OPTION AND CHECKED THAT FLASH PLAYER WAS ENABLED ,BELIEVE IT IT WAS NOT. I ENABLED FLAS PLAYER THEN WENT BACK ON YOU TUBE AND WOW __EE THERE IT WAS WORKING LIKE A REAL GOOD ONE
                                                    HOPE THIS SOLVES YOUR PROBLEM IT DID FOR ME
                                                                                  BEST OF LUCK GUYS
                                                                                                     EXCALIBUR

  • Cannot download flash player (please help)

    recently i have bought a mac and I have tried to download flash player but it doesn't work at all. I go to their website and download, follow every single step until the end, then it says that it was installed successfully. however when i want to watch a video it says that i don't have flash player, although I've followed all the steps to download it.
    i have os x Yosemite version 10.10.1. Please help.
    thx

    Launch Disk Utility, select your hard drive in the left hand window and click on the Repair Disk Permissions button:

  • Nokia N70- Flash Player- Please help

    Can anyone please tell me if there's a flash player for Nokia N70. I mean flash lite is great but I want a flash player that is compatible with youtube.com and sfdt.com. That would be awesome! Please help...
    Thank You
    Jay

    http://www.flashdevices.net/2006/02/flash-lite-pla​yer-2-go-and-get-it.html
    http://www.flashdevices.net/2005/12/flash-lite-pla​yer-2-now-available.html
    see if it helps

  • Flashing Screen - Please Help!

    So unfortunately I had the bad luck to get my iphone wet. After an initial freakout, I put the phone in a bag of rice and hoped for the best. Two days later it worked! But now whenever I unplug it from my computer it just flashes to the apple logo about every ten seconds. I tried restoring it, but the problem persists. Please help!

    If you can start up in target disk mode, connect your computer that works to the one that doesn't. (I'm assuming you have another computer since you can't get to the Apple Discussion Forums with a computer that won't start up!)
    Use the computer that doesn't work as an external drive to the one that does.
    Go to this part of the Apple Downloads website and find the update you were installing. Download it as a standalone installer, and try to install onto the external HD. If it works, problem solved!
    If it doesn't work, you'll need to follow Alexandre's advice and go to the Apple Store to get working installation discs. However, you can have access to your important files whenever you want them by simply using Target Disk Mode.

  • HT1338 cant download latest version of flash player please help

    Can some one help me. I can't seem to view all my pics or videos. Because i do not have the latest version of
    flash player. Now everytime i try to download it . It disappears,so basically it never downloaded. Can someone
    please help me..

    Could be many things, we should start with this...
    "Try Disk Utility
    1. Insert the Mac OS X Install disc, then restart the computer while holding the C key.
    2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu at top of the screen. (In Mac OS X 10.4 or later, you must select your language first.)
    *Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.*
    3. Click the First Aid tab.
    4. Select your Mac OS X volume.
    5. Click Repair Disk, (not Repair Permissions). Disk Utility checks and repairs the disk."
    http://docs.info.apple.com/article.html?artnum=106214
    Then try a Safe Boot, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, reboot when it completes.
    (Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive.)
    If perchance you can't find your install Disc, at least try it from the Safe Boot part onward.
    See in each Browser which version of Flash it thinks it has...
    http://kb2.adobe.com/cps/155/tn_15507.html
    In Safari Preferences>General, where is it set to save downloads to?

Maybe you are looking for

  • Not Member found in Active Directory Group using LDAPRealmV2

    Hi Folk: I have configured a LDAPRealmV2 and it loaded ok, but I don't see any users in the group at the console. Here is the CustomRealm membership filter line in ConfigurationData section: membership.filter=(&(member=%M)(objectclass=group)) Anyone

  • About sccheck error.....

    Hi When I run the sccheck utility to check the cluster, I get the following error. root@n1 # sccheck sccheck: n2: Explorer run failed: sccheck: n2 error: Unexpected early return from server. sccheck: n1: Explorer run failed: sccheck: n1 error: Unexpe

  • Is it possible to bring back books in iTunes?

    Is it possible to use books in itunes instead of ibooks?

  • Black & White, and Color.

    Wanting to take a photo of two people on a trail to end up with the people in the photo colors, but all else surrounding them to be in black and white. A novice here wondering how to do. . . . . PSE8.0 Windows XP-pro

  • Photosmart C7280 All-In-One & feed other than plain paper

    I have a HP Photosmart C7280 All-In-One printer. This printer is supposed to be a photo printer however the paper feeder does not accept any paper other than plain paper. i have purchased some a4 heat transfer paper but the paper feeder does not pick