Work with PCI-6052E and PCI-6601 simultaneously

Hi, I'm working with PCI-6052 for bufered data output and PCI-6601 for read two encoders at same time, when I work with single board I don't have problems but when I work both simultaneously I have a problem only I can out data or only I can read the encoders but not both at the same time. How I make this?

Hi,
You probably have one task in LabView running in series after the other. Both of these tasks require a loop. Your buffered data output needs to be written in continuous fashion in a loop (I believe) and your encoder measurements are being read constantly as well (should be in a loop). Try experimenting with these two suggestions.
I would copy both programs into 1 VI and keep them running completely separate. LabView will be able to assign each a different thread so they should be able to run completely in parallel. Therefore you would have 2 parallel loops that are not connected at all.
You can also create two completely different VIs and run them in parallel. There is no reason why the two different programs would interfere.
Hope that he
lps. Have a good day.
Ron

Similar Messages

  • Inquiring about the issue of using PCI-5922 and PCI-5412 simultaneously under Linux OS! Thank you!

    hi all,I am lily and I an AE from NI shanghai .Now I confronted a pullze from customer,and I really feel at a loss! Hope some one of you would come and land me a hand,thank you in advance!
    The problem is as follows:
    Customer use PCI-5922 and PCI -5412 under Linux OS, if they use either of the two cards seperately,there would be OK. but if the use both of the two cards simultaneously, the error will occured as attachment shows. "Error code:-50258 occured at niscope_DAQmx Create Channel (AI-Voltage-Base).vi:2  Possible reason(s):The specified software component failed to initialize."
    Can I know is there any solution vs this probelm?Thank you in advance!!
    Attachments:
    Screenshot-NI-DAQmx Test Panels.png ‏17 KB
    NI-NEW_error.txt ‏8 KB
    shortsyms.txt ‏973 KB

    This is the wrong board for this question, you should re-post here
    Regards
    Ray Farmer

  • Sharing an external sample clock between PCI-6722 and PCI-6602

        I need PCI-6602 work with PCI-6722。6602 shares 6722’s ao/SampleClock as external clock and triggered by 6722’s ao/StartTrigger。The master device is 6722, which refered as Dev1, and the slave device is 6602, which refered as Dev2. A RTSI line is used to connect the two devices correctly.
        I use C API to finish my program and my code is as follows:
    //config 6722 analog out task
    1、DAQmxCreateTask("NI6672", &hAOTask);
    2、DAQmxCreateAOVoltageChan(hAOTask, "Dev1/ao0", "", -10.0, 10.0, DAQmx_Val_Volts, "" );
    3、DAQmxCfgSampClkTiming(hAOTask, "", 1000.0, DAQmx_Val_Rising, DAQmx_Val_ContSamps, 1000);
    4、DAQmxWriteAnalogF64(hAOTask, 1000, 0, 10.0, DAQmx_Val_GroupByChannel, data, NULL, NULL);
    //config 6602 counter task
    5、DAQmxCreateTask("NI6602", &hCounterTask);
    6、DAQmxCreateCICountEdgesChan(hCounterTask, "Dev2/ctr0", "", DAQmx_Val_Rising, 0, DAQmx_Val_CountUp);
    //use /Dev1/ao/SampleClock for external clock
    7、DAQmxCfgSampClkTiming(hCounterTask, "/Dev1/ao/SampleClock", 1000.0, DAQmx_Val_Rising, DAQmx_Val_ContSamps, 1000);
    //use /Dev1/ao/StartTrigger
    8、DAQmxSetTrigAttribute (hCounterTask, DAQmx_ArmStartTrig_Type, DAQmx_Val_DigEdge);
    9、DAQmxSetTrigAttribute (hCounterTask, DAQmx_DigEdge_ArmStartTrig_Src, "/Dev1/ao/StartTrigger");
    10、DAQmxSetTrigAttribute (hCounterTask, DAQmx_DigEdge_ArmStartTrig_Edge, DAQmx_Val_Rising);
    //start counter task first
    11、DAQmxStartTask(hCounterTask);
    //start 6722 task
    12、DAQmxStartTask(hAOTask);
    I run it on the MAX virtual Device, and the Step 11always returned -89120。
    I try to slove this problem, so I change the Step 7, use /Dev2/PFI9 to instead of /Dev1/ao/SampleClock.
    7、DAQmxCfgSampClkTiming(hCounterTask, "/Dev2/PFI9", 1000.0, DAQmx_Val_Rising, DAQmx_Val_ContSamps, 1000);
    The code runs well, but I don’t know which terminal is connected by /Dev2/PFI9. Does it connect to /Dev1/ao/SampleClock?
    I use another API DAQmxConnectTerms to ensure that, I add a Step before Step 11.
    DAQmxConnectTerms( "/Dev1/ao/SampleClock", "/Dev2/PFI9", DAQmx_Val_DoNotInvertPolarity );
    The program also run well. But I am still not sure that 6602 is sharing /Dev1/ao/SampleClock。If not, which terminal of Dev1 is connected by /Dev2/PFI9?
    Is my code right? If not, hwo to fix my code or supply some example for me? Thanks.

    Hello Shokey,
    From looking over your post, it looks like you want to program in C, using simulated instruments, a master/slave design with a PCI-6602 and PCI-6722. The PCI-6722 is the master device and the PCI-6602 is the slave device. In order to implement this with the real cards, you would need a RTSI cable between the 2 cards in order to pass the triggers and the sample clock. Unfortunately with simulated devices you can't implement this so parts of your code won't be able to work exactly like if you had the instrument.
    If you did have the instrument, you can implement this by performing the following steps:
    Master Device:
    1.) Export the ao/SampleClock and ao/StartTrigger to a RTSI Line. (See DAQmx C Reference help for DAQmxExportSignal to export these)
    Slave Device:
    1.) Set the Sample clock and the trigger to the RTSI.
    There is another forum that I think will help you out to implement this correctly. In this forum, the customer was trying to export a trigger through a RTSI and the problem he was experiencing was a broken RTSI cable. His code, he states, works. I hope this helps you with this and if you have any more questions, feel free to post.
    Jim St
    National Instruments
    RF Product Support Engineer

  • How to reduce reading and recording data time/ Visual C++, PCI 6024E and PCI-MIO-16E?

    Right now I am working on a data communication programme. The time of reading digital signal and recording data is more than I expected, which is about 100 microsecond. I need to reduce the time. The software I am using is Visual C++ 6.0. I use two DAQ boards, which are PCI-6024E and PCI-MIO-16E. I have set the priority of Visual C++ to be realtime by task manager. The operating systme is Windows XP.
    I am wondering how to set the interrupt of reading or writing data to be the highest and stop any other kind of interrupt.
    Thanks in advance!

    The primary limitation you will encounter when trying to do high speed
    digital I/O using your E-Series hardware is that the digital lines are
    all software timed.  This means that for each and every digital
    read it is necessary for your software to issue a command to your
    hardware, read a single point, then receive the response from the
    board.  This prevents you from performing digital operations at
    very high speed.  In general, I would say that 100 microseconds is
    a very good response using software-timed digital I/O on a Windows
    computer.
    It is difficult to make a good recommendation without more detail about
    what you are trying to do.  You may need to consider switching to
    a Real-Time operating system, or upgrading your DAQ hardware to a board
    that will allow you to time your digital acquisitions on the board
    itself.  These devices, such as the m-Series DAQ or the PCI-653x
    series, would allow you to use hardware triggers for your digital
    acquisitions, change detection, and buffered data acquisitions to
    reduce the software overhead involved in a rapid acquisition.

  • Is there a way to download Firefox 4 without going on a 3rd party site? Many of my addons do not work with Firefox 5 and 6.

    Quite a few of my addons don't work with firefox 6, and I would prefer to keep them, but my pc crashed and I had to reformat. I don't want to have to go on a 3rd party site, since they could easily put a virus on my pc. I couldn't find anywhere to download it on the site.
    Thanks

    ftp://ftp.mozilla.org/pub/firefox/releases/4.0.1/
    Just keep in mind that Firefox 5.0 was a security release for 4.0.1.

  • Working with AVCHD: Log and Transfer FAQs

    Disclaimer: Apple does not necessarily endorse any suggestions, solutions, or third-party software products that may be mentioned in the topic below. Apple encourages you to first seek a solution at Apple Support. The following links are provided as is, with no guarantee of the effectiveness or reliability of the information. Apple does not guarantee that these links will be maintained or functional at any given time. Use the information below at your own discretion.
    Working with AVCHD: Log and Transfer FAQs
    Log and Transfer was introduced to the product chain in Final Cut Express 4, and is the program's process for ingesting files in the AVCHD format utilizing MPEG-4 AVC/H.264 video coding and either Dolby AC-3 or uncompressed linear PCM audio coding. The most frequently observed problems relating to the Log and Transfer process are generally quite easily addressed.
    What should I know before attempting to ingest my footage?
    The following facts regarding the Log and Transfer process were adapted from the [Apple Knowledge Base article|http://support.apple.com/kb/TA24840?viewlocale=en_US] on transferring AVCHD in Final Cut Pro 6.0.1 but still hold true for the current version of FCE:
    AVCHD support is available only on Intel-based Macintosh computers.
    AVCHD camcorders typically connect to computers via USB 2.0, not FireWire.
    DVD-based AVCHD camcorders are not supported in Mac OS X 10.4 or earlier.
    Standard definition video recorded with AVCHD camcorders cannot be accessed in the Log and Transfer window. SD and HD clips should not be mixed on the same HDD.
    Preview of AVCHD video in the Log and Transfer window is limited to 1x forward playback. Scrubbing the playhead does not update the video in the Preview area until you stop scrubbing.
    When you choose to transfer AVCHD audio in the Logging area, audio is automatically mixed down to stereo.
    AVCHD footage is not ingested natively but is transcoded to the Apple Intermediate Codec.
    Apple Intermediate Codec files are significantly larger than the original AVCHD files. FCE does not estimate the size of a transcoded AVCHD file before ingesting, so it is possible to exceed the available space on your capture disk during transfer. Before ingesting, keep in mind that the disk space required is about ten times greater than the size of the native AVCHD file.
    Which specific formats can be ingested by Log and Transfer?
    Only AVCHD footage can be ingested through the Log and Transfer process. Other formats and variants such as AVCHD Lite are not supported. All video should be recorded in a frame size of either 1440x1080 or 1920x1080 and a frame rate of 25 or 29.97 frames per second. Audio recorded on AVCHD camcorders is generally at a rate of 48kHz. If your camera shoots in a format that does not comply with one of these setups then it is most likely not supported by the application and is not guaranteed to work correctly.
    Which Easy Setup preset should I select before ingesting my footage?
    It is extremely important to select the preset that matches your media before you attempt to ingest via Log and Transfer. There is only one Easy Setup preset that matches the frame size and rate of your footage. If you intend to ingest AVCHD clips through Log and Transfer you will first need to select one of the following presets:
    AVCHD-Apple Intermediate Codec 1440x1080i50
    AVCHD-Apple Intermediate Codec 1440x1080i60
    AVCHD-Apple Intermediate Codec 1920x1080i50
    AVCHD-Apple Intermediate Codec 1920x1080i60
    If these four options do not appear under your Easy Setup list then you probably need to run Software Update and update to FCE 4.0.1. DO NOT cycle through the available presets until you find one that works - there is only one preset that matches your media and it should be evident which one to choose by the way it is named. Select the AVCHD preset that mentions your frame size and frame rate (i50 presets support both 50i and 25p frame rates; similarly, i60 presets support both 60i and 29.97p frame rates). If you do cycle through many options in the hope of selecting the correct one through guess-and-check you will probably have corrupted your preference file and need to [trash your preferences|http://support.apple.com/kb/TS2611] before continuing.
    Why don't my clips appear when I open the Log and Transfer window?
    Make sure your camcorder records AVCHD in a format supported by FCE4. It should be connected to one of your computer's USB ports (never connect it to an external hard drive or other external device such as your keyboard or a USB hub), powered on, and set to video playback mode.
    If the camcorder +does not+ mount on your Desktop your USB port or cable may be malfunctioning. Try plugging it in to another port or using a different USB cable to see if it makes a difference.
    If the camcorder does mount on your Desktop but the clips do not appear in the Log and Transfer window you will need to point the program to the directory that contains your media.
    First, click the Add Folder button in the upper left of the Log and Transfer window. The button looks like this:
    Then, you will need to navigate to the root directory in which your media is stored. Most camcorders call this folder "PRIVATE" or "AVCHD" and it should be located at the very top level of the camcorder when mounted. If your camcorder records to a valid AVCHD directory structure then your clips should load after the Add Folder process is completed.
    I would like to keep a working backup of my original clips so that I can delete them off the camcorder's internal memory. How should I do this?
    There are two main ways to keep a backup of your clips. The first is to ingest every clip on your camcorder through the Log and Transfer process, and store the Apple Intermediate Codec files the application creates in an easily accessible place such as an external FireWire drive. The advantage of this method is that you have the ability to open back up old editing projects, reconnect the media as necessary, and keep going as if you'd never left. However, due to the large amount of space AIC takes up (usually somewhere in the vicinity of 41-50GB an hour when transcoded from AVCHD), this is not always feasible.
    Another often preferable approach is to copy over the root directory in which your clips are stored (usually named "PRIVATE" or "AVCHD") from the camcorder to your computer or an external drive. As long as you maintain the original file structure, you will be able to ingest your clips again at a later date using the "Add Folder" process detailed above to navigate to their new location.
    My clips appear, but when I attempt to ingest a red exclamation point appears and the window displays the message "Error: No Data"
    This is one of the most common problems that users experience when trying to ingest their media through the Log and Transfer process. Luckily, it also has one of the easiest solutions.
    In the Log and Transfer window, click on the gear icon in the top right and select "Preferences" in the contextual menu that appears.
    Make sure the video is set to transcode to the Apple Intermediate Codec and the audio is set to Plain Stereo.
    After doing so, hit OK and try to ingest again.
    I am experiencing a problem that is not covered in this tip or the solutions here do not work.
    The best thing to do at this point would be to trash your preferences and start a new topic in the [FCE Forum|http://discussions.apple.com/forum.jspa?forumID=936&start=0] with a detailed description of your problem. Check out the user tip on [Basic Troubleshooting in Final Cut Express|http://discussions.apple.com/thread.jspa?threadID=2662419] for more information.
    This is the 1st version of this tip. It was submitted on December 03, 2010 by skalicki`.
    Do you want to provide feedback on this User Contributed Tip or contribute your own? If you have achieved Level 2 status, visit the User Tips Library Contributions forum for more information.

    Disclaimer: Apple does not necessarily endorse any suggestions, solutions, or third-party software products that may be mentioned in the topic below. Apple encourages you to first seek a solution at Apple Support. The following links are provided as is, with no guarantee of the effectiveness or reliability of the information. Apple does not guarantee that these links will be maintained or functional at any given time. Use the information below at your own discretion.
    Working with AVCHD: Log and Transfer FAQs
    Log and Transfer was introduced to the product chain in Final Cut Express 4, and is the program's process for ingesting files in the AVCHD format utilizing MPEG-4 AVC/H.264 video coding and either Dolby AC-3 or uncompressed linear PCM audio coding. The most frequently observed problems relating to the Log and Transfer process are generally quite easily addressed.
    What should I know before attempting to ingest my footage?
    The following facts regarding the Log and Transfer process were adapted from the [Apple Knowledge Base article|http://support.apple.com/kb/TA24840?viewlocale=en_US] on transferring AVCHD in Final Cut Pro 6.0.1 but still hold true for the current version of FCE:
    AVCHD support is available only on Intel-based Macintosh computers.
    AVCHD camcorders typically connect to computers via USB 2.0, not FireWire.
    DVD-based AVCHD camcorders are not supported in Mac OS X 10.4 or earlier.
    Standard definition video recorded with AVCHD camcorders cannot be accessed in the Log and Transfer window. SD and HD clips should not be mixed on the same HDD.
    Preview of AVCHD video in the Log and Transfer window is limited to 1x forward playback. Scrubbing the playhead does not update the video in the Preview area until you stop scrubbing.
    When you choose to transfer AVCHD audio in the Logging area, audio is automatically mixed down to stereo.
    AVCHD footage is not ingested natively but is transcoded to the Apple Intermediate Codec.
    Apple Intermediate Codec files are significantly larger than the original AVCHD files. FCE does not estimate the size of a transcoded AVCHD file before ingesting, so it is possible to exceed the available space on your capture disk during transfer. Before ingesting, keep in mind that the disk space required is about ten times greater than the size of the native AVCHD file.
    Which specific formats can be ingested by Log and Transfer?
    Only AVCHD footage can be ingested through the Log and Transfer process. Other formats and variants such as AVCHD Lite are not supported. All video should be recorded in a frame size of either 1440x1080 or 1920x1080 and a frame rate of 25 or 29.97 frames per second. Audio recorded on AVCHD camcorders is generally at a rate of 48kHz. If your camera shoots in a format that does not comply with one of these setups then it is most likely not supported by the application and is not guaranteed to work correctly.
    Which Easy Setup preset should I select before ingesting my footage?
    It is extremely important to select the preset that matches your media before you attempt to ingest via Log and Transfer. There is only one Easy Setup preset that matches the frame size and rate of your footage. If you intend to ingest AVCHD clips through Log and Transfer you will first need to select one of the following presets:
    AVCHD-Apple Intermediate Codec 1440x1080i50
    AVCHD-Apple Intermediate Codec 1440x1080i60
    AVCHD-Apple Intermediate Codec 1920x1080i50
    AVCHD-Apple Intermediate Codec 1920x1080i60
    If these four options do not appear under your Easy Setup list then you probably need to run Software Update and update to FCE 4.0.1. DO NOT cycle through the available presets until you find one that works - there is only one preset that matches your media and it should be evident which one to choose by the way it is named. Select the AVCHD preset that mentions your frame size and frame rate (i50 presets support both 50i and 25p frame rates; similarly, i60 presets support both 60i and 29.97p frame rates). If you do cycle through many options in the hope of selecting the correct one through guess-and-check you will probably have corrupted your preference file and need to [trash your preferences|http://support.apple.com/kb/TS2611] before continuing.
    Why don't my clips appear when I open the Log and Transfer window?
    Make sure your camcorder records AVCHD in a format supported by FCE4. It should be connected to one of your computer's USB ports (never connect it to an external hard drive or other external device such as your keyboard or a USB hub), powered on, and set to video playback mode.
    If the camcorder +does not+ mount on your Desktop your USB port or cable may be malfunctioning. Try plugging it in to another port or using a different USB cable to see if it makes a difference.
    If the camcorder does mount on your Desktop but the clips do not appear in the Log and Transfer window you will need to point the program to the directory that contains your media.
    First, click the Add Folder button in the upper left of the Log and Transfer window. The button looks like this:
    Then, you will need to navigate to the root directory in which your media is stored. Most camcorders call this folder "PRIVATE" or "AVCHD" and it should be located at the very top level of the camcorder when mounted. If your camcorder records to a valid AVCHD directory structure then your clips should load after the Add Folder process is completed.
    I would like to keep a working backup of my original clips so that I can delete them off the camcorder's internal memory. How should I do this?
    There are two main ways to keep a backup of your clips. The first is to ingest every clip on your camcorder through the Log and Transfer process, and store the Apple Intermediate Codec files the application creates in an easily accessible place such as an external FireWire drive. The advantage of this method is that you have the ability to open back up old editing projects, reconnect the media as necessary, and keep going as if you'd never left. However, due to the large amount of space AIC takes up (usually somewhere in the vicinity of 41-50GB an hour when transcoded from AVCHD), this is not always feasible.
    Another often preferable approach is to copy over the root directory in which your clips are stored (usually named "PRIVATE" or "AVCHD") from the camcorder to your computer or an external drive. As long as you maintain the original file structure, you will be able to ingest your clips again at a later date using the "Add Folder" process detailed above to navigate to their new location.
    My clips appear, but when I attempt to ingest a red exclamation point appears and the window displays the message "Error: No Data"
    This is one of the most common problems that users experience when trying to ingest their media through the Log and Transfer process. Luckily, it also has one of the easiest solutions.
    In the Log and Transfer window, click on the gear icon in the top right and select "Preferences" in the contextual menu that appears.
    Make sure the video is set to transcode to the Apple Intermediate Codec and the audio is set to Plain Stereo.
    After doing so, hit OK and try to ingest again.
    I am experiencing a problem that is not covered in this tip or the solutions here do not work.
    The best thing to do at this point would be to trash your preferences and start a new topic in the [FCE Forum|http://discussions.apple.com/forum.jspa?forumID=936&start=0] with a detailed description of your problem. Check out the user tip on [Basic Troubleshooting in Final Cut Express|http://discussions.apple.com/thread.jspa?threadID=2662419] for more information.
    This is the 1st version of this tip. It was submitted on December 03, 2010 by skalicki`.
    Do you want to provide feedback on this User Contributed Tip or contribute your own? If you have achieved Level 2 status, visit the User Tips Library Contributions forum for more information.

  • I have recently installed Mavericks and since then I have been unable to shut down or log out of my mac.  I work with two screens and now I seem to have programmes at the top of both screens which I didn't before.  any advice?

    I have recently installed Mavericks on my desk top and since then I have been unable to switch off my computer without crashing it. I work with two screen and now I seem to have the menu bar on the second screen as well which I did not have before.  Can you please help me?

    Dr Bettina, I had similar problems with Mavericks. I installed it on a Mini and a 13" MacBook Pro. I can't speak to your disdplay issues, but I can confirm the inability to logout, shut down, or restarft without a forced, power button shut down. I can also report frequent System Prefs freezes and finder issues, like folder contents taking half a minuite or more to render, or not appearing at all. And while a few Adobe CC apps actually ran faster, InDesign ran like molasses uphill in Decemner.
    I tried uninstalling or disabling numerous 3rd party apps and pref panes. I unplugged everything but the keyboard, ran DiskWarrier, repaired permissions, did fsck -f, trashed various preference files, reinstalled the OS... You name it, and I tried it — short of a potion using eye of newt.
    After two days of totally hosed productivity, I restored OS 10.8.5 on the Mini so I could actually get some work done. However, I've decided to leave Mavericks on the MBP as a sort of crash dummy, and will install and thoroughly test all updates until stability has been achieved. Then — and only then — will I upgrade the Mini to Mavericks, even if it means waiting 'til a .2 or even .3 update.
    Good luck to you...

  • HT201210 hi everyone, i have a problem about my iphone 4S, doesn't work with wifi connection and bluetooth since upgrade to the IOS 7.0.3. Can anyone can help me tosolve this problem?????Thank's regards paulus

    hi everyone, i have a problem about my iphone 4S, doesn't work with wifi connection and bluetooth since upgrade to the IOS 7.0.3. Can anyone can help me tosolve this problem?????Thank's regards paulus

    Try the suggestions here to see if they resolve your problem:
    http://support.apple.com/kb/ts1559
    If these don't work you may have a hardware problem. Visit an Apple store for an evaluation or contact Apple Support.

  • APPLE DOCKING STATION NO LONGER WORKS WITH TOUCH 3G and 4G after ios 4.2.1

    APPLE DOCKING STATION NO LONGER WORKS WITH TOUCH 3G and 4G after ios 4.2.1 update.
    I have both of these touches. I updated both 3g and 4g to ios 4.2.1 and poof...no docking station support other than charging, no audio and no remote function. My av/cable works with the tv, and the headphone jack still outputs audio, just no auido through the Apple dock and hte remote is dead. I purchased the dock from the apple store last year and it was working with both ipod 3g and 4g grrrrr...
    Is Apple now in the bug trade business?, trade one for another....
    Anyone else have this problem?

    My iPod Touch 3G running 4.2.1 works fine with the Apple docking station.
    Perhaps you have a loose cable somewhere and/or a dead battery in your controller?

  • Why Model MD297AE/A is not working with Fcae time and Model MD293C/A is working in UAE with Facetime

    Why Model MD297AE/A is not working with Fcae time and Model MD293C/A is working in UAE with Facetime.
    In fact I have given my iPhone to my daughter to use in Canada (purchased from UAE ISP) she is unable to use Face Time within Canada. ?
    Is it possibile to activate FaceTime in Canada if iPhone is purchase from UAE.
    Purchase under Points by ISP (No contract)
    Thanks
    Abbas

    Hello sir
           I agree what u replied for the above question, but because of the UAE request, you cannot deactivate the facetime completely from this iphone, they should stop working through SIM network. The iphone is a universal mobile which can travel all over the world, many tourist people will suffer due to that, pls re-consider in taking back and try to make it upgrading this software.
    Thanks
    SATHISH KUMAR

  • I am working with Acrobat XI and when I try to add text to geopdf file I get a popup screen that says this is a secured document and editing is not permitted. How do I fix this?

    I am working with Acrobat XI and when I try to add text to a geopdf file I get a popup screen that says this is a secured document and editing is not permitted. How do I fix this?

    I figured it out...needed to use comment tool set, not the editing tool set.

  • Existing Apple ID is not longer working with Face Time and Message on the iPhone after iOS 6

    After the IOS 6 update on my iPhone the Apple ID is not longer working with Face Time and Message. Each time I try to log in I receive the message that the password or the user is not right. But they are, because on all other devices and all other parts of the iPhone (iCloud, AppStore, iTunes) they are working. Other Apple IDs are working fine.
    What's wrong? Any idea?
    Thanks

    Blue
    It sounds like you restored from an old back-up.  Did you back-up just before your software update?  It will use your last one and if your last back-up was a ywear old then it will use that one.
    In general, if you are getting these messages on your iPhones select logout (when you get that Apple Id request) and then log back in with your newer ID.
    Sorry for your losses.
    Cheers

  • Can I email photos w/o templates Iphoto provides? I used to be able to choose a few photos and email them. Now I have to work with these templates and can barely see what I'm writing!

    I used to be able to choose a few photos and email them. Now I have to work with these templates and often do no want to. Could someone tell me the process for choosing to send photos without the templates?

    Like Larry pointed out in iPhoto's General Preferences pane:
    Click to view full size
    OT

  • [svn:fx-trunk] 5019: ASDoc updates to indicate that some Halo containers do not work with the Spark equiv (ControlBar does not work with Spark Panel/ AppControlBar does not work with Spark Application), and indicate that Canvas, Box, Tile, Panel have Spa

    Revision: 5019
    Author: [email protected]
    Date: 2009-02-19 13:17:21 -0800 (Thu, 19 Feb 2009)
    Log Message:
    ASDoc updates to indicate that some Halo containers do not work with the Spark equiv (ControlBar does not work with Spark Panel/AppControlBar does not work with Spark Application), and indicate that Canvas, Box, Tile, Panel have Spark equivs
    QE Notes: None
    Doc Notes: None
    Bugs: -
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/Accordion.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/ApplicationControlBar.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/Box.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/Canvas.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/ControlBar.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/HBox.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/Panel.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/TabNavigator.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/Tile.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/VBox.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/ViewStack.as

    Hi DST
    This is a great effort and gesture. thank you on behalf of all the newbies.
    PJ

  • How do you copy, for example I work with blue prints and I want to copy a section and copy into another new page?

    How do you copy, for example I work with blue prints and I want to copy a section and copy into another new page?

    Forgot to add that it would be an adjustment layer with some kind of mask on it already. The mask is uncentered when copy and pasted which throws it off.
    I guess the same question would go towards doing the same for an object. How to copy and paste it over to a new doc, keeping its position within the document? is this possible?

Maybe you are looking for

  • ITunes App icon displays incorrect number of updates

    Am currently running iTunes 11.03 but this issue has been around for several months. The App icon in iTunes indicates there are 38 updates available. After downloading them and syncing with my iPhone 3GS, the icon contiues to indicate 38 updates bein

  • GRC AC 10 on NW 73

    I understand that SAP does not support GRC AC 10 on NW 7.3 but on NW 7.02. However, I'd like to know if it is possible to install AC 10 on NW 7.3. Technically and in support, what issues can we come across while implementing on NW 7.3 ?

  • Greek symbols in plot legend

    Hi, I'd like to solve the following problem.  Firstly I know I can use Greek symbols in strings in LabVIEW with the system font but these then revert back to their English/ASCII counterparts when I try to use them in a graph - please see the attached

  • Node mapping condition

    Hello experts There is a mapping requiremnt and i don't quite know how to achieve it. Hope to get some hints on how to do it. I have a source file <line>     unbounded     <field1>     <filed2>     <field3> </Line> My taget is Idoc <e1xmbh>     <e1mb

  • WRT160 wireless network / zyxel modem problem

    Hi All, I want to ask some help with this one. I have a pc (vista) wireless connected to the WRT160 router. This router is connected to my ADSL-connection with a Zyxel modem. Everything by the book. Unfortunatly I can't get on the internet. If I conn