3D settings and actions

How do I include 3D panel settings into my actions? I'm trying to batch save some file with 3D layers from anaglyph to interlaced view.

Hi,
You can save actions that will change the view, but there are some serious pitfalls. Depending on the source 3D layer, you may end up changing more than just the stereo view because it appears to record a broad range of camera settings.
You may need to go the scripting route, but you'll have to use the ScriptLIstener plug-in because these properties weren't added to the Ps CS6 DOM. I need to see how ugly the ScriptListener output is for a simple stereo view change.
For starters, are you working with stereoscopic images or 3D layers? If it is 3D layers, then will they share camera settings? I've only tried so far with a stereoscopic image, using a saved action to change it's view. For that case:
1) open the stereo file and go to the Properties panel
2) set the Type: to the view you want recorded (Lenticular for interlacing)
3) now create a new action and start recording
4) go to the Properties panel again and change either the Distance or Depth value to something besides its current value (then set it back if you want the default values)
5) stop the recording
Now you should be able to run that action and have a stereo image which opens to anaglyph view get changed to viewing as Lenticular. You'll notice that the Properties panel doesn't refresh to display the Lenticular settings after running the action. In order to refresh, you can collapse and expand the panel.
regards,
steve

Similar Messages

  • I accidently chose to reset my settings and don't know how to restore it to where I had it before.  It is walking me through instuctions like I have a new ipad but I just want to restore it back to where it was.  Is there anything I can do or do I have to

    I accidently chose to reset my settings and don't know how to restore it to before.  I was trying to get rid of something and resetting the settings would solve problem but I have just made everything worse.  Can anyone help me?

    You can download a complete iPad User Guide here: http://manuals.info.apple.com/en/ipad_user_guide.pdf
    Also, Good Instructions http://www.tcgeeks.com/how-to-use-ipad-2/
    Apple - iPad - Guided Tours
    http://www.apple.com/ipad/videos/
    Watch the videos see all the amazing iPad apps in action. Learn how to use FaceTime, Mail, Safari, Videos, Maps, iBooks, App Store, and more.
    How to - Articles & User Guides & Tutorials
    http://www.iphone-mac.com/index.php/Index/howto/id/4/type/select
    iPad How-Tos  http://ipod.about.com/lr/ipad_how-tos/903396/1/
    You can download this guide to your iPad.
    iPad User Guide for iOS 5
    http://itunes.apple.com/us/book/ipad-user-guide-for-ios-5/id470308101?mt=11
     Cheers, Tom

  • How can I parse GPO settings and get the GPOApplyOrder?

    I have created a script that will search all GPO's in the domain and parse only those which have Drive Map settings and writes the information to a .csv file.  I have tried to figure out a way to get the GPOApplyOrder to no avail.  The closest
    I have come to any sort of reasonable output is
    "@{GPOSettingOrder=}", which is better than the nothing I had been getting.  I think it would be really helpful if I could sort on the appy order so I could see the flow of the applied settings.  Here is what I have.
    # ==============================================================================================
    # NAME: GetGPO_DriveMappings.ps1
    # AUTHOR: Mike
    # DATE: 6/17/2014
    # Updated: 7/29/2014
    # COMMENT: This script will get all the GPO's in the domain. It will parse only the GPO's that have drive map settings.
    # The results are written to GetGPO_DriveMappings.csv
    # This script is written to be run from the domain that the GPO(s) is in.
    # NOTE: The script will not perform any group provisioning.
    # ==============================================================================================
    # set Variables and load assemblies
    ImportSystemModules
    Import-Module GroupPolicy
    [void][System.Reflection.Assembly]::LoadWithPartialName('Microsoft.VisualBasic')
    $ScriptPath = "R:\Procedural Instructions\Scripts\Get AD Object Info"
    # Get drive map settings from all GPOs.
    Function Get-DriveMappings
    # File listing the drive mappings via GPO.
    $ExportFile = "GetGPO_DriveMappings.csv"
    # Creates .csv file for logging.
    $Header = "GPO Name,Drive Letter,Action,Apply Order,Drive Path,Group,OU,User"
    Set-Content -Path $ScriptPath\$ExportFile -Value $Header
    $GPO = Get-GPO -All
    ForEach ($Policy in $GPO)
    $GPOID = $Policy.Id
    $GPODom = $Policy.DomainName
    $GPODisp = $Policy.DisplayName
    If (Test-Path "\\$($GPODom)\SYSVOL\$($GPODom)\Policies\{$($GPOID)}\User\Preferences\Drives\Drives.xml")
    [xml]$DriveXML = Get-Content "\\$($GPODom)\SYSVOL\$($GPODom)\Policies\{$($GPOID)}\User\Preferences\Drives\Drives.xml"
    ForEach ( $MapDrive in $DriveXML.Drives.Drive )
    $GPOName = $GPODisp
    $DriveLetter = $MapDrive.Properties.Letter + ":"
    $DrivePath = $MapDrive.Properties.Path
    $DriveAction = $MapDrive.Properties.action.Replace("U","Update").Replace("C","Create").Replace("D","Delete").Replace("R","Replace")
    $GPOApplyOrder = $MapDrive | Select GPOSettingOrder
    $Filters = $MapDrive.Filters
    $FilterOrgUnit = $null
    $FilterGroup = $null
    $FilterUser = $null
    ForEach ($FilterGroup in $Filters.FilterGroup)
    $FilterGroupName = $FilterGroup.Name
    ForEach ($FilterOrgUnit in $Filters.FilterOrgUnit)
    $FilterOrgUnitName = $FilterOrgUnit.Name
    $FilterOrgUnitName = $FilterOrgUnitName -Replace (",",";")
    ForEach ($FilterUser in $Filters.FilterUser)
    $FilterUserName = $FilterUser.Name
    $ExportText = "$GPOName,$DriveLetter,$DriveAction,$GPOApplyOrder,$DrivePath,$FilterGroupName,$FilterOrgUnitName,$FilterUserName"
    Add-Content -Path $ScriptPath\$ExportFile -value $ExportText
    # --End of Function: Get-DriveMappings--------------------------
    # Notifying that the scripted finished.
    Function Script-Finished
    [System.Reflection.Assembly]::LoadWithPartialName(“System.Windows.Forms”)
    [Windows.Forms.MessageBox]::Show(“Script completed successfully”,"GetGPO_DriveMappings.ps", [Windows.Forms.MessageBoxButtons]::OK, [Windows.Forms.MessageBoxIcon]::Information)
    # --End of Function: Script-Finished--------------------------
    # Main Code:
    # Execute the functions
    $ErrorActionPreference="SilentlyContinue"
    Get-DriveMappings
    Script-Finished
    $ErrorActionPreference="Stop"
    Thanks to all in advance.

    I am looking for the order in which the drive map settings are applied. Truly the GPOSettingOrder value. I guess was thinking that it was the order that the drives were mapped so that is what
    I named the variable. In the middle of it all it made sense, now with your question, from the outside looking in, it doesn't. My apologies.
    -<ExtensionData>
    -<Extension xsi:type="q3:DriveMapSettings" xmlns:q3="http://www.microsoft.com/GroupPolicy/Settings/DriveMaps">
    -<q3:DriveMapSettings clsid="{8FDDCC1A-0C3C-43cd-A6B4-71A6DF20DA8C}">
    -<q3:Drive clsid="{935D1B74-9CB8-4e3c-9914-7DD559B7A417}" bypassErrors="1" uid="{B7F4229B-9A38-4A52-A987-7FB0CA53BF26}" changed="2013-11-19 18:03:50" image="3" status="P:" name="P:">
    <q3:GPOSettingOrder>1</q3:GPOSettingOrder>
    <q3:Properties letter="P" useLetter="1" persistent="1" label="" path="\\---------------------\APPS" userName="" allDrives="NOCHANGE" thisDrive="NOCHANGE" action="D"/>
    -<q3:Filters>
    <q3:FilterOrgUnit name="OU=---------------,DC=com" directMember="0" userContext="1" not="0" bool="AND"/>
    <q3:FilterOrgUnit name="OU=---------------,DC=com" directMember="0" userContext="1" not="0" bool="OR"/>
    <q3:FilterOrgUnit name="OU=---------------,DC=com" directMember="0" userContext="1" not="0" bool="OR"/>
    <q3:FilterOrgUnit name="OU=---------------,DC=com" directMember="0" userContext="1" not="0" bool="OR"/>
    <q3:FilterOrgUnit name="OU=---------------,DC=com" directMember="0" userContext="1" not="0" bool="OR"/>
    <q3:FilterOrgUnit name="OU=---------------,DC=com" directMember="0" userContext="1" not="0" bool="OR"/>
    </q3:Filters>
    </q3:Drive>

  • My iPhone 4 has recently started to flicker. I've changed the brightness settings and for a short period of time it was back to normal, but now it is much worse! What am I to do?

    Three days ago I was trying to take a picture, but I couldn't see what I was taking because of the flickering white lines that covered the screen. But when I looked at the image after taking it, it was perfectly fine. So I knew it wasn't the camera playing up. The next day my phone wouldn't allow me to view images without the lines appearing. The following day I changed my brightness settings, and it went back to normal. But now it is much worse. No matter what I try to do the flickering lines are all over the screen! I don't know what to do. I would appreciate any help, thank you!
    These images don't really show the extent of the flickering, but it may give you an idea

    I'm not a fan of DFU mode because I've never seen it recommended by Apple.
    First, try a system reset.  It cures many ills and it's quick, easy and harmless...
    Hold down the on/off switch and the Home button simultaneously until you see the Apple logo.  Ignore the "Slide to power off" text if it appears.  You will not lose any apps, data, music, movies, settings, etc.
    If the Reset doesn't work, try a Restore.  Note that it's nowhere near as quick as a Reset.  Connect via cable to the computer that you use for sync.  From iTunes, select the iPad/iPod and then select the Summary tab.  Follow directions for Restore and be sure to say "yes" to the backup.  You will be warned that all data (apps, music, movies, etc.) will be erased but, as the Restore finishes, you will be asked if you wish the contents of the backup to be copied to the iPad/iPod.  Again, say "yes."
    At the end of the basic Restore, you will be asked if you wish to sync the iPad/iPod.  As before, say "yes."  Note that that sync selection will disappear and the Restore will end if you do not respond within a reasonable time.  If that happens, only the apps that are part of the IOS will appear on your device.  Corrective action is simple -  choose manual "Sync" from the bottom right of iTunes.
    If you're unable to do the Restore, go into Recovery Mode per the instructions here.

  • How to configure Follow up and Actions in ICWeb Client.?

    Hi Experts,
    Please guide me to configure Followup and actions in IC web client.
    Regards,
    Sheetal

    Hi ,
    follow this
    Actions
    IMG>CRM>Basic functions>Actions>Actions in transaction>chnage actions and conditions>define action Profile --> action definition
    Maintain action settings
    Partner dependency
    Processing Type-->form name ->reminder mail say
                                Class ->CL_DOC_PROCESSING_CRM_ORDER
                                Method ->CRM_ORDER_EXEC_SMART_FORM
    Define condtions
    Schedule and start conditions are to be maintained if any
    This action profile needs to be added to your transaction type .
    Aftre this check if the action is visible in your transaction online .
    This transaction should be the same as your Business transaction profile in ICWC
    Hope this helps
    Let me know if still stuck
    Cheers!

  • Settings button (action) is on the left had side of the Cellular Data is Turned Off notification message put up while the OK button is present on the right hand side of the notification

    The defualt notification message put up when launching iTunes on iPhone devices show that Cellular Data is Turned Off message is put up with Settings and OK button.
    This seems to be inconsistent with the default 'Cancel' and 'Action' buttons in other notification messages from Apple.
    Is it fine to consider the OK button first (left) and Settings(right) button next in the Cellular Data is Turned Off error message in the apps so that it is in line with the apple guidelines??
    Please help with this.
    Thanks you so much.

    Try the basics from the manual.  Restart, reset, restore.

  • Buttons and Action script 3

    I have purchased Flash CS3 and have created a small
    animation. I would like the user to press the button in order for
    the animation to play. With the previouse version of flash I would
    drag the button onto the stage open the action script window and
    start entering the script e.g. on(release){gotoandPlay(5);}
    However with the new version I cannot write scripts for the
    buttons.... I am confused or am I missing something? Please help me
    out.

    you're missing actionscript3. and if you don't care to learn
    and use it, just use the actionscript2 publish settings and use
    actionscript2 coding in your projects.

  • Appraiser Authorization Issue (Objective Settings and Appraisals)

    Hello!
    We are currently using Objective Settings and Appraisals for our
    performance appraisals. ESS and MSS is also used during the process. We
    do not use structural authorizations either.
    Authorizations work fine for the vast majority of employees. However, we have an issue with some of our Human Resources users. For his/her ID they have authorization to certain personnel areas. However, his/her appraiser is in a personnel area they do not have authorization for. As a result, the appraisal does not show up when the user access ESS to work on their appraisal.
    For example we have an HR user who has access to information in
    personnel area 1081. However, her appraiser/manager is actually in 2054. As
    a result when she accesses her appraisal it says no entries exist.
    One solution we tried was selecting the 'No Authorization Check for Appraiser' on the
    template. With this selected, the appraisal shows up with the personnel
    number of the appraiser on the listing. When the appraisal is accessed
    and the user tries to perform an action, the following error pops up stating the
    appraisee person is not allowed and it has the appraiser number within
    the error message.
    Currently, we have the HR employee using a different ID for ESS that allows the
    user to access the appraisal. Is there anything standard that will
    allow the user to view the appraisal without using a different ID?

    Bump

  • PLM7.02: Status & Release Management/ Status and Action Management

    Hello,
                    I´d like to know if anybody worked with Status & Release Management. And has some example to how we can customize: SAM (Status and Action Management) in “Define Status Scheme” transaction.
                    How it´s works the relationship with: Status: Attributes, Status: Field values, Scheme Definition, Attributes: Definition.
                    I´ll appreciated if you could give me a simple example of this functionality.
                    Thanks in advance.
                    Best Regards from Brazil.
                    Rodrigo Arai

    Hi Rodrigo,
    in a nutshell:
    - you can define status network based on objects (w.g. material)
    - Define Attributes: you can define attributes like DELETION_ALLOWED or LOCKED_FOR_CHANGE and you can implement preconditions in custom classes when should it happen
    - Define Status Field: you can define some fields which are related to the status. e.g. in recipe management RCP_USAGE
    - Status: you can define the different statuses (e.g. in process, completed..) with attributes
    - Scheme Definition: you can define the logic between statuses. E.g. you would like to swith from status In Process to Completed and from New to In Process. Then switching from New to Completed is not possible for the user.
    - Subobject Type Scheme only applied if you have subobjects
    here you can find the customizing documentation, there are some examples as well:
    Define Status Scheme
    Use
    In this Customizing activity, you define statuses and status schemes for object types and corresponding attributes.
    For each status, you can define which attributes are allowed to be set for an object with this status assigned.
    The status scheme defines the initial status and the possible transitions from one status to another.
    Activities
    You define status schemes as follows:
    1. Select the required object type and enter the following:
    a) An identifier
    b) An object type class (Note: this class should implement the interface class)
    c) A subobject type search help
    The search help provides a list of all possible subobject types. This feature enhances the usability while  maintaining status schemes at subobject-type level.
    d) If the
    Status
    tab page shall be visible on the PLM Web UI, select the
    Status Tab
    checkbox
    Status and action management is a reusable object. It has been modeled as a dependent object. The prerequisites to enable status and action management for any new objects are:
    Add the Status and Action Management tab page on the UI.
    Enable the Status Tab checkbox in this Customizing activity.
    2. Select the required object type and define the following attributes for it:
    a) An object type
    b) An attribute identifier
    c) An attribute description
    d) An attribute type
    e) Select a precondition class (Note: This class should implement the '/PLMB/IF_SAM_PRECONDITION' interface)
    3. Define the technical status field name.
    When you change the object status, the system updates the technical status field names to the new values made in these settings.
    4. Select object type and define corresponding statuses.
    a) Select the status and define the corresponding object type, an identifier, description, and status icon.
    Note:
    You cannot define new statuses for materials and material BOMs. For these objects, all values should be transferred from the back-end system.
    You can import the status values from the back-end system as follows:
    b) Select the object type that represents a material or a MatBOM.
    c) Select
    Status
    in the dialog structure.
    d) Choose the
    New Entries
    pushbutton.
    e) Choose the
    Import Status
    pushbutton.
    Note
    The system imports the following status values into SAM:
    For material: the
    X-plant matl status
    (cross-plant material status)
    For MatBOM: the header status
    Although you cannot change the imported value for a material or a MatBOM, you can change its name and description to conform to SAM terminology.
    You can differentiate between the following cases for objects whose status values are imported from the back-end system:
    The object was not created on the PLM Web UI, but in the back-end system; no SAM status scheme or status was assigned, but a status value was set in the back-end system.
    If you assign a SAM status scheme to this object later on that contains the equivalent imported status values, the SAM status value is set accordingly, even if any precondition check results of the SAM status scheme may exist.
    The object was created in the back-end system or on the Web UI and a SAM status scheme is assigned to the object on the PLM Web UI.
    If the corresponding status value is changed in the back-end system, then existing SAM preconditions for this status transition and allowed status transitions are checked. If the preconditions are not fulfilled, a message is raised and the new status cannot be saved.
    5. Specify which attributes are allowed for each object type when the chosen status is set.
    a) Select a status and open the
    Attributes
    screen.
    b) Choose an object type.
    c) Choose an attribute.
    6. Define whether values from other technical fields are affected by setting this status.
    a) Select a status and open the
    Field Values
    screen.
    b) Select an object type.
    c) Select a technical field name.
    7. Specify the status scheme. The status scheme defines the initial status and status transition for the object type. For example, below is a list of standard status schemes defined for iPPE object types.
    Assembly Header - PLM_PPEAH
    Assembly Item - PLM_PPEAI
    Product Item Variant - PLM_PPEPIV
    Product Variant - PLM_PPEPV
    You can also create schemes for the object type as follows:
    a) Specify an identifier and description for the status scheme and set one of the statuses defined above as the initial status.
    b) Select the status scheme and open the
    Transitions
    screen. Enter all possible status transitions by specifying the source (
    Status From
    ) and target status (
    Status To
    c) Select the
    Long Text
    checkbox if you want the system to open the long text editor on the
    Status
    tab in the PLM Web UI. You can use the long text editor to create notes for this transition.
    8. Define the scheme at subobject-type level by entering following parameters:
    a) Object type
    b) Subobject type (You can choose from the list of subobject types you have specified when defining the search help in step 1)
    Alternatively, you can define a default status scheme that is automatically displayed on the
    Status
    tab.
    The following statuses are included in the standard delivery:
    10 -  In Work
    20 - For Approval
    LINKED_DIR
    LINKED_MAT
    LOCKED_FOR_CHANGE
    REPLACE_PH_ASSEMBLY (only in the PLM_PPEAI assembly item and the PLM_PPEPIV product item variant)
    30 - Released For Planning
    LOCKED_FOR_CHANGE
    40 - Released
    RELEASED
    SUB_ITEM_STATUS
    The following status transitions are possible:
    FROM
    TO
    Long Text checkbox (dialog box for notes)
    10
    20
    20
    30
    30
    40
    20
    40
    20
    10
    X
    30
    10
    X
    40
    10
    X
    More on SAP help:
    Status and Action Management on the Web UI - SAP Library
    Best regards
    Tamas

  • SIU "Apply system configuration settings" and Connect computers to directory servers

    Good morning/Afternoon/Evening everyone.
    I've currently been studying/researching imaging with OSX 10.9 server, using the SIU.  As I'm going through it, one option that is appealing to me, is the "COnnect computers to directory servers:" option under the Apply System configuration settings workflow action.
    The issue is that when click on the + to add a server, it only comes up with Localhost (127.0.0.1) and won't give me the option to point to my OD server for binding.  Is there a way to change this, or some other option I am missing?
    Also, I'm at a loss to find any setting in Profile manager that will enable/turn on "Remote management" for ARD and SSH.

    Thank you for that link, it is insightful.  So let me throw this into the mix:
    When it comes to ARD, we have to have a local user on the local machine, in order to login, correct? It won't allow us to have OD authenticated admins/users login to the client machine. Is that correct?
    If that is the scenario, then how are we to lock down a situation where we are imaging multiple macs and have the potential to have admins changing or leaving, and a need to reset local machine admin credentials. Obviously we aren't going to do this individually per machine. This would also need to be done via scripting (or ARD CLI to our enterprise), but then each image needs to be updated or all new machines need to be touched after image/install.
    Am I thinking of this the correct way?
    Also, is it possible to create an image that has no local user at all, or is that just nonsense?

  • Recovering settings and files from an external hard drive

    When I turned on my computer this morning, I found it had crashed. I did a systems recovery to my external hard drive. It's now to its "out of the box settings," and I have a folder on my desktop called "shortcut to system recovery files."
    How do I put those settings and files back into action so I get things like Microsoft Word, GIMP, and iTunes back? It's all on my computer, technically, but I don't know how to get the icons on my desktop, etc.
    HP Pavilion dv6 Notebook PC, XG740UA#ABA

    The backup only saves files.photos and possibly program settings. You will have to reinstall Gimp and iTunes. If your music,photos are in the folder move them to your Documents folder in the proper folder..ie, My Music, My Pictures.
    ******Clicking the Thumbs-Up button is a way to say -Thanks!.******
    **Click Accept as Solution on a Reply that solves your issue to help others**

  • My mac book pro isn't letting out any sound. i went to the settings and it said that  have no output source. it was working fine earlier.

    i went to the settings and it said that  have no output source. it was working fine earlier.
    it says this :

    nicolejgoulet wrote:
    its fine with the headphones in
    Valuable information you add.
    This is your problem.  The mechanical switch is stuck.. Do you see a red light when you look in there? SOme do some don't.
    You need to use the headphone jack several times in and outt with the intention of flipping the switch.
    Some use a a non metal piece to flip the switch manually-  I would recommend caution here.
    Otherwise your best bet
    Genius reservation http://www.apple.com/retail/geniusbar/
    on-line https://getsupport.apple.com/GetproductgroupList.action
    check warranty https://selfsolve.apple.com/agreementWarrantyDynamic.do

  • HT1430 i recieved an ipod touch 2nd generation as a gift and they have reset it to factory settings and now its stuck on a screen showing an adaptor with itunes music symbol on it. I do not know where to go from here.

    I recieved an apple ipod touch 2nd generation as a gift and they have reset it to factory settings and now it is stuck on a screen with an adaptor showing with the itunes music symbol at the top of the screen.

    Restore...
    Connect via cable to the computer that you intend to use for sync.  From iTunes, select the iPad/iPod and then select the Summary tab.  Follow the on-screen directions for Restore and be sure to say "yes" to the backup.  You will be warned that all data (apps, music, movies, etc.) will be erased but, as the Restore finishes, you will be asked if you wish the contents of the backup to be copied to the iPad/iPod.  Again, say "yes."
    At the end of the basic Restore, you will be asked if you wish to sync the iPad/iPod.  As before, say "yes."  Note that that sync selection will disappear and the Restore will end if you do not respond within a reasonable time.  If that happens, only the apps that are part of the IOS will appear on your device.  Corrective action is simple -  choose manual "Sync" from the bottom right of iTunes.
    If you're unable to do the Restore and you have IOS-6 or lower, go into Recovery Mode per the instructions here.  Also, if you have IOS-7, read this.

  • Can not receive Mac mail -error Outlook cannot find the server. Verify the server information is entered correctly in the Account Settings, and that your DNS settings in the Network pane of System Preferences are correct.  Account name: "MacMail"

    Can not receive Mac mail -error Outlook cannot find the server. Verify the server information is entered correctly in the Account Settings, and that your DNS settings in the Network pane of System Preferences are correct.  Account name: "MacMail"
    What are the correct mail account settings and more importantly the correct DNS settings
    Thank you for any help you may be able to provide
    Cheers
    Chris (iMac i7)

    Do not delete the old account yet. sign up for an iCloud account if you haven't.
    I understand .mac mail will still come through. Do not delete the old account yet.
    You cannot use .mac or MobileMe as type of Account, you have to choose IMAP when setting up, otherwise Mail is hard coded to change imap.mail.me.com to mail.me.com & smtp.mail.me.com to smtp.me.com, no matter what you try to enter.
    iCloud Mail setup, do not choose .mac or MobileMe as type, but choose IMAP...
    On second step where it asks "Description", it has to be a unique name, but you can still use your email address.
    IMAP (Incoming Mail Server) information:
              •          Server name: imap.mail.me.com
              •          SSL Required: Yes
              •          Port: 993
              •          Username: [email protected] (use your @me.com address from your iCloud account)
              •          Password: Your iCloud password
    SMTP (outgoing mail server) information:
              •          Server name: smtp.mail.me.com
              •          SSL Required: Yes
              •          Port: 587
              •          SMTP Authentication Required: Yes
              •          Username: [email protected] (use your @me.com address from your iCloud account)
              •          Password: Your iCloud password
    Also, you must upgrade your password to meet the new criteria:  8 characters, including upper and lower case and numbers.  If you have an older password that does not meet these criteria, when you try to setup mail on your mac, using all of the IMAP criteria listed above, it will still give a server error message.  Go to   http://appleid.apple.com         then follow directions to change your password, then go back to setting up your mail using the IMAP instructions above.
    Thanks to dpepper...
    https://discussions.apple.com/thread/3867171?tstart=0

  • IPhone 5s doesn't ring and goes directly to voice mail. Do not disturb is disabled. Have reset network settings and did a hard reset.  What am I missing?

    iPhone 5s doesn't ring and goes directly to voice mail. Do not disturb is disabled. Have reset network settings and did a hard reset.  What am I missing?

    Call your phone carrier - that's a problem for them to resolve.

Maybe you are looking for

  • Fault handling in osb using publish

    Hi all, i am new to OSB, every thing is working fine. i will explain how we design the basically we have inbound and outbound. call inbound as 'aaaa' and outbound as "bbbb". we have created the proxy and BS which will communicate with EBS, BAM and B2

  • PSD Template for Memorex DVD Labels?

    Got a great price on Memorex CD Label Refills, 120 pack, but I discovered the alignment on them is not vertical. Each label is in opposite corners. Is there a template for this someone knows of? If not, can you tell me how to get my existing pdf for

  • PM and QM integration

    I'm trying to integrate PM and QM modules. (I try implement inspection type  01 - Receiving insp. at GR for purchase order. The are some other way to integrate PM and QM ?) 1. I added QM in material master. 2. I assigned inspection type 01 to materia

  • Consignment info record issue

    hi friends, while  doing consignment , I am getting the folowing error "purchasing info record not found in pur organization 1000" I am not using  pur org 1000  and i maintained info record as per my pur org only. thanks raj

  • Can i set up my icloud account from my pc ?

    My iPod touch was stolen and I want to use "Find My iPod" I just spent the last 20 mins on the phone with Apple's customer service and they said there's nothing they can do to track my iPod because it's a "Privacy Issue" And they said that I never se