Over State and actions not working with buttons in Flash cs4

Hi - I am working on a Flash file and some of the buttons in the document are not working.When I test the movie the hand cursor appears when I hover over the buttons they don't change colour (as specified in the over state) and the actions don't work. Not sure what is going on here as I created other buttons in the same document the same way and they work fine. Thanks in advance.

If you remove the code from the buttons do they react properly to a mouse over interaction?
What is the code that is in place?

Similar Messages

  • HT4623 Why do my iPhone cords for my 5 say it is not certified and may not work with this device? It's the same cord that came with my phone. The only difference is the iOS7 update.

    Why do my iPhone cords for my 5 say it is not certified and may not work with this device? It's the same cord that came with my phone. The only difference is the iOS7 update.
    Maps took me to the completely wrong side of town for a long standing business in town.

    Hello margmcarlson,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at:
    Troubleshooting iPhone, iPad, and iPod touch accessories
    http://support.apple.com/kb/TS2634
    Restore iPhone, iPad, or iPod touch to its factory default state. You should rarely need to use this step with an accessory issue.
    Best of luck,
    Mario

  • Mistakenly opened all the folders in my library of music and the Finder stopped working. Now every time I restart the mac, all folders are reopened and can not work with the finder and tried killall-KILL Finder and nothing they reappear

    mistakenly opened all the folders in my library of music and the Finder stopped working.
    Now every time I restart the mac, all folders are reopened and can not work with the finder and tried killall-KILL Finder and nothing will reappear

    mistakenly opened all the folders in my library of music and the Finder stopped working.
    Now every time I restart the mac, all folders are reopened and can not work with the finder and tried killall-KILL Finder and nothing will reappear

  • S10-3t bluetooth and wireless not working with windows 8

    S10-3t bluetooth and wireless not working with windows 8. I tried everything but doesn't work at all. I don't know where to find the new drivers that are comatible with windows 8 ???!!! please help me to solve this problem because i tried everything....

    Do you still have your windows7 install files ? 
    ( installation image is usually in LENOVO_PART OKRBackup/Factory ) ? I lost them :\
    if yes I fear you have to enable it in win7 and then use it in win8
    http://rzr.online.fr/q/lenovo# g470 s103t (Please Contact me if your s10-3T is booting win7 or support bluetooth, 3g)
    Lenovo S10-3t | Model Name : 0651 | Mfg Date: 2010/06/08
    Lenovo G470 | Model Name : 20078 | M fg Date: 11/03/23 | BIOS: 40CN23WW(V2.09) 06/20/2011 | CPU: i5-2410M | Linux version 3.3.4lenovog470+ (root@lap) (gcc version 4.6.3 (Debian 4.6.3-4) ) #8 SMP Tue May 1 10:23:48 CEST 2012
    OS:GNU/Linux/Debian

  • Iphone and ipad not working with USB3?

    for some 3 months now, when I connect my iphone or ipad to the pc nothing happens.
    I tried to look it up in the device manager and it said: Apple Mobile Device USB Driver is an older USB device and might not work with USB3.0
    Plug the device into an available USB2.0 port and click next. Otherwise, click cancel.
    Anyone had the same problem? Any solution that doesn't require being a computer engineer?
    Thanks

    nothing else connected,
    I used to simply plug the iphone or ipad and a folder will open giving me choices of what to do (open the device, copy pictures...) nothing happens anymore on both ipad iphone, I can't access them to copy the pictures, videos...

  • Appletv remote app and airplay not working with iphone 4S

    I have the latest appleTV.  I have the remote app loaded onto my ipad3 and iphone 4S.  The app is not working with iphone 4S, nor do I get the airplay icon, hence I can't mirrior my phone on appleTV.  It used to work.  I have deleted and reloaded the app, and still nothing.  It worked fined until a month ago or so.  I have enabled home sharing.
    The app and airlplay are working just fine with the ipad3.  I have the ipad and appleTV hooked up to my router using 5Ghz, and the iphone only connects to the 2Ghz network on the same router.  I don't think this is the issue, because it worked before.
    Also, when I click on the remote app on the iphone, to add an itunes library, a code pops up on the phone, which I enter into itunes on my Win7 PC.  Nothing seems happed on the computer when I enter the code.  Could this have anything to do with recent appleTV or itunes updates?  Any possible solutions?

    It seems like I am having the same problem.
    I have the latest AppleTV 1080, imac 27", ipad, ipad2, 2 iphone 4, all with the latest iOS. After I have the AppleTV connected, a few problems showed up:
    (1) ipad plus iphones cannot airplay photo to AppleTV. After the play button and the grey screen displayed "the playing msg on AppleTV", nothing happened. it is the same for ipad/iphone.
    (2) iMac not Airplay to AppleTV
    (3) Airplay Mirroring not working
    The following are done:
    - Home sharing enabled
    - To test the devices are connected. I set a passowrd for Airplay and the ipad/iphone both requested for it so they are network and devices are ok

  • Drag and Drop not working with spark HGroup with code

    Can anyone tell me why my HGroup won't fire the dragEnter dragDrop and DragOver events?
    Here is the sample code:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600">
        <fx:Declarations>
            <!-- Place non-visual elements (e.g., services, value objects) here -->
        </fx:Declarations>
        <fx:Script>
            <![CDATA[
                import mx.core.IUIComponent;
                import mx.events.DragEvent;
                import mx.managers.DragManager;
                private function dragEnterHandler(e:DragEvent):void {
                    DragManager.acceptDragDrop(e.currentTarget as IUIComponent);
                private function dragOverHandler(e:DragEvent):void {
                    DragManager.showFeedback(DragManager.COPY);
                //user drops src onto target, so re-parent the src to the target
                private function dragDropHandler(e:DragEvent):void {
                    var img:Image = e.dragInitiator as  Image;
                    var newImg:Image = new Image();
                    newImg.load(img.source);
                    var grp:HGroup = e.currentTarget as HGroup;
                    grp.addElement(newImg);
                private function mouseDownHandler(e:MouseEvent):void {
                    DragManager.doDrag(e.currentTarget as IUIComponent, null, e);
            ]]>
        </fx:Script>
        <s:layout>
            <s:HorizontalLayout />
        </s:layout>
        <s:Panel width="50%" height="100%" title="Drag me">
            <mx:Image source="http://www.google.com/intl/en_ALL/images/logo.gif" mouseDown="mouseDownHandler(event);" />
        </s:Panel>
        <s:Panel width="50%" height="100%" title="to Here">
            <s:HGroup width="100%" height="50%" dragEnter="dragEnterHandler(event);" dragDrop="dragDropHandler(event);"  dragOver="dragOverHandler(event);" />   
            <s:HGroup width="100%" height="50%" dragEnter="dragEnterHandler(event);" dragDrop="dragDropHandler(event);"  dragOver="dragOverHandler(event);" />   
        </s:Panel>
    </s:Application>

    Derek,IE11 is having some compatibility issues with the share point.Apart from IE11,it should work on IE10,9 and Firefox and chrome as well.
    Please check the links below that explains the issues with IE11 and the functionality of Drag and drop and limitations as-well.
    1.Since SharePoint 2013 fully support IE 32-bit version above 7, there might be compatibility issue with other browsers. I’d recommend you use IE 8,9,10 32-bit for optimal Performance.
    2. Open the same document library in Internet Explorer as this functions does not work with Firefox or Chrome by default
    3. Make sure the IE (Internet Explorer) Version should be 32-bit and not a 64-bit
    http://expertsharepoint.blogspot.de/2014/08/issues-with-sharepoint-2013-and.html
    http://expertsharepoint.blogspot.de/2013/12/how-to-upload-multiple-documents-in.html
    http://expertsharepoint.blogspot.de/2013/12/sharepoint-server-2013-drag-and-drop.html
    Anil Avula[Partner,MCP,MCSE,MCSA,MCTS,MCITP,MCSM] See Me At: http://expertsharepoint.blogspot.de/

  • Drag and Drop not working with IE11,Firefox or Chrome on Windows 7 x64 SP1

    Hello,
     I am trying to use drag and drop on my system but it is not working. other's within my department have no issues, but they are using IE10. I also have SharePoint Designer 2013 installed.
    Any suggestions?
    Thanks,
    Derek

    Derek,IE11 is having some compatibility issues with the share point.Apart from IE11,it should work on IE10,9 and Firefox and chrome as well.
    Please check the links below that explains the issues with IE11 and the functionality of Drag and drop and limitations as-well.
    1.Since SharePoint 2013 fully support IE 32-bit version above 7, there might be compatibility issue with other browsers. I’d recommend you use IE 8,9,10 32-bit for optimal Performance.
    2. Open the same document library in Internet Explorer as this functions does not work with Firefox or Chrome by default
    3. Make sure the IE (Internet Explorer) Version should be 32-bit and not a 64-bit
    http://expertsharepoint.blogspot.de/2014/08/issues-with-sharepoint-2013-and.html
    http://expertsharepoint.blogspot.de/2013/12/how-to-upload-multiple-documents-in.html
    http://expertsharepoint.blogspot.de/2013/12/sharepoint-server-2013-drag-and-drop.html
    Anil Avula[Partner,MCP,MCSE,MCSA,MCTS,MCITP,MCSM] See Me At: http://expertsharepoint.blogspot.de/

  • Download/Upload and Properties not working with Netstorage

    I had applied some authorized updates to a SLES 11, SP2, (OES 11.1, PATCHLEVEL=1) running eDirectory 8.8 SP7, server and rebooted a week ago.
    I didn't notice anything wrong initially and thus was living in stupid comfort! :O
    I was able to get to the Novell "Welcome" web page, and I can get into iMonitor and Remote Manager, but when I try iManager, I get "Error 503 Service Unavailable".
    After looking and trying various postings in the Novell forum unsuccessfully, I loaded iManager on a Linux Desktop and I am working with that, but I can't help think that is somehow related to my netstorage problem.
    I am able to successfully login to netstorage and I can navigate around to folders OK.
    Local users have a mapped drive and they are working OK with the nss volume.
    However, then I log in as admin and select a folder and choose Properties, I get "Error 500 Server Error" and if I try it again after that I get "Error 503 Service Unavailable"
    And, when anyone tries to use the other options, such as Upload or Download, nothing happens.
    I verified that Apache2 is running and that tomcat6 is running.
    Below is the catalina.out file for chucks-n-giggles.
    May 16, 2013 1:09:49 PM org.apache.catalina.core.AprLifecycleListener init
    INFO: The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: /usr/lib64/jvm/java-1_6_0-ibm-1.6.0/jre/lib/amd64/default:/usr/lib64/jvm/java-1_6_0-ibm-1.6.0/jre/lib/amd64:/usr/lib
    May 16, 2013 1:09:49 PM org.apache.coyote.http11.Http11Protocol init
    INFO: Initializing Coyote HTTP/1.1 on http-8080
    May 16, 2013 1:09:49 PM org.apache.catalina.startup.Catalina load
    INFO: Initialization processed in 788 ms
    May 16, 2013 1:09:49 PM org.apache.catalina.core.StandardService start
    INFO: Starting service Catalina
    May 16, 2013 1:09:49 PM org.apache.catalina.core.StandardEngine start
    INFO: Starting Servlet Engine: Apache Tomcat/6.0.18
    May 16, 2013 1:09:50 PM org.apache.coyote.http11.Http11Protocol start
    INFO: Starting Coyote HTTP/1.1 on http-8080
    May 16, 2013 1:09:50 PM org.apache.catalina.startup.Catalina start
    INFO: Server startup in 1092 ms
    Thanks for your time!
    Stan

    Originally Posted by Demaximis
    I looked at the /var/log/apache2/error_log right after I tried to bring up the properties of one of the netstorage folders and this is what I see:
    [Fri May 17 08:47:27 2013] [error] (111)Connection refused: proxy: AJP: attempt to connect to 127.0.0.1:9009 (localhost) failed
    [Fri May 17 08:47:27 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri May 17 08:47:27 2013] [error] proxy: AJP: failed to make connection to backend: localhost
    Does this point to where the issue is?
    I'm not 100% sure if that's the culprit or not. I didn't think netstorage used an odd port like that.
    I vaguely remember encountering this before a long time ago.
    Out of curiosity, is the actual server name (like: oes11sp1.abc.com) in your /etc/hosts
    AND
    is that the same DNS name you are using to access the netstorage server?
    In our case, we use a different DNS name vs. what the server name really is and we have to adjust the /etc/hosts correctly for some of the internal components to work.
    Also, when you installed OES11, did you accidentally leave the checkbox checked to add the local host definition to the /etc/hosts?

  • MyDAQ fails Self-Test and will not work with any software

    I cannot get the myDAQ to communicate properly. I did everything I could to make sure that the device was detected by the computer. It shows up in Device Manager under Data Acquistition Devices as NI myDAQ and in NI MAX as "myDAQ1", but I receive errors when trying to use it with any NI program.
    Trying to self-test or reset the device in MAX gives these errors:
    -The self test failed. -88705 The specified device is not present or is not active in the system. The device may not be installed on this system, may have been unplugged, or may not be installed correctly.
    -There was a problem resetting the device. Error code: 80040383.
    It also gives this error when trying to use the Elvis Oscilloscope:
    -Error -200324 occurred at ELVISmx_DAQmx Create Channel (AI-Voltage-Basic).vi:1 
    Possible reason(s):
    NI-DAQmx is unable to communicate with the device. Make sure the device is present in and accessible to the system, is not currently being reset, and is not reserved by another driver such as Traditional NI-DAQ (Legacy).
    I have uninstalled and reinstalled and repaired all installed NI products twice. I updated to NI-DAQmx 9.8.0 and am using NI Elvis 4.5. I have checked  NI Device Loader and mDNS Responder Service in Services and everything is running properly. I have also tried Reset Configuration Data in NI MAX several times. I turned Fast Startup off as suggested in one article. I have tried plugging it into every single USB port on my computer; all 8 of them. The blue led is on when plugged in, but I cannot figure out why it will not work with any of the software. I am running Windows 8 Pro 64-bit. Also, it completely works on the school computers running Windows 7 without any problems. I would like to have it functioning with all the NI software purchased, but all I want to do is use the oscilloscope software for now. It has honestly been way too much work and a huge loss of time for something that should work out of the box. Please help me resolve this, thanks.
    Attachments:
    ni_support.zip ‏341 KB

    Hi chaka123,
    I had already read that article so it wasn't anything I hadn't tried. I did, however, uninstall both NI DAQmx and NI ELVISmx, ran the registry cleaner and then plugged my device in. Now it shows up as USB Flash Firmware Updater. This is actually what it showed the first time I plugged this in out of the box. After much troubleshooting I was finally able to get it to at least recognize it as a myDAQ. This is problem I know others have had.
    To answer your questions:
    Does the Test Panels work at all?
    I am not sure, I didn't try it before uninstalling. Now the Test Panels isn't an option because it is recognized as the Flash Firmware Updater.
    Have you tried to delete the device in MAX?
    Once again, I cannot because it shows up as Flash Firmware Updater.
    Which is the color of the icon on the left side of “myDAQ1”?
    It was green before the uninstall. Now it shows the USB symbol.
    I tried deleting the driver. When I plugged the device back it, Windows started automatically trying to load a driver for it. Now it shows as NI myDAQ with a yellow exclamation symbol. In MAX it shows as NI myDAQ with a USB symbol. Under Driver Details it says "Windows does not have a driver associated with your device." 
    What folder can I manually point Device Manager to in order to load the correct driver?
    Attachments:
    devicemanager.PNG ‏40 KB

  • Hover action not working with Windows 8.1 touchscreen

    the hover action is not working when using Firefox as browser yet works fine in IE. For example if you try www.thepaleoway.com and click on login then hover over the 3 short lines at the top right, an orange box should open with with words Sign In in the middle. I am using Windows 8.1 on a Desktop PC with a touchscreen. Works fine using IE.
    Is it a configuration on my system or something the website people should be aware.
    Regards
    Geoff

    Works fine here.
    You can try these steps in case of issues with web pages:
    You can reload web page(s) and bypass the cache to refresh possibly outdated or corrupted files.
    *Hold down the Shift key and left-click the Reload button
    *Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    *Press "Command + Shift + R" (Mac)
    Clear the cache and remove cookies only from websites that cause problems.
    "Clear the Cache":
    *Firefox/Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox/Tools > Options > Privacy > "Use custom settings for history" > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem.
    *Switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance
    *Do NOT click the Reset button on the Safe Mode start window
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Drag and Drop not working with windows 8.1

    we using windows 8.1 for a few days now
    so we installed visual basic .net 2012 and starting our projects again we used in windows 7
    but now it seems that the drag and drop doesn't work in windows 8.1
    we only gets a forbidden icon when we drag it over the control
    please can someone tell us why windows 8.1 won't work with drag and drop
    we hope this can be fix in anyway because we don't like when our users use our programs
    and tell us that this point wont work in windows 8.1
    our code:
    Private Sub FlowLayoutPanel1_DragDrop(sender As Object, e As DragEventArgs) Handles FlowLayoutPanel1.DragDrop
    If (e.Data.GetDataPresent(DataFormats.FileDrop)) Then
    e.Data.GetData(DataFormats.FileDrop)
    End If
    End Sub
    Private Sub FlowLayoutPanel1_DragEnter(sender As Object, e As DragEventArgs) Handles FlowLayoutPanel1.DragEnter
    Try
    If (e.Data.GetDataPresent(DataFormats.FileDrop)) Then
    e.Effect = DragDropEffects.Copy
    Else
    e.Effect = DragDropEffects.None
    End If
    Catch ex As Exception
    Exit Sub
    End Try
    End Sub
    Thank you.
    Dummy
    p.s
    we also got help from social msdn
    here the topic who all answered.
    social
    mdsn

    Hi,
    Welcome posting in TechNet forum.
    Do you mean the drag and drop action of files within different application?
    We may take a try to disable the UAC settings and see if the drag and drop would work. And please note if we have UAC disabled, Windows Store APPs would be expected not going to work.
    For the coding edit stuff, I suggest we keep focus on the MSDN thread.
    Best regards
    Michael Shao
    TechNet Community Support

  • Scroll effect is not working with button

    step 01: Make 3 pages (e.g. Home, About and Contact)
    step 02: use state 3 individual buttons from widget and link them with pages (home, about and contact pages)
    step 03: Try to use scroll effect with individual buttons.
    it will not work...
    if you first use scroll effect and then link the buttons with pages then the button will not get display on browser.

    What scroll effect are you using on the buttons?

  • WRT610N disconnects and does not work with Vista or media center extenders like the DMA2200

    Linksys and all other router manufacturers advertise the greatness of the wireless 5ghz band (especially with 802.11n), but I’m beginning to have my doubts.  It is true that the 5Ghz band is hardly being used so you'll have virtually no one to compete with.  However, the 5Ghz distance in no way compares to 2.4Ghz, and as a matter of fact, I find it to be quite terrible.  At approximately 20 feet away, both my Linksys DMA2200 and HP notebook barely get 1 bar using the 5Ghz N band with my WRT610N router.  In comparison, while using my 2.4Ghz WRT54g router, I get 5 full bars at that range, and at least 2 bars from anywhere else in my house.  
    I have all Linksys equipment in my house as I have been impressed with all of their 2.4Ghz in the past.  However, I’ve recently upgraded everything to dual-band N equipment and found numerous flaws in each of the new devices, plus none of them really even play well together.  My setup is: Linksys 610n router, DMA2200 media center extender, and a WUSB600N Dual-Band Wireless-N USB Network Adapter for my laptop – all of which are currently using the most up-to-date firmware. Other devices include a WRE54G extender and  Nintendo Wii. 
    Problem  #1) The LELA software with the new N devices doesn't even recognize that my DMA2200 is a media center extender.  Using LELA, I should be able to select my media extender and allocate more bandwidth for streaming media.  However, since my extender only shows up as an “unknown network device” those options are greyed out.  I tried to manually change the device to a media center, but still no go.  I suppose you can manually allocate bandwidth in the router setup somewhere, but considering these are all Linksys products, it’s absolutely ridiculous that an option specifically incorporated in the LELA software for a Linksys Media Extender does not work!!!   
    Problem #2) If you are only using one system with the router, the router might actually work as intended.  For most of us though there are going to be at least 2 or more systems connected to the router (wired, wireless, or a combination of the two) such as a PS3, Wii, laptop, PC, media extender, Xbox, etc.  If that’s the case, you’re probably screwed because you WILL experience frequent dropouts… ESPECIALLY if just one those clients is a VISTA machine.   Check the Linksys forums and you will find that this seems to be a problem with all of the new Linksys routers (610N, 310N, and 110). 
    Here is a Microsoft article that explains the issue
       http://support.microsoft.com/kb/928233/en-us 
    Problem #3) Because of  problem #2 I will never be able to get rid of the dropouts since my network is using one of Linksys’s media center extenders.  The DMA2200 is essentially a VISTA PC to some extent and accepts DHCP requests the same as a VISTA PC.  Since it is not really a PC though, there is no registry modification that can be done to alleviate the VISTA problem (not that the registry mod really works anyways).  So as long as I try to use my DMA2200 wirelessly with my WRT610N router, the frequent dropouts will occur and there’s nothing I can do about it.  This is REALLY TERRIBLE since the DMA2200 is specifically designed to be used with the WRT610N router in order to take advantage of the 5Ghz band and wireless N transfer rates.  You absolutely need 5Ghz wireless N to efficiently stream HDTV WIRELESSLY, but if you lose your connection every 10 minutes, it is impossible to watch any type of streaming media. 
    Problem #4) As mentioned already, when the “N” 5Ghz range is working on the WRT510N router, the distance sucks compared to standard 2.4Ghz G, N or mixed mode networks.  You can try to make it better by strictly using N products, disabling the 2.4ghz band all-to-gether, and using the wider 40mhz frequency, but it doesn’t really help.  The higher 5Ghz band is a more concentrated signal and therefore simply does not reach as far as the lower 2.4ghz band.  I wonder why all of these new products state that the 5Ghz range will increase your distance, when in fact it actually makes it worse?   
    So… basically, this router does nothing that it claims too and is basically rendered useless on any network with a VISTA machine.  This has not been addressed by any Linksys firmware updates or VISTA software updates so there is no reason to even consider using this router if you you’re using VISTA or some type of VISTA Media Center Extender such as the Linksys DMA2200.  
    Although, I’ve always sworn by Linksys in the past, the amount of wasted time, frustration, and horrible support has really changed my view about them.  I’ve reverted back to my old trustworthy WRT54g router and had to run cable through my house so that I wouldn’t have to box my DMA2200 extender up and let it collect dust in the attic.  It’s really disappointing that I spent all this money to buy this equipment specifically because they’re supposed to work together, but in fact they don’t.  Plus what’s the point of having top notch wireless equipment if you have to run cables in order for them to work? 
    Message Edited by bobbodavis on 11-15-2008 07:37 PM

    I have fixed all the IP adresses to avoid the DHCP problem but I still have problems.
    I have sereval scenarioes:
    1. MC < 1Gb wire > WRT610N < 5.0n WIFI > MX
    I can see HDTV on this one but it disconnects
    2. MC < 1Gb wire > WRT610N < 2.4b/g WIFI > MX
    No HDTV and disconnections
    3. MC < 2.4b/g WIFI > WRT610N < 2.4b/g WIFI > MX
    No HDTV but no disconnections - but very slow and streaming like youtube
    4. MC < 100Mb wire > WRT610N < 2.4b/g WIFI > MX
    No HDTV but nice picture - testing for disconnections right now - 30+ min.
    Result:
    This test was very good. Stabil streaming, no disconnects for an hour. Won't support HDTV but the rest seem to work fine.
    5. MC < 100Mb wire > WRT610N < 5.0n WIFI > MX
    Not tested yet - looking forward to this - might bring me HDTV.
    Result:
    This gives HDTV but there is a problem with stability on the streaming but very difficult to see on the picture. Testing for disconnects - now tested for 30 min. - no disconnects.
    This looks really promissing.
    I am pretty sure that the WRT610N have a problem in the switching part of the router specially when it has to switch from 1G to WIFI. I bought the WRT610N to get HDTV on WIFI and Cisco markets the DMA and WRT610N as a perfect match. But it definately have problems - i still do not understand their silence about this.
    I will come back with the last results when I have them
    /John
    Message Edited by Infraxpert on 01-05-2009 04:38 PM
    Message Edited by Infraxpert on 01-05-2009 05:35 PM

  • Addressbook and Messages not working with iPhoto-Faces

    Hey
    I've set up ML with an clean-install.
    I also set up iPhoto 11 (Mac-App Store updates installed directly after installing iPhoto 11) with my existing picture-library (upgrade of the library on first run was successfully).
    My problem: I cannot select any faces from iPhoto anymore. In Lion, I was able to set a Addressbook-picture from iPhoto, this doesnt work anymore
    Next, Messages is not showing my Addressbook-picture (currently set one) - but Mail does!
    If I try to select a new profile picture over Messages, Iam still not able to select something from iPhoto.
    So, where is the iPhoto-Faces integration?
    Thanks for help

    Hi,
    After setting up the iPhone and the Mac they should remain in fairly close contact as the Mac uses the iPhone's Carrier service to send the SMS.
    Whilst the setting up does not mention it the procedure looks a lot like Pairing Blue Tooth devices which gives you a range of 30 feet or so depending on surroundings.
    Having said that the specs say they two should be on the same WiFi Network (or network that the iPhone is WiFi Connected to be be correct) which would also limit coverage somewhat but  larger area than Blue Tooth.
    You then have to decide if it is possible your son went out of range of a suitable carrier service or whether your phone was moved too far form your Mac.
    If both your Mac and the iPhone are not maintaining the connection it would seem it is at the far end that the issue is happening.
    Is your son's phone maintaining:-
    1) Connection to a suitable service ?
    2) an SMS ability during that connection ?
    9:42 PM      Saturday; December 6, 2014
    ​  iMac 2.5Ghz i5 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

Maybe you are looking for

  • I want to float...s

    Hi all I have seen web page where both images and text seem floating or are sitting on top of the page. It looks as if they are on another layer. can someone give me a simple example of how this is done..... thanks for any help you can give Graham

  • How can delete his backup safety and totally?

    My friends and I share a same time capsule ( 4th gen, 2TB), so if one day he leaves, how can delete his backup safety and totally?

  • Get Screen Resolution from Custom Reports

    I was wondering if it was possible to get the screen resolution of a workstation from the Custom Reports in ZCC ?? Seb

  • Why does Audio stop at 5-minutes

    Just got a new 160GB Classic that only plays audio books for 5-minutes, cuts off, the  after a while goes to next chaptor. is there a fix?

  • Canon Rebel EOS XSi and EF Lens 70-200/4/L IS U

    Having trouble getting clear action shots of high school football games at night. No problems until after dark. This is my first post. Would like to know if I will ever get good clear action shots using this lens or will it never have enough light. T