Cairngorm - ModuleViewLoader question?

Hello

Don't know if it's really a mistake...

I use the following to insert a module into a MXML file

< module: ModuleViewLoader width = "100%" height = "21".

moduleManager = "{counterpartySearchModule}".

skinClass = "com.adobe.cairngorm.module.ModuleViewLoaderSkin" > "

< module: loadPolicy >

< module: BasicLoadPolicy / >

< / module: loadPolicy >

< / module: ModuleViewLoader >

While it works well... at first when the module is about to load... I get a text saying 'Landing' and then 'Loading'... "and I can not understand why.

The module is basically a module of AutoComplete using AutoComplete of Hillel Coren library.

It is a behavior of Cairngorm Modules or is it something I need to study with AutoComplete of Hillel Coren library?

Thank you

I solved my problem

Landing and loading channels come from the ModuleViewLoaderSkin. If you do not want these you need to create your own.

Tags: Flex

Similar Questions

  • Are there separate Forums to post Cairngorm related questions

    Hello

    I'm practicing Flex with Java using Cairngorm, I'm some queries in Cairngorm, please let me know if I can post cairngorm questions here or is it all Forum planned for it?

    Thank you.

    Hi, here is the link for the cairngorm forums.

    http://forums.Adobe.com/community/opensource/Cairngorm

  • Question about ModelLocator in Cairngorm

    Hi all

    I just started using Cairngorm in my application. I did some sample applications to get a core of Cairngorm and the classes used terminology.

    Can an application built using Cairngorm cause multiple ModelLocators? as for some screens I want separate ModelLocators? Is this a bext practice when using Cairngorm?

    P.S. I want to use mutiple ModelLocators but they'll all be a singleton.

    Anyone can guide me please?

    Thanks and greetings

    ShiVik

    Hello

    Yes, you can use several ModelLocators in your application. Extend this class and that your class modellocator made-to-measure to meet your requirement.

    Make sure that they are used for different purposes.

    Best regards

    Rush me

  • Question framework Cairngorm abourt?

    Hello

    I don't understand why put us the following line in the homepage.

    < control: myController id = "controller" / >
    < id: Commercial Services = 'services' / >

    but no code in the homepage use the ID for the control and businesses.

    Thank you

    Mark

    These create references to your object of service.mxml and your application controller object using the cairngorm objects by raising events and execution of services.

    The service.mxml file contains all the CPP or web service config given as:

    ' URL =' http://localhost:8090/febatmon/XML/ControlNav.xml ' / >

    The appController object must extend the FrontController and is used as a central repository for the execution of event like this:

    SerializableAttribute public class AppController extends FrontController {}

    public static const LOAD_CONTROL_NAV_EVENT: String = "LOAD_CONTROL_NAV_EVENT";

    public void AppController() {}

    addCommand (AppController.LOAD_CONTROL_NAV_EVENT, ControlNavLoadCommand);
    }
    }

  • Cairngorm 3 with FlexSDK 4.5.1 lib compatibility

    What versions of library of parsley/Cairngorm 3 are compartible with FlexSDK 4.5.1?
    Parsley/Spicelib cares as much as I would like to ask the question on Spicefactory

    Forum, but it's stop in the last week or so. Someone knows why?

    Thank you

    All this should be compatible.

  • ModuleViewLoader - it loads modules in the default child application domains?

    Is the Cairngorm 3, 'ModuleViewLoader' load the modules in the areas of application by default, or we do our self like this:

    public void init (): void {}

    var childDomain:ApplicationDomain = new ApplicationDomainApplicationDomain. () currentDomain ( );

      modelLoader.applicationDomain = childDomain;
    }

    < module: ModuleViewLoader id = 'moduleLoader '.

    moduleId = "{moduleId}.

    moduleManager = "{moduleManager}.

    skinClass = "com.adobe.cairngorm.module.ModuleViewLoaderSkin"

    visible = "{This.visible} '"

    Width = "100%" height = "100%" >

    < module: loadPolicy >

    < module: BasicLoadPolicy / >

    < / module: loadPolicy >

    < / module: ModuleViewLoader >

    I think it's important to know what about unloading modules.

    Thank you

    Hi Adrien,.

    We follow the behavior of the Flex ModuleManager:

    • We use the applicationDomain supplied by the user when it is available
    • Otherwise, we create a void applicationDomain of the current domain.

    An excerpt from the ParsleyModuleInfoProxy

    private function createDefaultApplicationDomain(applicationDomain:ApplicationDomain):ApplicationDomain
            {
                // If an applicationDomain has not been specified and we have a module factory,
                // then create a child application domain from the application domain
                // this module factory is in.
                // This is a change in behavior so only do it for Flex 4 and newer
                // applications.
                var tempApplicationDomain:ApplicationDomain = applicationDomain; 
    
                if (tempApplicationDomain == null && moduleFactory)
                {
                    var currentDomain:ApplicationDomain = moduleFactory.info()["currentDomain"];
                    tempApplicationDomain = new ApplicationDomain(currentDomain);
                }
    
                return tempApplicationDomain;
            }    
    

    We will update the documentation to highlight the fact that sub ApplicationDomain is created by default.

    Thank you.

  • Help me complete my first Login of Cairngorm example.

    Hello

    I'm still fearing to make an application using Cairngorm. Help, please

    This will be my sketch of my Caringorm request.

    This will is a LoginExample where on a successful connection is displayed as WELCOME or INVALID CONNECTION in the case of a bad connection.

    Please go through my code:

    It's my hand mxml file


    <? XML version = "1.0" encoding = "utf-8"? >
    < mx:Application xmlns:controller = "uk.co.clockobj.cairngormdemo.controller. *" >
    < controller: AppController / >
    < mx:Script >

    user: UserDTO var = new UserDTO();
    public function login (): void
    {
    User.UserName = UNAMETI.text;
    User.Password = PASSTI.text;
    systemManager.dispatchEvent (LoginEvent.LOG_USER_IN, user);

    }
    < / mx:Script >
    < / mx:Application >

    It's my UserDTO object:

    package dto
    {
    [Bindable]
    [RemoteClass(alias="namespace.to.some.server.dto")]
    public class UserDTO
    {
    public var username: String;
    password public var: String;

    public void UserDTO()
    {
    }
    }
    }

    This is my controller class:

    controller package
    {
    SerializableAttribute public class AppController extends FrontController
    {
    public void AppController()
    {
    Super();
    initialiseCommands();
    }

    private void initialiseCommands(): void
    {
    addCommand (LOG_USER_IN, LogUserInCommand);
    }
    }
    }

    This is my class of the event:

    package events
    {
    import com.adobe.cairngorm.control.CairngormEvent;

    SerializableAttribute public class LoginEvent extends CairngormEvent
    {

    public static const var LOG_USER_IN:String = "LOG_USER_IN";

    the user public var: UserDTO

    public void LoginEvent (type: String, user: UserDTO, bubbles: Boolean = false, cancelable: Boolean = false)
    {
    Super (type, bubbles, cancelable);

    This.User = UserDTO;
    }

    }
    }

    This is my command class:

    package controls
    {
    public class LogUserInCommand implements ICommand, IResponder
    {

    Service myremoteservice;
    public void LogUserInCommand()
    {
    }

    override public function execute(event:CairngormEvent):void
    {

    myRemoteService = ServiceLocator.getInstance () .getRemoteObject ("docsServices");
    }

    public void result(data:Object):void
    {

    ModelLocator.getInstance (.welcome = property ResultEvent (data));

    }

    public void fault(info:Object):void
    {

    ModelLocator.getInstance (.invalid = property ResultEvent (data));


    }

    }
    }

    This is my ModelLocator class:

    package template
    {[Bindable]
    / public class ModelLocator implements IModelLocator
    {
    private static var _instance:ModelLocator;

    Public Shared function getInstance (): {ModelLocator}
    If (_instance == null) {}
    _instance = new ModelLocator();
    }
    return _instance;
    }

    public void ModelLocator()
    {
    If (_instance! = null)
    {
    throw (new Error ("class Singleton has already been instantiated"));
    } else
    {
    session = new SessionModel();
    }
    }

    the user public var: UserDTO

    public var welcome: String;
    public var invalid: String;

    }
    }


    I have my file services.mxml defined in connection with my java file:


    < mx:RemoteObject
    ID = "docsServices".
    destination = "ToRemote.

    source = "cairngormcf.com.cf.CairngormJava" > "
    < / mx:RemoteObject >

    my questions to what is above the code are:

    1. How can I call the FrontController of my connection function of the main Application under the container form.

    2. after sending my logon function event, who should listen to this event. (How to do here)

    3.
    3. after obtaining the DTO user details in my Java layer, I validate the data and I sends a string either valid or invalid connection Login as String, here's how my main Application gets it data?

    Please help me in all these things, really, it will be a great help.

    While waiting for the responses from the experts

    Thanks a lot for reading long code.

    Hi Kiran, this is your class in place of the stuff as mentioned in the classes below that it's

    or if you can change it yourself here I use the custom component and I import this component custom demand... so use custom component to send event cairngorm...

    the best practice is to create a display component, and then import this view in your application and which will reduce the file size of your application and file size of download... so if you have any problem using this code let me know

    company
    ------------
    1 MyServices
    ------------

    http://www.Adobe.com/2006/mxml '.
       
    xmlns:Cairngorm = "" com.adobe.Cairngorm.Business. * ">"
       
       
        <>
    destination = "user".
    ID = "userRO" >
           
       
       

    2 UserDelegate
    --------------
    business package
    {
    import com.adobe.cairngorm.business.ServiceLocator;
       
    Import mx.rpc.AsyncToken;
    Import mx.rpc.IResponder;
    Import mx.rpc.remoting.RemoteObject;
       
    import Vos. UserVO;
       
    public class UserDelegate
    {
           
    public var myServices:ServiceLocator;
           
    public void UserDelegate()
    {
    TODO: to implement the function
    myServices = ServiceLocator.getInstance ();
               
    }
           
    Create a function to communicate with the server here

    public void validateUser(userObj:UserVO,responder:IResponder):void {}
               
    Check out the service you want
    communicate the servicelocator
               
    var userRO:RemoteObject = myServices.getRemoteObject ("userRO");
    var resMsg:AsyncToken = userRO.validateUser (userObj);
               
    join the answering machine
               
    resMsg.addResponder (responder);
               
               
    }

    }
    }

    LoginCommand
    ------------
    package controls
    {
    import business. UserDelegate;
       
    import com.adobe.cairngorm.commands.ICommand;
    import com.adobe.cairngorm.control.CairngormEvent;
       
    How to import events. LoginEvent;
       
    Import model. MyModelLocator;
       
    Import mx.controls.Alert;
    Import mx.rpc.IResponder;
    Import mx.rpc.events.ResultEvent;
       
    import Vos. UserVO;

    public class LoginCommand implements ICommand, IResponder
    {
    public var myModel:MyModelLocator;
    public var userDelegate:UserDelegate;
           
    public void LoginCommand()
    {
    TODO: to implement the function
    This allows to manipulate data in the
    model
               
    myModel = MyModelLocator.getInstace ();
    }

    public void execute(event:CairngormEvent):void
    {
    TODO: to implement the function
    We will do our logic here
               
    var loginEvent:LoginEvent = event as LoginEvent;
    var userObj:UserVO = loginEvent.userDtl;
               
    / * If (userObj.userName == "[email protected]" &)
    {userObj.password == "naresh") "}
    do something
    myModel.userDtl = userObj;
    myModel.APP_STATE = "login";
                   
    } else {}
    do something else
    Alert.Show ("connection failed");
    }*/
               
    create the delegate user instance
               
    userDelegate = new UserDelegate();
    userDelegate.validateUser (userObj, this);
                
    }
           
    public void result(event:Object):void {}
               
    var resultEvent:ResultEvent = event as ResultEvent;
               
    {if(resultEvent.Result!=null)}

    myModel.userDtl = resultEvent.result as UserVO;
    myModel.APP_STATE = "login";
                
    } else {}
                   
    Alert.Show ("connection failed");
    }
               
    }
           
    public void fault(event:Object):void {}
               
    }
           
           
    }
    }

    LoginPanel
    ----------

    <>
    "xmlns:MX ="http://www.adobe.com/2006/mxml"
    title = "Login here" >
       
       
            How to import events. LoginEvent;
    import Vos. UserVO;
    Import model. MyModelLocator;
    Import mx.events.ValidationResultEvent;
               
    public void loginUser(event:MouseEvent):void {}
                   
    var emailValEvnt:ValidationResultEvent
    = emailVal.validate ();
    var pswdValEvnt:ValidationResultEvent
    = pswdVal.validate ();
                               
    If (emailValEvnt.type is ValidationResultEvent.VALID
    (& pswdValEvnt.type == ValidationResultEvent.VALID) {}
                       
    as the validation is made
    communicate the data on the server
                       
    the failure of the value object
    var userObj:UserVO = new UserVO();
    userObj.userName = userNameTI.text;
    userObj.password = passwordTI.text;
                       
    var loginEvent:LoginEvent =
    new LoginEvent (LoginEvent.LOGIN_EVENT, userObj);
    dispatches the event
    loginEvent.dispatch ();

    CairngormEventDispatcher.getInstance.dispatch (loginEvent);  //Import com.adobe.cairgorm.CairngormEventDispatcher CairngormEventDispathcer
    } else {}
    display error message
    this.errorString = 'Pleae enter valid details';
    }
                   
    }
               
    ]]>
       
       
    <>
    source = "{userNameTI}".
    property = "text".
    ID = "emailVal".
    required = "true".
    triggerEvent =""
    />

    <>
    source = "{passwordTI}".
    ID = "pswdVal".
    maxLength = "16".
    minLength = "6".
    property = "text".
    triggerEvent =""
    />


           

               
           
           
               
           

           
       
           
       

       

    MyFrontController
    -----------------
    controller package
    {
    import com.adobe.cairngorm.control.FrontController;
       
    How to import events. LoginEvent;
    import controls. LoginCommand;

    SerializableAttribute public class MyFrontController extends FrontController
    {
    public void MyFrontController()
    {
    Super();
    addCommand (LoginEvent.LOGIN_EVENT, LoginCommand);
               
    }
           
    }
    }

    LoginEvent
    -----------
    package events
    {
    import com.adobe.cairngorm.control.CairngormEvent;
       
    import flash.events.Event;
       
    import Vos. UserVO;

    SerializableAttribute public class LoginEvent extends CairngormEvent
    {
    public static const = "loginEvent"; LOGIN_EVENT:String
            
    public var userDtl:UserVO;
           
    public void LoginEvent (type: String, userObj:UserVO)
    {
    TODO: to implement the function
    Super (type);
    this.userDtl = userObj;
    }
           
    override public function clone (): Event {}
               
    return of new LoginEvent (type, userDtl);
    }
    }
    }

    MyModelLocator
    --------------
    package template
    {
    import com.adobe.cairngorm.CairngormError;
    import com.adobe.cairngorm.model.IModelLocator;
       
    import Vos. UserVO;
       
    [Bindable]
    / public class MyModelLocator implements IModelLocator
    {
    public static var instance: MyModelLocator;
           
    public void MyModelLocator(enforcer:SingletonEnforcer)
    {
    TODO: to implement the function
    {if(Enforcer==null)}
                   
    trace ("you cannot create more than one instance of ModelLocator");
    throw new CairngormError ("initializing Multiple");
                                   
    }
               
    }
           
    public static function getInstace (): {MyModelLocator}
               
    {if(instance==null)}
    create a new instance
    Return it
    instance = new MyModelLocator (new SingletonEnforcer());
    return instance;

    } else {}
    return the existing instance
    return instance;
    }
               
    }
           
    Declare the Variables here
    Don't forget to initialize them
           
    contains the user data
    public var userDtl:UserVO = new UserVO();
    check the status of the application
    public var APP_STATE:String ="";
           
    }
    }
    Class SingletonEnforcer {}

    UserVO
    -------
    package vo
    {
    [Bindable]
    [RemoteClass(alias="com.test.lcds.vo.UserVO")]
    public class UserVO
    {
    public var userName:String;
    password public var: String;
           
    public void UserVO()
    {
    }

    }
    }

    Cairngorm2
    -----------

    <>
    "xmlns:MX ="http://www.adobe.com/2006/mxml"
    layout = "absolute".
    xmlns:comp = "comp.*.
    xmlns:control = "controller.*".
    xmlns:vo = "vo.*".
    xmlns:business = "mentoring."
    Initialize = "initApp () '"
    currentState = "{myModel.APP_STATE}" > "
       
       
       
       
       
       
       
       
       
       
            Import model. MyModelLocator;
               
    [Bindable]
    public var myModel:MyModelLocator;
               
    public function initApp (): void {}
                   
    myModel = MyModelLocator.getInstace ();
                   
                   
    }
               
    ]]>
       

       
           
               
               
                   
    text = fontWeight "Congratulation {myModel.userDtl.userName}" = "bold" fontSize = "18" / >
               

           

       

       
        <>
    horizontalCenter = "0".
    Red = "0" id = "loginpanel1" >
           
       
       

    Place these classes in relavent ane packages try it... you must implement service locator in the pakage delegate as well as the UserDelegate class

  • A query regarding Cairngorm events

    I'm new to cairngorm.
    I'm designing a StudentApplication using Flex with Cairngorm.
    I am struck at writing a Cairngorm event class. Please guide me

    Assume that this StudentApplication is suppourting Create, Delete, Update, read operations.

    My question is what I have to write 4 event classes, every representative of this operation.

    Or is it possible to do so in an event class by taking 4 different constant Sring, each representing the appropriate Action.

    package com.control
    {
    import com.adobe.cairngorm.control.CairngormEvent;

    public class CreateEvent extends CairngormEvent
    {


    }
    public static const EVENT_CREATE_STUDENT: String = "EVENT_CREATE_STUDENT";
    }

    My question is what I need to do Create, Update, Delete, reading for all events
    Event of my Application?

    Please guide me.

    Thanks in advance.

    Hi Kiran,

    You can write all the events in a class single say StudentEvent class and perform the appropriate action according to the type of event (delete, update, add... etc) but if you do you need to process the result returned by the remote service based on the type of event in command later and write your logic.

    for ex:

    In your layer (StudentCommand) command in the results... Manager function you need to treat them that way...

    public function result (data: Object): void

    {

    If (data! = null)

    {

    If (_eventtype is "deletestudent")

    {

    Write you the logic to remove the student

    }

    ElseIf (_eventtype == "createstudent")

    {

    Write logic to create the student

    }

    ElseIf (_eventtype == "updatestudent")

    {

    Write logic to update students

    }

    on the other

    {

    Write you logic to read the details of the student

    }

    }

    }

    deletestudent, createstudent, updatestudent and readsrstudent are the event four guys who you here as of constant static in StudentEventclass.

    If you want to write event 4 classes for all then also its good so that you can have the class wrapper for all events.

    If you want to have custom and reduces the code, then use the single event class. Its based on your requirement...

    Thank you

    Jean Claude Chari

  • Cairngorm

    Hello
    I use Cairngorm and I'm stuck in the 'question':

    I have a connection Panel, when I click on the connection button distributes my CairngormEvent and my LoginCommand Gets the result. Well now I have a positive connection and how to request/view go to the next step, because what I learned about Cairngorm are: add data to data in The ModelLocator access and views to the ML.

    And now? What should I do? What is 'correct' to the notion of Cairngorm?

    Thank you
    Peter

    Baking sheet,

    Thanks for your reply. It is a good solution. ! What I did here was the Boolean, isLogedIn, adding to my ModelLocator, and use the BindingUtils class to bind my opinion to this var.

    Kind regards
    Peter

  • How to use generated code of &amp; quot; Import Web Services &amp; quot; with Cairngorm framework

    I recently downloaded Flex Builder 3 beta 2 and try the wizard that allows you to import web services. The code that is automatically generated makes it so simple to consume web services using the types of objects defined in the WSDL file. Is no longer the developer don't need decode the XML load! The only problem I have is how you integrate the code automatically generated with the Cairngorm framework? This seems to be a huge issue for those who would exploit Cairngorm and code the proxy generated automatically in the same project (like me).

    Here are the problems I see so far.

    (1) how to configure the service generated class to work with the Cairngorm service locator? The service constructor only accepts a 'destination displays LCD chain' which means that you must use life cycle data services. Unfortunately, the project that I am in the process of renovation currently uses a Web service and does not use data services. All I really need to do is change the URL of the endpoint (that is, from the local level to a development server). This issue is noted in the bug https://bugs.adobe.com/jira/browse/FB-8456. I think there is a way to put the endpointURI in the Services.mxml file.
    (2) even if I come with a hack autour #1, I do not get a reminder for my same IResponder if I save it immediately after the method call. I can record and function of earphone within my business delegate and receive the reminder, but my command object that implements IResponder, did not call back even if it is registered. From what I've read in the ASDocs should be, but this isn't for me!

    These are the questions that I have observed in 3 hours to play with this. I hope this makes sense. I would like to integrate automatically generated in Cairngorm web service proxies, but I don't see a right lane to the front without redesign of Cairngorm. Has anyone else encountered this problem? If so, do you have any ideas on how to proceed? Any help is appreciated.

    Hi guys,.

    Now we focus on the generated code the right way and try to make it work for as many cases as possible. As soon as we receive some time we will try to see what is the best way to use Cairngrom.

    In the meantime, if you find a way or a great idea do not hesitate to post here.

    Thank you
    Cristian

  • Cairngorm makes too rely on / promote Singletons?

    It seems to me that Cairngorm too promotes the use of Singleton classes for application development, which can cause serious headaches down the road.

    Two of their main design patterns are the CairngormEventDispatcher/CairgormEvent and the ModelLocator, as well as the FrontController. I came across a number of cases where the original design of an application was assumed to be independent, when in fact a little forethought would have made it clear that, ultimately, it is a built-in custom component more than anything else. Be able to use autonomous was useful, but in general it would be integrated as a module into another Flex application.

    The problem comes when you need to add a second instance of the Cairngorm application. I have a widget creation and a reading widget, both built from code shared since the creation widget also includes the reading widget. So now I want to integrate the TWO creating a widget AND a widget of reading in my application. Indeed, like any other component (think combobox), I might want to include several widgets reading, each showing some users personal creation, all on the same page.

    However, because my reading widget using Cairngorm, I'm practically no chance with the current code base. Assuming that I cram several widgets reading in a certain way (after all the question of departure/FrontController service) I have no way to control which of my multiple widgets responds when I hit the play button in one of them, because they are all listening for this event. Similarly my boss ModelLocator completely breaks down, since all widgets reading will share the same ModelLocator.

    Is it just me? Am I missing something? Or is the original designer of this application need to know better how he would serve a year later? What is a breakdown of the total Cairngorm design patterns?

    Yes, it looks like Cairngorm was not may not be the best choice for the 'widgets' you. I guess you have a point they should clarify better when you are not using Cairngorm. I have never tried to use when developing a component custom (or whatever it is) it's going to be added in a complete application.

    Reading various articles, I (IIRC) feel like the guys from Farata Systems (perhaps Yakov) seem not to be very keen on frameworks (Cairngorm is called a "mictoarchitecture"), but rather of focus simply on strong "design component" and using the Flex event (i.e. dispatchEvent()) system. I certainly appreciate this attitude of questioning because too often inside, it seems that people seem to accept 'best practices' and 'how it is 'supposed' to do' as bible regardless of whether she is really an added value, or add unnecessary complexity. I think that the answer to everything, always, 'it depends' and we have to use our common sense and intelligence to understand that we really gain anything by doing something 'standard' which has questionable value.

    I used the Cairngorm architecture but not meet your problem, maybe because I use it only to a "demand" level, never intend to have the product of this project integrated in what either.

    http://ColdFusion.sys-con.com/read/479472_1.htm
    (Didn't read all this, or I forgot if I did it, just put it here in case something I said about others ' opinions was not completely accurate.)

  • iOS 10 people record problem/question

    Hello

    I have a couple of "faces" in the issue of people who are coming in white, but acknowledged same 'face' of many times.  Is anyway to update it for photo comes actually?  At a few faces, I don't know that facial recognition found since it is coming from white.

    Hi JohnP007,

    Congratulations on your iPhone 7 more running iOS 10! I understand that some of your faces in the album of people pull up as a draft and you want to refresh. You can try to use the steps below to fix the faces on the thumbnails in albums.

    Difficulty faces and names mixed-up

    If you notice that there is a photo of someone in a collection that is poorly identified, you can remove it.

    1. Tap the person you want to remove in the album of people > select.
    2. Type Show done face to emphasize his face in every photo.
    3. Press on each photo that is not the person.
    4. Type > not this person.

    Hide people

    You can hide the people or groups that you don't want in your album of people.

    1. Open the album people and press Select.
    2. Touch the people you don't want to see.
    3. Click Hide.

    If you want to see the people that you have hidden, press on show hidden people.

    People in the Photos on your iPhone, iPad or iPod touch

    This should be corrected without delay faces. Please use the Apple Support communities to post your question. Good day.

  • Questions - and answers forgotten

    How to get my 'secret' answers to the questions that I have noted the way back when?

    If you forgot the answers to your questions of security of Apple ID - Apple Support

  • I can't reset the security questions. We received notice as below:

    Hello world

    I can't reset the security questions. We received notice as below:

    "Cannot reset Security Questions."

    We have insufficient information to reset your security questions. "

    Please help me as soon as possible! Thank you very much.

    Hello

    You will need to contact the Apple Support.

    The information is available here:

    Contact Apple for assistance with the security of the Apple ID - Apple Support accounts

    (I'm afraid that no one here can solve the problem for you - this is a user-based community).

  • Question of cloning for SSD upgrade on 12 Macbook Pro

    Previously, I did an upgrade to SSD on my Macbook Air to 2012 according to the instructions of JetDrive transcend. Basically connection via USB 3 and using Mac OS X to clear (and format) disc utilities new SSD, then restore again SSD and then remove the original 128 GB SSD and insert the new 480 GB SSD.  For about a month and so far without problem.

    Now I'm trying to 2012 Macbook upgrade my Pro partner (on 10.11.6).  I got a Crucial SSD MX300 to replace his HARD drive.  Crucial comes with (or recommend) Acronis software.  And a lot of the messages of the forum recommend Carbon Copy Clone.

    My question is if I can use the same method for the cloning of the HD as my Macbook Air (just restore disk of Mac OS X utilities)?  This time, I'm upgrading HARD drive and I don't know if something is different.  At the same time, if I got lucky the first time, I don't not ruin Macbook Pro my spouse this time.

    Thank you.

    Yes, you can use disk utility to clone your MBP wives, but unlike CCC, it will not clone the recovery and Partition.

Maybe you are looking for

  • S100 and Microsoft RIS

    Did someone use RIS to deploy XP on a S100? Our default image does not recognize the SCSI RAID hard drive is connected to the - so can not image for her. I can't seem to find any inregards to this information on the web - ay ideas would be appreciate

  • overlap of XY graph with xscale property

    Hello I have a problem using the xscale maximum and minimum property... when I use the nodes property that it straddles two sets of curves in the same graph: one with the scale I put and the other as if I haven´t the value of the xscale assets... Wha

  • I got alltel for internet and had to get a craddlepoint router now since switching to ellementmobile I had to get a gateway router cdw530am mdl, but it won't work on my computer at home?

    I had alltell for my internet and had to get a craddelpoint router so I could use my home computer and laptop at the same time, but given that the switch to mobile really, I had to get a combo wifi broadband gateway mdl cdw530am, but now my home comp

  • Vista v's Microsoft Photo editor

    I just installed Windows Vista on my computer and want to put my program on which is Microsoft Photo Editor of photo editing. While he seems to have loaded ok, some functions do not work as they did on XP, such as opening certain files, smaller image

  • iTunes sync fails in Vista

    I have new iPhone 3Gs and am having problems of synchronization. iTunes recognizes the device and says it's support upward but crashes then and only task manager will make the application to quit.  I uninstalled and iTunes reinsutalled twice. Thank y