HTML component blinking cursor and combobox problems

Hi there.
I have a problem using a website displayed with the HTML component in a spark window. In any textfield in this homepage there is no blinking cursor displayed which is not really a problem but is still pretty confusing to the users. Another issue comes up with the comboboxes where the possible choices cannot be clicked with the mouse. Choosing an entry with the keyboard is possible though.
To reproduce this issue, add a html component in a spark window and load for example http://www.ard.de. The cursor is blinking in the search textfield in the top left. After clicking on the combobox on the left side - where i can't choose an entry with the mouse - the cursor in the textfield is no longer displayed.
Is this a known issue?
Best regards

Hi,
I've looked at your example and found the following 2 issues:
1. The cursor not appearing was actually a focus issue and you can fix it by adding an event listener on "windowActivate" in which to re-set the focus to the _htmlWindow. See the code below for more details on "onActivate()"
2. The issue with the dropdown is actually a bug (internal bug id #2721855) and it has been fixed in the next version of AIR which will be released towards the end of this year.
<?xml version="1.0" encoding="utf-8"?>
<s:Window xmlns:fx="http://ns.adobe.com/mxml/2009"
            xmlns:s="library://ns.adobe.com/flex/spark"
            xmlns:mx="library://ns.adobe.com/flex/mx"
            windowDeactivate="onDeactivate()"
            windowActivate="onActivate()"
            alwaysInFront="true"
            showStatusBar="false"
            title="WebKit Browser"
            creationComplete="onCreationComplete()">
     <fx:Declarations>
          <!-- Place non-visual elements (e.g., services, value objects) here -->
     </fx:Declarations>
     <fx:Script>
          <![CDATA[
               import flash.profiler.showRedrawRegions;
               import mx.controls.Alert;
               import mx.managers.CursorManager;
               import mx.managers.HistoryManager;
               [Bindable]
               private var _location:String;
               private function onCreationComplete():void {
                    nativeWindow.x = Capabilities.screenResolutionX * 0.1;
                    nativeWindow.y = Capabilities.screenResolutionY * 0.1;
                    nativeWindow.width = Capabilities.screenResolutionX * 0.8;
                    nativeWindow.height = Capabilities.screenResolutionY * 0.8;
                        // call this function on "windowActivate" in order to re-set the focus on your html element
               private function onActivate():void {
                    _htmlWindow.setFocus();
               private function onDeactivate():void {
                    try {
                         if (nativeWindow)
                              nativeWindow.activate();
                    } catch (e:Error) { // nativeWindow Object not yet available
               public function set location(value:String):void {
                    _location = value;
                    showStatusBar = false;
                    status = "Lade " + value + "...";
                    CursorManager.setBusyCursor();
               public function get location():String {
                    return _location;
               private function onHTMLComplete():void {
                    CursorManager.removeBusyCursor();
                    showStatusBar = false;
               private function uncaughtScriptExecution(e:HTMLUncaughtScriptExceptionEvent):void {
                    CursorManager.removeBusyCursor();
                    Alert.show("Scriptfehler: " + e.exceptionValue, "Error", Alert.OK);
          ]]>
     </fx:Script>
     <mx:HTML id="_htmlWindow"
                width="100%"
                height="100%"
                runtimeApplicationDomain="{ApplicationDomain.currentDomain}"
                complete="onHTMLComplete()"
                location="{_location}"
                uncaughtScriptException="uncaughtScriptExecution(event)">
     </mx:HTML>
</s:Window>
Regards,
Catalin

Similar Messages

  • I want to make a textfield non editable with blinking cursor,and the text is input from a custom keypad

    I want to make a textfield non editable with blinking cursor,and the text is input from a custom keypad....
    Please Help me.
    I want to make a numpad of my own from which i can set the text but i want the user to tap in between the text..

    You seem to stop the while loop to run the following code, then the program ends. Are you running this using the "continuous run" button????
    You need one big while loop containing the acquisition, then you build up the history data in a shift register. Clicking "save" will save the data, but not stop the loop.
    Why did you place a time-control in the FOR loop??? This is just post-processing so it should just do it without any delays. I don't understand the logic in the FOR loop. You are appending arrays, but then you delete the first element at each iteraction constantly trimming data from the beginning of the appended array. Then you autoindex at the output tunnel heavily duplicating all data. Ths make s no sense!
    Can you explain how you want you data saved?
    Message Edited by altenbach on 12-16-2005 11:20 AM
    LabVIEW Champion . Do more with less code and in less time .

  • Blinking cursor and Satellite C850-1NU does not boot up

    Hi
    I did something really stupid!
    Recently I installed ubuntu on My toshiba laptop. During a part where it was downloading things, I turned my laptop off because i thought it was frozen. I turned it back on, but all there was was a black screen with a white flashing "_". I put in an old Windows XP disc to see if i could install it but, still nothing happened.
    And the laptop came installed with Windows 8 x64 if that helps.
    Do I need to buy a new BIOS chip, or what?

    Hi
    The issue is not related to BIOS problem.
    The blinking cursor in the left upper corner can appear due to faulty HDD or RAM malfunction.
    It can be possible that you damaged the HDD booting partition due to the shutdown.
    But this is easy to check
    You should power up the unit and press F2. Now you should access the BIOS.
    Now in case the HDD is OK; you should see the HDD on the first BIOS page with all the HDD details. In case the HDD is visible in BIOS, you should go to next step.
    Next step: try to reinstall the system again.
    In case you want to install an Linux or another Windows system you have to disable firstly the secure boot option in BIOS. Also you have to switch from UEFI to CSM mode. This is also part of the BIOS settings.
    After that you could boot from CD or USB flash stick in order to reinstall the system

  • Tabbing from applet to applet, HTML component to applet, and back

    How can one tab between applets in a browser, and from an applet to an HTML component?
    For example, I have the following in my page in decending order:
    an HTML text field,
    an applet containing two components,
    and another HTML text field.
    When focus is on the first HTML text field pressing TAB should shift focus to the first component of the applet, the next TAB press shifts focus to the second component of the applet, and the next TAB press shifts focus to the other HTML text field. Then another TAB press cycles back to the first TEXT field.
    I can handle the tabbing within the applet using the FocusManager, but how can I get the applet to receive focus on a TAB from the browser, and once the applet has focus, how can give focus back to the browser when a TAB occurs from my last applet sub-component? At the moment a user has to click on the applet before he can tab in it, and then click outside it to tab in the html again.
    Any help appreciated, as I cant find any reference to how to do this apart from other people asking the same but getting no replies.
    Thanks,
    Menno

    Well, I think it is both a Java & HTML problem.
    When you TAB from HTML there must be a way to TAB to the Java applet, and when you TAB from the applet there must be a way, when you are on the last component within the applet, to TAB back to the HTML components.
    Anyone know how?
    Cheers,
    Menno

  • Help. How do you TAB from HTML component to applet (and back) ?

    How can one tab between applets in a browser, and from an applet to an HTML component?
    For example, I have the following in my page in decending order:
    an HTML text field,
    an applet containing two components,
    and another HTML text field.
    When focus is on the first HTML text field pressing TAB should shift focus to the first component of the applet, the next TAB press shifts focus to the second component of the applet, and the next TAB press shifts focus to the other HTML text field. Then another TAB press cycles back to the first TEXT field.
    I can handle the tabbing within the applet using the FocusManager, but how can I get the applet to receive focus on a TAB from the browser, and once the applet has focus, how can I give focus back to the browser when a TAB occurs from my last applet sub-component?
    At the moment a user has to click on the applet before he can tab in it, and then click outside it to tab in the html again.
    Any help appreciated, as I cant find any reference to how to do this apart from other people asking the same but getting no replies.
    Thanks,
    Menno

    I see what you are saying. Either use javascript with LiveConnect or go all applets.
    What we are actually doing at the moment is trying to componentise using small applets passing data via InfoBus. So I guess we could use only applets as you suggest. Either with getAppletContext, or we could have a data item on the InfoBus which contains the name of the required in-focus applet, and all applets listen to see if it is their name, and if so request focus.
    I'm suprised applets are not tab-able between by default. I would have thought this was a common requirement.
    I'll look into LiveConnect as well, and let you know how we get on.
    Cheers,
    Menno

  • Snow leopard (10.6.8) cursor and boot problems

    Hi all, I have a very odd thing going on with my old white 24" iMac. It crashed the other day and since then has had real issues booting up. In fact, the only way to start it was in safe mode. I have re-installed Snow Leopard twice and the restart issue keeps coming back... A seemingly related bug is that the mouse cursor has these weird row and columns of black bits attached to it - I also seem to have to reinstall my Wacom driver everytime the bug returns. I have checked for viruses and found nothing, repaired disk and nothing.. still same issues...
    Cursor looks like this...
    Anyone any ideas? RAM issue? Hardware failure???
    I have removed KVM and Wacom from the mac and it still has the issue.... reset PRAM no difference.... run out of ideas!!! anyone!????!!!??!?!?
    The original bug happened when using 10.6.8 now still persists in fresh install of 10.6 after many re-installs. I have not tried a restore from time machine backup yet or erased the disk as I was hoping not to have to loose all the stuff on the hard drive...
    Any ideas?

    As a novice if I were you I would just purchase Mountain Lion and run the installer. You're going to get in a bit over your head with making a bootable ML installer disk. Realize that you will need to erase your hard drive and without a back up your files are gone.

  • Basic HTTP Auth in HTML component

    When I use the HTML component in AIR and visit a page which
    has basic HTTP Auth and enter the correct username/password the
    credentials window just comes back up. In Firefox, IE, Safri and
    Opera it seems to be working. Can anyone please help?

    I checked out what is happening between HTMLLoader and your
    site using Wireshark. Your site is configured to use
    NTLM / Negotiate
    authentication.
    Hittting ok after entering the username and password seems to
    send the Authenticate header correctly from AIR. Though I got the
    dialog back because I do not know the correct credentials (and this
    is supposed to work over the intranet only).
    At a protocol level, nothing seems to be wrong. If you can
    capture network traffic while using IE (where it works in your
    case) and then using AIR, it would help us get to the
    problem.

  • Windows 8.1 installation: Black screen with blinking cursor

    Hi!
    Trying to install Windows 8.1 on my MacBook Pro. Worked fine last time I tried. Now, however, using the same DVD, after `Press any key to boot to CD or DVD...`, I'm taken straight to a black screen with a blinking cursor and nothing is happening.
    I've seen similar cases, ie. Black screen with only mouse cursor on it - Windows 7 instalation Solved - Windows 7 Help Forums - but they usually occur after the installation welcome screens etc., or after the install itself has succeeded.
    I just ran `fsck` and found no errors.
    Thanks!

    Hi!
    Trying to install Windows 8.1 on my MacBook Pro. Worked fine last time I tried. Now, however, using the same DVD, after `Press any key to boot to CD or DVD...`, I'm taken straight to a black screen with a blinking cursor and nothing is happening.
    I've seen similar cases, ie. Black screen with only mouse cursor on it - Windows 7 instalation Solved - Windows 7 Help Forums - but they usually occur after the installation welcome screens etc., or after the install itself has succeeded.
    I just ran `fsck` and found no errors.
    Thanks!

  • Won't boot, blinking cursor, F8 doesn't work

    I have a laptop with a Windows 7 and Debian Linux dual boot configuration and the Windows partition doesn't boot anymore. I just get a black screen with blinking cursor and no disk activity. F8, F5 and tab don't do anything, and cause it to beep if I keep
    pressing them. This is on a BIOS system with MBR partitioning. So far I've tried:
    chkdsk c: /f /r /b and sfc /scannow /offbootdir=c:\ /offwindir=c:\windows -- neither found any errors.
    bootrec /fixmbr and bootrec /fixboot -- this restored the default Windows bootloader and made it go directly to the blank screen without the GRUB menu.
    bcdboot c:\windows /s c: -- tried with and without the "/s C:" and tried deleting C:\boot first. Neither had any effect.
    Backed up and deleted all partition table entries other than C: (note, this system didn't have a System Reserved partition). Repeated bootrec and bcdboot commands. No change.
    I am about ready to back everything up and do a fresh install, but I'm really curious as to what could be screwed up here. I feel I have a moderate understanding of the NT 6 early boot process. I've remade everything up through Boot Manager, which should
    at least get me a boot selection menu with F8, but I'm getting nothing.
    Here is output from bcdedit /enum all after all of this:
    Windows Boot Manager
    identifier {bootmgr}
    device partition=C:
    description Windows Boot Manager
    locale en-us
    inherit {globalsettings}
    default {default}
    resumeobject {59817a93-ab6a-11e4-81b4-b2a3ade99c7a}
    displayorder {default}
    toolsdisplayorder {memdiag}
    timeout 30
    Windows Boot Loader
    identifier {4c074127-ab63-11e4-ba2c-b38857316e7a}
    device ramdisk=[C:]\Recovery\211dc182-3aa3-11e1-9c1c-99ac330a77
    26\Winre.wim,{4c074128-ab63-11e4-ba2c-b38857316e7a}
    path \windows\system32\winload.exe
    description Windows Recovery Environment (recovered)
    locale
    osdevice ramdisk=[C:]\Recovery\211dc182-3aa3-11e1-9c1c-99ac330a77
    26\Winre.wim,{4c074128-ab63-11e4-ba2c-b38857316e7a}
    systemroot \windows
    winpe Yes
    Windows Boot Loader
    identifier {default}
    device partition=C:
    path \windows\system32\winload.exe
    description Windows 7
    locale en-us
    inherit {bootloadersettings}
    osdevice partition=C:
    systemroot \windows
    resumeobject {59817a93-ab6a-11e4-81b4-b2a3ade99c7a}
    nx OptIn
    detecthal Yes
    Resume from Hibernate
    identifier {59817a93-ab6a-11e4-81b4-b2a3ade99c7a}
    device partition=C:
    path \windows\system32\winresume.exe
    description Windows Resume Application
    locale en-us
    inherit {resumeloadersettings}
    filepath \hiberfil.sys
    Windows Memory Tester
    identifier {memdiag}
    device partition=C:
    path \boot\memtest.exe
    description Windows Memory Diagnostic
    locale en-us
    inherit {globalsettings}
    badmemoryaccess Yes
    EMS Settings
    identifier {emssettings}
    bootems Yes
    Debugger Settings
    identifier {dbgsettings}
    debugtype Serial
    debugport 1
    baudrate 115200
    RAM Defects
    identifier {badmemory}
    Global Settings
    identifier {globalsettings}
    inherit {dbgsettings}
    {emssettings}
    {badmemory}
    Boot Loader Settings
    identifier {bootloadersettings}
    inherit {globalsettings}
    {hypervisorsettings}
    Hypervisor Settings
    identifier {hypervisorsettings}
    hypervisordebugtype Serial
    hypervisordebugport 1
    hypervisorbaudrate 115200
    Resume Loader Settings
    identifier {resumeloadersettings}
    inherit {globalsettings}
    Device options
    identifier {4c074128-ab63-11e4-ba2c-b38857316e7a}
    ramdisksdidevice partition=C:
    ramdisksdipath \Recovery\211dc182-3aa3-11e1-9c1c-99ac330a7726\boot.sdi

    Thanks for your reply. I actually have the Linux side of it under control. At present, to simplify things for fixing Windows, I've used dd to save the first few dozen sectors of my drive, deleted partitions other than the Windows one, and restored the
    Microsoft bootloader. So long as I don't create new partitions in that "free" space, I can bring back my Linux and Grub simply by restoring those backed up sectors.
    I'd like to get Windows working again and then restore the Linux stuff. At this point I am probably just going to do a fresh install, but I would love to know what can go wrong and cause this. MBR, PBR, C:\bootmgr and everything in C:\boot have been re-created
    fresh and should be fine. AFAIK this much ought to get me at least a boot menu when I press F8 regardless of the state of the rest of the Windows system.
    For Linux backup I usually just use tar and manually remake partition tables and install Grub should I need to restore the backup. For Windows I often use ntfsclone, which works similarly to Acronis or Ghost, only copying sectors that
    are in use. I've actually successfully backed up and restored Windows XP before using just tar, mkfs.ntfs and ms-sys, though system and read-only attributes were lost, and I haven't tested it on Vista, 7 or 8.

  • Launch and edit problem from Dreamweaver to Fireworks

    > This message is in MIME format. Since your mail reader
    does not understand
    this format, some or all of this message may not be legible.
    --B_3266405159_588474
    Content-type: text/plain;
    charset="ISO-8859-1"
    Content-transfer-encoding: 8bit
    Hi
    Not sure if this is a Fireworks or Dreamweaver problem but
    here goes.
    I¹ve created a graphic in Fireworks CS3 on the Mac and
    Exported the HTML and
    related images. I open the HTML file in Dreamweaver CS3, all
    fine so far.
    Then I highlight the table and click the ŒEdit in
    Fireworks¹ button and it
    throws up a warning dialogue saying ŒCannot launch and
    edit. The Fireworks
    table could not be found in the HTML. Please export from
    Fireworks and
    re-import the HTML into Dreamweaver.¹
    What?!!
    I¹ve only just exported it from Fireworks! It¹s
    even got the Fireworks table
    code in the Code section, so what¹s going here?
    Has anyone else had this?
    Gaz
    --B_3266405159_588474
    Content-type: text/html;
    charset="ISO-8859-1"
    Content-transfer-encoding: quoted-printable
    <HTML>
    <HEAD>
    <TITLE>Launch and edit problem from Dreamweaver to
    Fireworks</TITLE>
    </HEAD>
    <BODY>
    <FONT FACE=3D"Verdana, Helvetica, Arial"><SPAN
    STYLE=3D'font-size:12.0px'>Hi<BR=
    >
    Not sure if this is a Fireworks or Dreamweaver problem but
    here goes.<BR>
    I&#8217;ve created a graphic in Fireworks CS3 on the Mac
    and Exported the H=
    TML and related images. I open the HTML file in Dreamweaver
    CS3, all fine so=
    far. Then I highlight the table and click the
    &#8216;Edit in Fireworks&#821=
    7; button and it throws up a warning dialogue saying
    &#8216;Cannot launch an=
    d edit. The Fireworks table could not be found in the HTML.
    Please export fr=
    om Fireworks and re-import the HTML into
    Dreamweaver.&#8217;<BR>
    What?!!<BR>
    I&#8217;ve only just exported it from Fireworks!
    It&#8217;s even got the Fi=
    reworks table code in the Code section, so what&#8217;s
    going here?<BR>
    <BR>
    Has anyone else had this?<BR>
    <BR>
    Gaz</SPAN></FONT>
    </BODY>
    </HTML>
    --B_3266405159_588474--

    > This message is in MIME format. Since your mail reader
    does not understand
    this format, some or all of this message may not be legible.
    --B_3266407908_747577
    Content-type: text/plain;
    charset="ISO-8859-1"
    Content-transfer-encoding: 8bit
    When you export the sliced graphics from Fireworks it places
    them into a
    table. In my instance the code says...
    <!-- fwtable fwsrc="Brands.png" fwpage="Page 1"
    fwbase="Brands.jpg"
    fwstyle="Dreamweaver" fwdocid = "325827661" fwnested="0"
    -->
    So it recognises Fireworks was the the graphics app and jumps
    back to it
    when you want to edit the image. Fireworks then displays (or
    should) a
    ŒDone¹ button over the window. You do your alts and
    press Done to update the
    HTML and graphics back in Dreamweaver automatically.
    That¹s the only table I was referring to Murray.
    On 4/7/07 3:02 pm, in article
    [email protected], "Murray
    *ACE*" <[email protected]> wrote:
    > Why would you be wanting to edit the table in a graphics
    editor, instead of
    > an HTML editor?
    --B_3266407908_747577
    Content-type: text/html;
    charset="ISO-8859-1"
    Content-transfer-encoding: quoted-printable
    <HTML>
    <HEAD>
    <TITLE>Re: Launch and edit problem from Dreamweaver to
    Fireworks</TITLE>
    </HEAD>
    <BODY>
    <FONT FACE=3D"Verdana, Helvetica, Arial"><SPAN
    STYLE=3D'font-size:12.0px'>When =
    you export the sliced graphics from Fireworks it places them
    into a table. I=
    n my instance the code says...<BR>
    <BR>
    &lt;!-- fwtable fwsrc=3D&quot;Brands.png&quot;
    fwpage=3D&quot;Page 1&quot; fwba=
    se=3D&quot;Brands.jpg&quot;
    fwstyle=3D&quot;Dreamweaver&quot; fwdocid =3D &quot;32=
    5827661&quot; fwnested=3D&quot;0&quot;
    --&gt;<BR>
    <BR>
    So it recognises Fireworks was the the graphics app and jumps
    back to it wh=
    en you want to edit the image. Fireworks then displays (or
    should) a &#8216;=
    Done&#8217; button over the window. You do your alts and
    press Done to updat=
    e the HTML and graphics back in Dreamweaver
    automatically.<BR>
    That&#8217;s the only table I was referring to
    Murray.<BR>
    <BR>
    On 4/7/07 3:02 pm, in article
    [email protected], &quot;Murr=
    ay *ACE*&quot;
    &lt;[email protected]&gt; wrote:<BR>
    <BR>
    <FONT COLOR=3D"#0000FF">&gt; Why would you be
    wanting to edit the table in a =
    graphics editor, instead of <BR>
    &gt; an HTML editor?<BR>
    </FONT></SPAN></FONT>
    </BODY>
    </HTML>
    --B_3266407908_747577--

  • Move blinking cursor too

    I've got a main textfield myTextfield01. When I put focus on another textfield which is empty (either manually by clicking on another field, or like below using setFocus) I want the focus to go back to myTextField01 again. And put the blinking cursor and the very end of whatever is typed into it. So I tried this.
    myTextfield01.onKillFocus = function(newFocus:Object) {
        if (newFocus.text == "") {
            Selection.setFocus(myTextfield01);
            Selection.setSelection(myTextfield01.text.length-1, myTextfield01.text.length);
    But that didn't work. It went back to myTextfield01, but the blinking cursor stayed at the empty textfield and any text typed would be added to that empty field.
    When I put this in frame one:
    myTextfield01.onKillFocus = function(newFocus:Object) {
        if (newFocus.text == "") {
            nextFrame());
    And this in frame two:
            Selection.setFocus(myTextfield01);
            Selection.setSelection(myTextfield01.text.length-1, myTextfield01.text.length);
    it did work. Both focus and cursor where in myTextfield01 again.
    So why doesn't it work when I combine it all in one frame?

    use the trace() function with the code i gave so you understand the sequence of events dispatched by flash.
    myTextfield01.onKillFocus = function(newFocus:Object) {
    trace("kill focus event: where you keep trying to setfocus");
        nf=newFocus
    this.onMouseUp=function(){
    trace("mouse up event.  focus is changed to: "+Selection.getFocus());
    if(nf&&nf.text==""){
    Selection.setFocus(myTextfield01);
    varL=myTextfield01.text.length;
    Selection.setSelection(varL,varL);
    nf=null;

  • Blinking Cursor in Photoshop Elements 8 and 10

    I get a blinking cursor in Photoshop Elements 8 and 10 when they are both installed on the same computer.
    When I uninstall one of them, the problem goes away.
    When I disconnect from the internet, the problem goes away.
    Tried this on 2 different computers with same result.
    I am running Windows 7.
    What is wrong?

    http://helpx.adobe.com/photoshop-elements/kb/photoshop-elements-7-8-9-downloads.html
    http://helpx.adobe.com/photoshop-elements/kb/photoshop-elements-10-11-downloads.html

  • Windows 7 64-bit black screen and blinking cursor for ages before boot

    Help!
    I'm having the black screen with blinking cursor whenever I try and boot up Windows 7 Ultimate 64-bit thru Bootcamp on my MacBook Pro. If i let it just sit there for maybe 2 or 3 minutes, it then goes to the Windows Boot Manager screen and allows me to click on Windows 7 and the it boots perfect. I've tried installing it twice, same thing. No problem booting OS X Snow Leo 10.6.3. Got the right NVidia drivers installed, makes no difference. Have Paragon NTFS installed so I can get thru to NTFS partition from OS X. I badly need Windows too and don't wanna slow it down by running it in Parallels or VMWare Fusion. A little help?
    Thanks a lot!

    Solved! Here's what worked for me, it's located at:
    http://discussions.apple.com/thread.jspa?messageID=11567814#11567814
    (scroll further down, Option 3, you'll see one or two others had success with it too)
    Message was edited by: rapture_elk

  • Please help - black screen blinking cursor 24" imac and XP home sp2

    Brand new 24" imac purchased yesterday from the apple store with a 4 gig ram upgrade (i.e. all the newest stuff/versions). All updates installed & current.
    Brand new (clean & scratchless) copy of Windows XP Home with SP2.
    I ran the bootcamp assistant and made a 20 gig windows parition (so its under the 32 gig limit of fat32).
    Following the installation procedure the windows disk is inserted, the machine reboots and then it just sits there with a black screen and a blinking cursor. The CD drive stops spinning and no progress from that point forward.
    I then read on here some had better lucky with a "copy" of the original windows disk so I duplicated it in this Mac (i.e. burned with its own drive) but exactly the same problem with the burned copy (which also opens fine from within OSX).
    I'm at a loss... where to go from here? We decided to try apple because they assured us we could run our "windows only aps" on the bootcamp side of the hardware but bootcamp isn't working!
    Please advise...
    If any of this helps:
    OS X Version 10.5.2
    2.8 Ghz Intel Core 2 Duo
    4 GB 667 Mhz DDR2 SDRAM
    Model name: iMac
    Model id: iMac8,1
    Boot Rom Version: IM81.00C1.B00
    SMC Version: 1.30f1

    Rickie Hall wrote:
    Brand new 24" imac purchased yesterday from the apple store with a 4 gig ram upgrade (i.e. all the newest stuff/versions). All updates installed & current.
    Brand new (clean & scratchless) copy of Windows XP Home with SP2.
    I ran the bootcamp assistant and made a 20 gig windows parition (so its under the 32 gig limit of fat32).
    Following the installation procedure the windows disk is inserted, the machine reboots and then it just sits there with a black screen and a blinking cursor. The CD drive stops spinning and no progress from that point forward.
    I then read on here some had better lucky with a "copy" of the original windows disk so I duplicated it in this Mac (i.e. burned with its own drive) but exactly the same problem with the burned copy (which also opens fine from within OSX).
    I'm at a loss... where to go from here?
    Welcome to the Apple forums:
    Be sure your XP disk had SP2 embedded into XP, and not a separate file or patch.
    Also be sure your disk is not an ISO image but a real disk, with files on it. You can look at them using your Mac. Insert the CD or DVD and doubleclick the disk icon.
    You should see most or all of the following files and folders:
    (HOMEWITHSP2)
    AUTORUN.INF
    DOCS
    DOTNETFX
    I386
    README.HTM
    SETUP.EXE
    SETUPXP.HTM
    SUPPORT
    VALUEADD
    WIN51
    WIN51IC
    WIN51IC.SP2
    When you copied the disk, did you make sure your copy was Windows readable? Mac has several formats, one of which is Mac-only for data CDs. You need to select the universal mode, Mac and Windows for the data image and when burning the image.
    Also be sure you selected to close or finalize the CD after burning or it cannot be read by Windows.

  • HTML component, port number problem

    I have an HTML component embedded inside an AIR app. When the
    user makes this component visible, the HTML component simply loads
    the contents of a URL. During development, I want to load content
    from a locally running Web server on port 8080. However, this does
    not seem to work. E.g., when I set
    htmlComponent.location = "
    http://localhost";
    This works as expected. However,
    htmlComponent.location = "
    http://localhost:8080";
    does nothing. I verified on the server that the HTML
    component doesn't even attempt to connect to the server.
    I also verified that this URL is valid and works (using my
    local Web browser) as well as via curl. Further, I also tested the
    connection via the URLMonitor class from within the AIR app: The
    URL is available, according to the URLMonitor.
    Any suggestions as to why the content can't be loaded from
    the local port 8080 would be appreciated. This is pretty much a
    show-stopper for me now, because I can't run the local server on
    port 80 during development. FYI, I'm on OS X. Also, in previous
    versions of AIR (about a year ago), I didn't have this problem.
    Thanks,
    -- Frank Sommers

    I have an HTML component embedded inside an AIR app. When the
    user makes this component visible, the HTML component simply loads
    the contents of a URL. During development, I want to load content
    from a locally running Web server on port 8080. However, this does
    not seem to work. E.g., when I set
    htmlComponent.location = "
    http://localhost";
    This works as expected. However,
    htmlComponent.location = "
    http://localhost:8080";
    does nothing. I verified on the server that the HTML
    component doesn't even attempt to connect to the server.
    I also verified that this URL is valid and works (using my
    local Web browser) as well as via curl. Further, I also tested the
    connection via the URLMonitor class from within the AIR app: The
    URL is available, according to the URLMonitor.
    Any suggestions as to why the content can't be loaded from
    the local port 8080 would be appreciated. This is pretty much a
    show-stopper for me now, because I can't run the local server on
    port 80 during development. FYI, I'm on OS X. Also, in previous
    versions of AIR (about a year ago), I didn't have this problem.
    Thanks,
    -- Frank Sommers

Maybe you are looking for

  • Instrument Plugins No longer show up in the Channel Strip Area?

    I've been working with Mainstage 3 quite extensively now. OS X Version 10.8.5 It's been incredible and I really love the program. Just Today, I noticed the instrument plug-ins don't show up in the channel strip area. Only the Audio and Mide FX plugin

  • Print to video / HDV sequence

    I am about to export a hdv sequence to my z1. I have to make a master tape for broadcasting. I normally export my commercial hdv work to mpeg2 and make a dvd.... To make a master tape for tv broadcast I need to make a dv camtape. How do I create a dv

  • Displayed data in User Details vs. Information entered in User Profile

    Hello All, I am running Portal 7.0 SPS13. In my Users Profile tab "Additional Information" I entered: Organizational Unit:  NIS Position: Consultant Department:  <is greyed-out / not editable> In my Users Details tab "Company" I only see: Job Title:

  • Business Event Subscription Changes don't take immediate effect

    Hi, it seems that whenever I make changes to my business event subscriptions the changes only take effect the next day. (Almost like there is some concurrent request running at night, or something bounced to make the changes) Does anybody know what n

  • Replaced Hard Drive in MacBook Pro - now TC wants to back up whole drive

    I replaced the 120 Gig hard drive in my MacBook Pro with a 320 Gig drive and cloned the old drive back to the new one. Time Machine now wants to treat this as a different drive from the one I have backed up on my Time Capsule. How do I convince TM to