Reset operations in a perticular frame

I've created a application where the viewer could change colours, add text, add logos, rotare them, etc...
How do I create a reset button whcih resets everything to back normal in a specific FRAME? What functions do I have to use?
E.g.
Frame 5 is used to Add colours and text, etc...
Frame 10 is used to Add logos,scale them, rotate them, etc...
I need a reset button in Frame 5 to make only the things which were changed back to normal. (I hope this makes scence).

hmmm - well one could have a set of 'default' variables that you would then assign to the objects within a method to reset them.  what the variable values are depends greatly on the methodology of your system.  for instance if your changing the 'frame' of an object, you may simply need to reset that frame to 1 - or if your using a ColorTransform object you would want to store the default value, OR at least reset is to the original within the method (which may be simpler depending on the structure)
you could place a 'reset' method on each frame that is specific to the elements of that frame.

Similar Messages

  • Movieclip reseting x coordinates when switching frames

    I have a simple movie where the user can move a plane up, down, left, or right with the arrow keys. In frame 1of the plane movieclip, i have the up image, in frame 2, i have the down image, and so on. When the plane is moving up, I gotoAndStop frame 1, and when it's going down, I gotoAndStop frame 2. The problem is, everytime I switch frames, the plane switches from its current x,y coordinates to its original coordinates: the center of the screen. How to I stop the coordinates from reseting?
    Thanks in advance!

    I don't quite understand your answer. Maybe I wasn't descriptive enough.
    The plane starts out here:
    Then I move it to here:
    But when I switch to frame 2, using gotoAndStop(2), (where I've changed the color to red), it goes back to here:

  • Most recent imac firmware update resets operating system back to snow leopard

    I bought this computer when Lion was just coming out, so it still had the snow leopard OS. I have upgraded to Lion OS and updated all my software. This evening I get notice of a firmware update and iPhoto 9.2.1. I just did the install, and my computer is back to Snow Leopard 10.6.8. Just tried the Lion recovery disk I made on a USB not too long ago and that does not launch, and my Time Machine backup is showing the state it was before I upgraded to Lion.
    Do I have to do everything over again? App store is showing that I have a Lion 10.7.2 available update.

    OK I think I figured out what happened. Before I did do the lion OS update I had partitioned my hard drive, so that I still had a small section for snow leopard. I think the firmware update lost the fact that I had my startup disk set as the Lion one and set me back into the snow leopard one. I just booted into the Lion section and everything is still there, so no data lost.
    Now that I have done with using snow leopard, I might as well departition the hard drive, and maybe this won't happen again.

  • Text Frame Options. Room for Side Heads added without warning

    Hi -
    I just got asked this and have no clue how to help. Anyone know what this is?
    Every now and then, my Frame file will –apparently on its own – reset most of its text frames into having room for side heads.  Makes for lots of bad labels on graphics – everything’s suddenly offset and scrolling off the bottom.
    This will happen suddenly.  It will usually be only one or two chapters in a book, but if I ignore it has been known spread like the black death throughout the book.
    The only solution I’ve found so far has been to revert to a backup or touch each text frame individually.  Setting properties for two at a time messes up location on the page.

    HI -
    Here's what I heard back.
    I believe it’s for everything except main text flow, including headers&footers on master pages, and special elements on unused master pages.
    It appears to be spontaneous, but I can’t guarantee that.
    I don’t use MIFs, and I’m pretty sure no one else does.
    Yes to formatting imports , because we frequently change variables in one chapter and copy them back to the rest (esp date doc was last edited – not same as print date per our regulatory agency.)   Likewise conditional text.  We know not to copy from a file into itself in a book, although it has happened and we do exchange manuals between revisions at times.

  • Help! How to Open a Frame from applet with

    Hey all. I need help =).
    I want:
    1. Have 1 class extends applet with running thread (this far no prob)
    2. Open a new frame from the applet (no prob)
    3. Start a new thread which is operating "inside" the new Frame/class
    4. Draw a simple Rect in the new Frame with the new thread to test that the graphics work.
    Plz help,
    ~Trobsky

    �rr..... i cant draw on the Frame =(.
    Heres the code:

    public class Fonster extends java.applet.Applet {
         Frame myFrame;
         Fri friFonster=new Fri();
         public void init() {
              myFrame=new Frame();
              myFrame.resize(300,300);
              myFrame.show();
              myFrame.add(friFonster);
              friFonster.init();
              friFonster.start();
         public void paint(Graphics g)
              g.drawRect(10,10,100,100);
    public class Fri extends java.applet.Applet {
         public void init(){
              repaint();
         public void paint(Graphics g)
              g.drawRect(10,10,200,200);

  • How to reset a form instead of all the forms in the document?

    I installed a button in each page of my file my (ten pages, each one with a different one form) to give the user the faculty of clear specifically through a single choice
    But this reset button resets all the pages. I took care to rename this button in each page but Acrobat proceeds to execute a massive reset operation.
    Thank you.

    Mr Try,
    You wrote the whole thing...
    Thank you.
    Could you please give me the last breath?
    My real page numberin PDF  is 25 an I tried this (placing the two pieces) without success...
    function resetFieldsOnPage(p) {
        var fields = [];
        for (var i=0; i<this.numFields; i++) {
            var f = this.getField(this.getNthFieldName(i));
            if (f==null) continue;
            if (f.page==p)
                fields.push(f.name);
        this.resetForm(fields);
    And then to reset all the fields on the first page, call:
    resetFieldsOnPage(25);

  • How to call the Reset of af:query in a backing bean .

    Hi, Could some one help me to call the Reset function of af;query by a backing bean. Since i need to refresh the LOV's in the search panel, i need to call the reset operation in the custom code. . thanks.

    Here is the test case Frank.
    I'm having a af:query component and search fields are populated by choice-list LOV .... The VO populating the lov attribute is , is set with auto refresh . In case of new records in the DB, i want the lovs at the search fields of af:query getting updated automatically. Right now , if i click the Reset button then the lovs are getting updated. So i wanted to do the reset programmaticaly to update the lovs of af:query.

  • Resetting ActionForm

    Hi all,
    First of all i had lot of trouble searching for this topic (if anyone as posted this topic already or not?).
    Anyways i have two forms "emp.jsp" and "empconform.jsp", what is happening is in "empconform.jsp" you can save data to Database or if you find something wrong you can go back to previous page i.e. "emp.jsp" with all the fields populated. This i am doing using struts so that when i visit the "emp.jsp" after "empconfirm.jsp" struts automatically populates the fields (Great!).
    But the trouble is now i can not reset my form , initially ie. when first time you visit "emp.jsp" you can very well reset this form using javascript but once Actionform related to this page gets populated then you can not reset it .
    I don't know how to reset the action form.Can anybody clear my idea on how the above things should be.It'll be great help, i am wondering for this from long time.
    thanx in advance.
    Neelesh

    I usually do it differntly ways:
    1. Scope the action as request than session
    2. Write a method to perform the Reset operation.

  • Windows 2012 RDP "resets" user settings while using Roaming Profiles

    Last month we installed a RDP environment running a Windows 2012 DC and 2 Windows 2012 RDP servers. The RDP servers are running in a pool.
    For the rest it's nothing fancy.
    The problem is that user-settings are reset, most likely during logon. This only occurs when we use Roaming Profiles.
    - We create a new user, in a container with no GPO's attached.
    - This user gets a RP while logging on, no errors, at logoff the RP is written to it's correct folder.
    - Logging on again. Now for example I make Chrome standard browser and change the program which opens JPG files.
    - Logging off
    - I check the NTUSER.DAT in the RP folder and the changes I made can be found in the file. So it has been saved to the NTUSER.DAT.
    - Now I login again and check the settings I made. IE is standard browser again and the JPG setting is also back to standard.
    - Logging off
    - Checking the NTUSER.DAT in the RP folder and yes, everything is back to default.
    Now the funny part is, when I create a user with a local profile, everything is working properly. Settings been saved.
    It doesn't make a different what kind of user it is. Domain User, Domain Admin. They all have the same problems when using RP's.
    No error messages in the Event Viewer.
    I'm clearly unable to solve this problem. Hoping someone can help me on this one.
    What makes the settings reset at logon while using Roaming Profiles?
    Thanks!

    Hi,
    Thank you for posting in Windows Server Forum.
    Have you enable Cache copies option of roaming profiles?
    This issue might occurs because the User Profile service does not load the terminal server roaming profile correctly after the user account password is reset.
    When the Delete cache copies of roaming profiles Group Policy setting is enabled, and when a user is prompted to change the user account password, the User Profile service loads a local temporary user profile. The User Profile service loads this user profile
    to perform the password reset operation. However, the profile changes to a combination of the local temporary profile and of the roaming profile after the user password is reset. Therefore, the terminal server roaming profile is not loaded correctly.
    In addition, please try to delete the SID of the user from registry key and check the result. You can follow the below path.
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList
    More information:
    You receive a "The User Profile Service failed the logon” error message
    http://support.microsoft.com/kb/947215/en-us
    Also check “User Profiles on Windows Server 2008 R2 Remote Desktop Services” article.
    Hope it helps!
    Thanks.
    Dharmesh Solanki

  • PRS-T1 reset Button will not work

    I need to do a reset operation.reader is not recognise by computer

    Hi,
    Welcome to Lenovo Community Forums!
    I’m sorry to hear that reset button in your Lenovo X1is not working and the power button on your keyboard got damaged.
    The ThinkPad X1 has an integrated battery within the laptop, which may prevent the on/off button trick from resetting the ThinkPad as it usually does in many other ThinkPad models. To activate the reset switch, just push on the pin and you will feel some resistance and small click noise.
    If the reset switch is not responding, the reset switch mechanism would have got damaged.  I would strongly recommend you to contact our technical support for assistance.
    Click here to open a link where you can select the country and get the exact contact support number. I’m sure they will be a great help.
    Best Regards,
    Mithun.
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • Function do work in only one frame

    this function showing in all frame on stage....i want to it within a perticular frame
    function callThumbs() {
        _root.createEmptyMovieClip("sliderBox",_root.getNextHighestDepth());
        sliderBox._x = _root.gallery_x=30;
        sliderBox._y = _root.gallery_y=30;
    sliderBox.addEventListener(MouseEvent.CLICK);
        var clipLoader = new MovieClipLoader();
        var preloader = new Object();
        clipLoader.addListener(preloader);
        for (i=0; i<myImagesTotal; i++) {
            thumbURL = myImages[i].attributes.thumb_url;
            myThumb_mc = sliderBox.createEmptyMovieClip(i, sliderBox.getNextHighestDepth());
            myThumb_mc._x = _root.thumb_height*i;
            clipLoader.loadClip("thumbs/"+thumbURL,myThumb_mc);
            preloader.onLoadStart = function(target) {
                target.createTextField("my_txt",target.getNextHighestDepth(),0,0,1,1);
                target.my_txt.selectable = false;
            preloader.onLoadProgress = function(target, loadedBytes, totalBytes) {
                target.my_txt.text = Math.floor((loadedBytes/totalBytes)*100);
            preloader.onLoadComplete = function(target) {
                new Tween(target, "_alpha", Strong.easeOut, 0, 100, .5, true);
                target.my_txt.removeTextField();
                target.onRelease = function() {
                    callFullImage(this._name);
                target.onRollOver = function() {
                    this._alpha = 100;
                target.onRollOut = function() {
                    this._alpha = 100;

    In what way do you mean the function is in all frames?  If you write the function on a layer of its own and only provide one frame for it, it will only exist in that one frame.
    If you mean that what the function creates lives throughout the timeline, then that is because you are creating content dynamically without securing it to an object that has a home in the timeline.  Dynamically created content does not have a home in  the timeline unless you make it a opart of something that has been manually affixed to the timeline, like a movieclip.
    So what you might try is to manually add an empty movieclip in the frame where this code is (on a separate layer) and assign it an instance name, let's say you name it "container".  Then you can change the following line from...
    _root.createEmptyMovieClip("sliderBox",_root.getNextHighestDepth());
    to
    container.createEmptyMovieClip("sliderBox",container.getNextHighestDepth());
    and that should end up retsricting the dynamically created movieclip to the frame where the container is.  If there is any other content being added to the _root, that too should be retargeted to the container.

  • Problem with reset at

    I am working on a matrix report and the values are being summed at each step.
    I wanted it to reset on the next repeating frame. However I do not see that happening. Is there anything else that I should look at in order to stop the values from being total up.
    Thanks

    1. Press and hold the reset button for 30 seconds.
    2. Then, unplug the power keep holding down the reset button for
    another 30 Seconds.
    3. Plug back the power back in, and keep holding down the reset button
    for 30 Seconds.
    4. Release the reset button. Access the setup page of the router by launching an
    Browser and type on the address bar, 192.168.1.1 and press enter. When
    it prompts for the username and password, leave the username field
    empty and provide password as "admin" (Without quotes)
    click on ok.
    On the main setup page the ""Internet Connection Type"" should be
    on ""Obtain IP Automatically - DHCP “. Click on the Save Settings
    button.
    Now click on the sub tab ""MAC address clone"".
    - Click on enable
    Click Clone & click save settings
    Check WAN Ip on Status page of router ....
    If getting Valid Ip .... try going online
    If you are getting Ip - 192.168.1.X ...change the LAN Ip to 192.168.2.1 ....Power cycle for 3-4 minutes ...
    Try going online
    If still not working ...use Internet Connection type as PPPOE .... Use Username & Password provided by Service Provider ....
    Click save settings....
    Look for WAN IP address again under status page ....

  • Kernel: sd 0:0:5:0: ABORT operation failed (VM machine gets restarted)

    Hi,
    This is RAC VM machine (OS - Red Hat Enterprise Linux Server release 5.5) which gets restarted automatically.
    i checked the log but seems there is some problem with the SCSI Devices (HDD).
    can some one help me out....
    below the log for /var/log/messages
    May 16 11:26:21 OFSMUD6VM1124 kernel: sd 0:0:2:0: DEVICE RESET operation started.
    May 16 11:26:21 OFSMUD6VM1124 kernel: target0:0:2: control msgout: c.
    May 16 11:26:21 OFSMUD6VM1124 kernel: sym0: TARGET 2 has been reset.
    May 16 11:26:55 OFSMUD6VM1124 kernel: sd 0:0:2:0: DEVICE RESET operation complete.
    May 16 11:27:33 OFSMUD6VM1124 kernel: sd 0:0:2:0: M_REJECT received (0:0).
    May 16 11:27:51 OFSMUD6VM1124 kernel: sd 0:0:5:0: DEVICE RESET operation started.
    May 16 11:27:53 OFSMUD6VM1124 kernel: target0:0:5: control msgout: c.
    May 16 11:27:55 OFSMUD6VM1124 kernel: sym0: TARGET 5 has been reset.
    May 16 11:27:56 OFSMUD6VM1124 kernel: sd 0:0:5:0: DEVICE RESET operation complete.
    May 16 11:27:57 OFSMUD6VM1124 kernel: sd 0:0:5:0: M_REJECT received (0:0).
    May 16 11:27:58 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation started.
    May 16 11:28:51 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation failed.
    May 16 11:28:59 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation started.
    May 16 11:29:03 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation failed.
    May 16 11:29:07 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation started.
    May 16 11:29:08 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation failed.
    May 16 11:29:08 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation started.
    May 16 11:29:08 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation failed.
    May 16 11:29:08 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation started.
    May 16 11:29:08 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation failed.
    May 16 11:29:09 OFSMUD6VM1124 kernel: sd 0:0:2:0: ABORT operation started.
    May 16 11:29:13 OFSMUD6VM1124 kernel: sd 0:0:2:0: ABORT operation failed.
    May 16 11:29:16 OFSMUD6VM1124 kernel: sd 0:0:2:0: ABORT operation started.
    May 16 11:29:16 OFSMUD6VM1124 kernel: sd 0:0:2:0: ABORT operation failed.
    May 16 11:29:20 OFSMUD6VM1124 kernel: sd 0:0:2:0: ABORT operation started.
    May 16 11:29:25 OFSMUD6VM1124 kernel: sd 0:0:2:0: ABORT operation failed.
    May 16 11:29:39 OFSMUD6VM1124 kernel: sd 0:0:2:0: ABORT operation started.
    May 16 11:29:39 OFSMUD6VM1124 kernel: sd 0:0:2:0: ABORT operation failed.
    May 16 11:29:39 OFSMUD6VM1124 kernel: sd 0:0:2:0: ABORT operation started.
    May 16 11:29:39 OFSMUD6VM1124 kernel: sd 0:0:2:0: ABORT operation failed.
    May 16 11:29:39 OFSMUD6VM1124 kernel: sd 0:0:2:0: ABORT operation started.
    May 16 11:29:39 OFSMUD6VM1124 kernel: sd 0:0:2:0: ABORT operation failed.
    May 16 11:29:40 OFSMUD6VM1124 kernel: sd 0:0:2:0: ABORT operation started.
    May 16 11:29:40 OFSMUD6VM1124 kernel: sd 0:0:2:0: ABORT operation failed.
    May 16 11:29:40 OFSMUD6VM1124 kernel: sd 0:0:2:0: ABORT operation started.
    May 16 11:29:41 OFSMUD6VM1124 kernel: sd 0:0:2:0: ABORT operation failed.
    May 16 11:29:41 OFSMUD6VM1124 kernel: sd 0:0:2:0: DEVICE RESET operation started.
    May 16 11:29:41 OFSMUD6VM1124 kernel: target0:0:2: control msgout: c.
    May 16 11:29:41 OFSMUD6VM1124 kernel: sym0: TARGET 2 has been reset.
    May 16 11:29:41 OFSMUD6VM1124 kernel: sd 0:0:2:0: DEVICE RESET operation complete.
    May 16 11:29:41 OFSMUD6VM1124 kernel: sd 0:0:2:0: M_REJECT received (0:0).
    May 16 11:29:45 OFSMUD6VM1124 kernel: sd 0:0:5:0: DEVICE RESET operation started.
    May 16 11:29:45 OFSMUD6VM1124 kernel: target0:0:5: control msgout: c.
    May 16 11:29:46 OFSMUD6VM1124 kernel: sym0: TARGET 5 has been reset.
    May 16 11:29:46 OFSMUD6VM1124 kernel: sd 0:0:5:0: DEVICE RESET operation complete.
    May 16 11:29:49 OFSMUD6VM1124 kernel: sd 0:0:5:0: M_REJECT received (0:0).
    May 16 11:29:49 OFSMUD6VM1124 kernel: sd 0:0:2:0: ABORT operation started.
    May 16 11:29:49 OFSMUD6VM1124 kernel: sd 0:0:2:0: ABORT operation failed.
    May 16 11:29:50 OFSMUD6VM1124 kernel: sd 0:0:2:0: ABORT operation started.
    May 16 11:29:50 OFSMUD6VM1124 kernel: sd 0:0:2:0: ABORT operation failed.
    May 16 11:29:50 OFSMUD6VM1124 kernel: sd 0:0:2:0: ABORT operation started.
    May 16 11:29:50 OFSMUD6VM1124 kernel: sd 0:0:2:0: ABORT operation failed.
    May 16 11:29:50 OFSMUD6VM1124 kernel: sd 0:0:2:0: ABORT operation started.
    May 16 11:29:50 OFSMUD6VM1124 kernel: sd 0:0:2:0: ABORT operation failed.
    May 16 11:29:51 OFSMUD6VM1124 kernel: sd 0:0:2:0: DEVICE RESET operation started.
    May 16 11:30:04 OFSMUD6VM1124 kernel: target0:0:2: control msgout: c.
    May 16 11:30:04 OFSMUD6VM1124 kernel: sym0: TARGET 2 has been reset.
    May 16 11:30:06 OFSMUD6VM1124 kernel: sd 0:0:2:0: DEVICE RESET operation complete.
    May 16 11:30:06 OFSMUD6VM1124 kernel: sd 0:0:2:0: M_REJECT received (0:0).
    May 16 11:32:09 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation started.
    May 16 11:32:09 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation failed.
    May 16 11:32:09 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation started.
    May 16 11:32:09 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation failed.
    May 16 11:32:09 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation started.
    May 16 11:32:09 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation failed.
    May 16 11:32:09 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation started.
    May 16 11:32:09 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation failed.
    May 16 11:32:09 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation started.
    May 16 11:32:09 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation failed.
    May 16 11:32:09 OFSMUD6VM1124 kernel: sd 0:0:5:0: DEVICE RESET operation started.
    May 16 11:32:09 OFSMUD6VM1124 kernel: target0:0:5: control msgout: c.
    May 16 11:32:09 OFSMUD6VM1124 kernel: sym0: TARGET 5 has been reset.
    May 16 11:32:09 OFSMUD6VM1124 kernel: sd 0:0:5:0: DEVICE RESET operation complete.
    May 16 11:32:09 OFSMUD6VM1124 kernel: sd 0:0:5:0: M_REJECT received (0:0).
    May 16 11:33:10 OFSMUD6VM1124 kernel: sd 0:0:6:0: ABORT operation started.
    May 16 11:33:10 OFSMUD6VM1124 kernel: sd 0:0:6:0: ABORT operation failed.
    May 16 11:33:10 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation started.
    May 16 11:33:10 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation failed.
    May 16 11:33:10 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation started.
    May 16 11:33:10 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation failed.
    May 16 11:33:10 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation started.
    May 16 11:33:10 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation failed.
    May 16 11:33:10 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation started.
    May 16 11:33:10 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation failed.
    May 16 11:33:10 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation started.
    May 16 11:33:10 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation failed.
    May 16 11:33:10 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation started.
    May 16 11:33:10 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation failed.
    May 16 11:33:10 OFSMUD6VM1124 kernel: sd 0:0:2:0: ABORT operation started.
    May 16 11:33:10 OFSMUD6VM1124 kernel: sd 0:0:2:0: ABORT operation failed.
    May 16 11:33:10 OFSMUD6VM1124 kernel: sd 0:0:2:0: DEVICE RESET operation started.
    May 16 11:33:10 OFSMUD6VM1124 kernel: target0:0:2: control msgout: c.
    May 16 11:33:10 OFSMUD6VM1124 kernel: sym0: TARGET 2 has been reset.
    May 16 11:33:10 OFSMUD6VM1124 kernel: sd 0:0:2:0: DEVICE RESET operation complete.
    May 16 11:33:10 OFSMUD6VM1124 kernel: sd 0:0:2:0: M_REJECT received (0:0).
    May 16 11:33:10 OFSMUD6VM1124 kernel: sd 0:0:5:0: DEVICE RESET operation started.
    May 16 11:33:10 OFSMUD6VM1124 kernel: target0:0:5: control msgout: c.
    May 16 11:33:10 OFSMUD6VM1124 kernel: sym0: TARGET 5 has been reset.
    May 16 11:33:10 OFSMUD6VM1124 kernel: sd 0:0:5:0: DEVICE RESET operation complete.
    May 16 11:33:10 OFSMUD6VM1124 kernel: sd 0:0:5:0: M_REJECT received (0:0).
    May 16 11:33:11 OFSMUD6VM1124 kernel: sd 0:0:6:0: DEVICE RESET operation started.
    May 16 11:33:11 OFSMUD6VM1124 kernel: target0:0:6: control msgout: c.
    May 16 11:33:11 OFSMUD6VM1124 kernel: sym0: TARGET 6 has been reset.
    May 16 11:33:11 OFSMUD6VM1124 kernel: sd 0:0:6:0: DEVICE RESET operation complete.
    May 16 11:33:11 OFSMUD6VM1124 kernel: sd 0:0:6:0: M_REJECT received (0:0).
    May 16 11:34:11 OFSMUD6VM1124 kernel: sd 0:0:4:0: ABORT operation started.
    May 16 11:34:11 OFSMUD6VM1124 kernel: sd 0:0:4:0: ABORT operation failed.
    May 16 11:34:11 OFSMUD6VM1124 kernel: sd 0:0:1:0: ABORT operation started.
    May 16 11:34:11 OFSMUD6VM1124 kernel: sd 0:0:1:0: ABORT operation failed.
    May 16 11:34:11 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation started.
    May 16 11:34:11 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation failed.
    May 16 11:34:11 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation started.
    May 16 11:34:11 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation failed.
    May 16 11:34:11 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation started.
    May 16 11:34:11 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation failed.
    May 16 11:34:11 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation started.
    May 16 11:34:11 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation failed.
    May 16 11:34:11 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation started.
    May 16 11:34:14 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation failed.
    May 16 11:34:16 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation started.
    May 16 11:34:18 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation failed.
    May 16 11:34:19 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation started.
    May 16 11:34:20 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation failed.
    May 16 11:34:22 OFSMUD6VM1124 kernel: sd 0:0:6:0: ABORT operation started.
    May 16 11:34:22 OFSMUD6VM1124 kernel: sd 0:0:6:0: ABORT operation failed.
    May 16 11:34:23 OFSMUD6VM1124 kernel: sd 0:0:6:0: ABORT operation started.
    May 16 11:34:24 OFSMUD6VM1124 kernel: sd 0:0:6:0: ABORT operation failed.
    May 16 11:34:24 OFSMUD6VM1124 kernel: sd 0:0:2:0: ABORT operation started.
    May 16 11:34:26 OFSMUD6VM1124 kernel: sd 0:0:2:0: ABORT operation failed.
    May 16 11:34:27 OFSMUD6VM1124 kernel: sd 0:0:1:0: DEVICE RESET operation started.
    May 16 11:34:28 OFSMUD6VM1124 kernel: sd 0:0:1:0: DEVICE RESET operation complete.
    May 16 11:34:28 OFSMUD6VM1124 kernel: target0:0:1: control msgout: c.
    May 16 11:34:28 OFSMUD6VM1124 kernel: sym0: TARGET 1 has been reset.
    May 16 11:34:28 OFSMUD6VM1124 kernel: sd 0:0:1:0: M_REJECT received (0:0).
    May 16 11:34:28 OFSMUD6VM1124 kernel: sd 0:0:2:0: DEVICE RESET operation started.
    May 16 11:34:29 OFSMUD6VM1124 kernel: sd 0:0:2:0: DEVICE RESET operation complete.
    May 16 11:34:30 OFSMUD6VM1124 kernel: target0:0:2: control msgout: c.
    May 16 11:34:30 OFSMUD6VM1124 kernel: sym0: TARGET 2 has been reset.
    May 16 11:34:30 OFSMUD6VM1124 kernel: sd 0:0:2:0: M_REJECT received (0:0).
    May 16 11:34:30 OFSMUD6VM1124 kernel: sd 0:0:4:0: DEVICE RESET operation started.
    May 16 11:34:30 OFSMUD6VM1124 kernel: sd 0:0:4:0: DEVICE RESET operation complete.
    May 16 11:34:32 OFSMUD6VM1124 kernel: target0:0:4: control msgout: c.
    May 16 11:34:32 OFSMUD6VM1124 kernel: sym0: TARGET 4 has been reset.
    May 16 11:34:32 OFSMUD6VM1124 kernel: sd 0:0:5:0: DEVICE RESET operation started.
    May 16 11:34:33 OFSMUD6VM1124 kernel: target0:0:5: control msgout: c.
    May 16 11:34:33 OFSMUD6VM1124 kernel: sym0: TARGET 5 has been reset.
    May 16 11:34:33 OFSMUD6VM1124 kernel: sd 0:0:5:0: DEVICE RESET operation complete.
    May 16 11:34:33 OFSMUD6VM1124 kernel: sd 0:0:5:0: M_REJECT received (0:0).
    May 16 11:34:34 OFSMUD6VM1124 kernel: sd 0:0:5:0: M_REJECT received (0:0).
    May 16 11:34:34 OFSMUD6VM1124 kernel: sd 0:0:6:0: DEVICE RESET operation started.
    May 16 11:34:34 OFSMUD6VM1124 kernel: sd 0:0:6:0: DEVICE RESET operation complete.
    May 16 11:34:34 OFSMUD6VM1124 kernel: target0:0:6: control msgout: c.
    May 16 11:34:34 OFSMUD6VM1124 kernel: sym0: TARGET 6 has been reset.
    May 16 11:34:35 OFSMUD6VM1124 kernel: sd 0:0:6:0: M_REJECT received (0:0).
    May 16 11:34:35 OFSMUD6VM1124 kernel: sd 0:0:4:0: BUS RESET operation started.
    May 16 11:34:35 OFSMUD6VM1124 kernel: sym0: SCSI BUS reset detected.
    May 16 11:34:35 OFSMUD6VM1124 kernel: sd 0:0:4:0: BUS RESET operation complete.
    May 16 11:34:35 OFSMUD6VM1124 kernel: sym0: SCSI BUS has been reset.
    May 16 11:35:22 OFSMUD6VM1124 kernel: sd 0:0:2:0: ABORT operation started.
    May 16 11:35:22 OFSMUD6VM1124 kernel: sd 0:0:2:0: ABORT operation failed.
    May 16 11:35:22 OFSMUD6VM1124 kernel: sd 0:0:2:0: ABORT operation started.
    May 16 11:35:22 OFSMUD6VM1124 kernel: sd 0:0:2:0: ABORT operation failed.
    May 16 11:35:22 OFSMUD6VM1124 kernel: sd 0:0:2:0: ABORT operation started.
    May 16 11:35:22 OFSMUD6VM1124 kernel: sd 0:0:2:0: ABORT operation failed.
    May 16 11:35:22 OFSMUD6VM1124 kernel: sd 0:0:2:0: ABORT operation started.
    May 16 11:35:22 OFSMUD6VM1124 kernel: sd 0:0:2:0: ABORT operation failed.
    May 16 11:35:22 OFSMUD6VM1124 kernel: sd 0:0:2:0: ABORT operation started.
    May 16 11:35:22 OFSMUD6VM1124 kernel: sd 0:0:2:0: ABORT operation failed.
    May 16 11:35:22 OFSMUD6VM1124 kernel: sd 0:0:2:0: ABORT operation started.
    May 16 11:35:22 OFSMUD6VM1124 kernel: sd 0:0:2:0: ABORT operation failed.
    May 16 11:35:24 OFSMUD6VM1124 kernel: sd 0:0:2:0: ABORT operation started.
    May 16 11:35:24 OFSMUD6VM1124 kernel: sd 0:0:2:0: ABORT operation failed.
    May 16 11:35:24 OFSMUD6VM1124 kernel: sd 0:0:2:0: ABORT operation started.
    May 16 11:35:29 OFSMUD6VM1124 kernel: sd 0:0:2:0: ABORT operation failed.
    May 16 11:35:33 OFSMUD6VM1124 kernel: sd 0:0:2:0: ABORT operation started.
    May 16 11:35:34 OFSMUD6VM1124 kernel: sd 0:0:2:0: ABORT operation failed.
    May 16 11:35:34 OFSMUD6VM1124 kernel: sd 0:0:2:0: ABORT operation started.
    May 16 11:35:34 OFSMUD6VM1124 kernel: sd 0:0:2:0: ABORT operation failed.
    May 16 11:35:34 OFSMUD6VM1124 kernel: sd 0:0:2:0: ABORT operation started.
    May 16 11:35:34 OFSMUD6VM1124 kernel: sd 0:0:2:0: ABORT operation failed.
    May 16 11:35:34 OFSMUD6VM1124 kernel: sd 0:0:4:0: ABORT operation started.
    May 16 11:35:38 OFSMUD6VM1124 kernel: sd 0:0:4:0: ABORT operation failed.
    May 16 11:35:47 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation started.
    May 16 11:35:47 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation failed.
    May 16 11:35:48 OFSMUD6VM1124 kernel: sd 0:0:1:0: ABORT operation started.
    May 16 11:35:48 OFSMUD6VM1124 kernel: sd 0:0:1:0: ABORT operation failed.
    May 16 11:35:49 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation started.
    May 16 11:35:49 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation failed.
    May 16 11:35:49 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation started.
    May 16 11:35:49 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation failed.
    May 16 11:35:50 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation started.
    May 16 11:35:59 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation failed.
    May 16 11:36:07 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation started.
    May 16 11:36:15 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation failed.
    May 16 11:36:15 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation started.
    May 16 11:36:15 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation failed.
    May 16 11:36:15 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation started.
    May 16 11:36:15 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation failed.
    May 16 11:36:15 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation started.
    May 16 11:36:15 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation failed.
    May 16 11:36:15 OFSMUD6VM1124 kernel: sd 0:0:6:0: ABORT operation started.
    May 16 11:36:15 OFSMUD6VM1124 kernel: sd 0:0:6:0: ABORT operation failed.
    May 16 11:36:15 OFSMUD6VM1124 kernel: sd 0:0:6:0: ABORT operation started.
    May 16 11:36:16 OFSMUD6VM1124 kernel: sd 0:0:6:0: ABORT operation failed.
    May 16 11:36:16 OFSMUD6VM1124 kernel: sd 0:0:6:0: ABORT operation started.
    May 16 11:36:16 OFSMUD6VM1124 kernel: sd 0:0:6:0: ABORT operation failed.
    May 16 11:36:17 OFSMUD6VM1124 kernel: sd 0:0:6:0: ABORT operation started.
    May 16 11:36:17 OFSMUD6VM1124 kernel: sd 0:0:6:0: ABORT operation failed.
    May 16 11:36:17 OFSMUD6VM1124 kernel: sd 0:0:1:0: DEVICE RESET operation started.
    May 16 11:36:17 OFSMUD6VM1124 kernel: sd 0:0:1:0: DEVICE RESET operation complete.
    May 16 11:36:17 OFSMUD6VM1124 kernel: target0:0:1: control msgout: c.
    May 16 11:36:17 OFSMUD6VM1124 kernel: sym0: TARGET 1 has been reset.
    May 16 11:36:22 OFSMUD6VM1124 kernel: sd 0:0:2:0: DEVICE RESET operation started.
    May 16 11:36:22 OFSMUD6VM1124 kernel: sd 0:0:2:0: DEVICE RESET operation complete.
    May 16 11:36:22 OFSMUD6VM1124 kernel: target0:0:2: control msgout: c.
    May 16 11:36:22 OFSMUD6VM1124 kernel: sym0: TARGET 2 has been reset.
    May 16 11:36:23 OFSMUD6VM1124 kernel: sd 0:0:4:0: DEVICE RESET operation started.
    May 16 11:36:23 OFSMUD6VM1124 kernel: sd 0:0:4:0: DEVICE RESET operation complete.
    May 16 11:36:23 OFSMUD6VM1124 kernel: target0:0:4: control msgout: c.
    May 16 11:36:23 OFSMUD6VM1124 kernel: sym0: TARGET 4 has been reset.
    May 16 11:36:23 OFSMUD6VM1124 kernel: sd 0:0:4:0: M_REJECT received (0:0).
    May 16 11:36:23 OFSMUD6VM1124 last message repeated 2 times
    May 16 11:36:23 OFSMUD6VM1124 kernel: sd 0:0:5:0: DEVICE RESET operation started.
    May 16 11:36:23 OFSMUD6VM1124 kernel: sd 0:0:5:0: DEVICE RESET operation complete.
    May 16 11:36:23 OFSMUD6VM1124 kernel: target0:0:5: control msgout: c.
    May 16 11:36:24 OFSMUD6VM1124 kernel: sym0: TARGET 5 has been reset.
    May 16 11:36:24 OFSMUD6VM1124 kernel: sd 0:0:5:0: M_REJECT received (0:0).
    May 16 11:36:24 OFSMUD6VM1124 kernel: sd 0:0:6:0: DEVICE RESET operation started.
    May 16 11:36:24 OFSMUD6VM1124 kernel: sd 0:0:6:0: DEVICE RESET operation complete.
    May 16 11:36:24 OFSMUD6VM1124 kernel: target0:0:6: control msgout: c.
    May 16 11:36:24 OFSMUD6VM1124 kernel: sym0: TARGET 6 has been reset.
    May 16 11:36:24 OFSMUD6VM1124 kernel: sd 0:0:6:0: M_REJECT received (0:0).
    May 16 11:36:24 OFSMUD6VM1124 kernel: sd 0:0:2:0: BUS RESET operation started.
    May 16 11:36:24 OFSMUD6VM1124 kernel: sd 0:0:2:0: BUS RESET operation complete.
    May 16 11:36:24 OFSMUD6VM1124 kernel: sym0: SCSI BUS reset detected.
    May 16 11:36:24 OFSMUD6VM1124 kernel: sym0: SCSI BUS has been reset.
    May 16 11:37:43 OFSMUD6VM1124 kernel: sd 0:0:2:0: ABORT operation started.
    May 16 11:37:43 OFSMUD6VM1124 kernel: sd 0:0:2:0: ABORT operation failed.
    May 16 11:37:43 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation started.
    May 16 11:37:43 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation failed.
    May 16 11:37:43 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation started.
    May 16 11:37:43 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation failed.
    May 16 11:37:43 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation started.
    May 16 11:37:43 OFSMUD6VM1124 kernel: sd 0:0:5:0: ABORT operation failed.
    May 16 11:37:43 OFSMUD6VM1124 kernel: sd 0:0:2:0: DEVICE RESET operation started.
    May 16 11:37:43 OFSMUD6VM1124 kernel: target0:0:2: control msgout: c.
    May 16 11:37:43 OFSMUD6VM1124 kernel: sym0: TARGET 2 has been reset.
    May 16 11:37:43 OFSMUD6VM1124 kernel: sd 0:0:2:0: DEVICE RESET operation complete.
    May 16 11:37:43 OFSMUD6VM1124 kernel: sd 0:0:2:0: M_REJECT received (0:0).
    May 16 11:37:45 OFSMUD6VM1124 kernel: sd 0:0:5:0: DEVICE RESET operation started.
    May 16 11:37:47 OFSMUD6VM1124 kernel: target0:0:5: control msgout: c.
    May 16 11:37:49 OFSMUD6VM1124 kernel: sym0: TARGET 5 has been reset.
    May 16 11:37:51 OFSMUD6VM1124 kernel: sd 0:0:5:0: DEVICE RESET operation complete.
    May 16 11:37:52 OFSMUD6VM1124 kernel: sd 0:0:5:0: M_REJECT received (0:0).

    If you have a backup I would recommend a clean install

  • [SOLVED] can't boot from ssd after "reset" from recovery usb flash drive

    I have a Twist s230u with the original Hitachi 500GB hdd, running Windows 8.1.  I want to replace the Hitachi 500GB hdd in my Twist s230u with a PNY 240GB SSD that i've purchased.
    While running Windows from the Hitachi HDD drive I followed the "create a recovery drive" procedure to create a recovery usb.  Then I removed the Hitachi HDD from the s230u and installed the PNY 240 SSD in its place.  I booted the s230u from the recovery flash drive that I made.  I selected the "Reset Your PC" option and then the option to wipe all partition/files.  After the Reset completes, I try booting from the SSD but am unable to do so.  I just go back to the F12 boot menu.
    I put the SSD in a drive dock attached to another computer.  Disk Management shows the partitions as follows - 
    I've looked at the partitions on the SSD after the Reset - Disk Management console shows a 1000 MB Recovery partition, a 260MB EFI System partition, and a 221GB primary partition with volume label Windows8_OS.  It is not marked as Boot, Page File, or Crash Dump.
    Diskpart shows an an additional 128MB Reserved partition between the EFI partition and the primary partition.
    I do notice that the 10.6 Lenovo Recovery partition is not present - but I did make sure that I included that partition on the recovery key - though the files on the recovery key only use 8.03 GB for some reason.  Made the key on two different flash media.
    Diskpart also shows the following for the SSD:
    DISKPART> attributes disk
    Current Read-only State : No
    Read-only : No
    Boot Disk : No
    Pagefile Disk : No
    Hibernation File Disk : No
    Crashdump Disk : No
    Clustered Disk : No
    (It also looks like this when I run DISKPART from the recovery media with the SSD inside the internal drive bay of the s230u.)
    When I did the Reset on the SSD in the s230u, and when I tried to boot from it - I had the Secure Boot disabled, the "Legacy Boot first" option set, etc.  
    Can anyone point me in the right direction to be able to boot Windows 8.1 from this SSD in the s230u?  I've been working on this for a couple of days.
    (I also tried cloning the HDD to the SDD using Minitool Partition Wizard, Macrium Reflect, Clonezilla, Acronis, etc - the SSD wouldn't boot after those clone operations either, and I thought maybe I'd have better luck with a reinstall from the USB recovery media.
    (I also tried installing from a Windows 8 iso I burned to a DVD.  I got a product id mismatch message when I tried to install from that, and I was not allowed to proceed.)

    well, I seem to have solved my own problem.  Maybe someone will learn from my mistakes.
    I went into System Setup, went to the Startup tab, and changed the boot setting from "Both" to "UEFI Only".  After doing this I booted from my USB recovery drive, and Reset the PC.  After the Reset, I booted the s230u from the ssd, and I booted into a fresh Windows 8 installation.  
    It seems that the Reset operation could not work properly while the boot setting was "Both" (UEFI and Legacy) and "Legacy First."
    I got a clue when I looked at the contents of the EFI System Partition and there was nothing there except a Temp folder. The EFI System Partition had not been properly written by the Reset operation.  I got some helpful hints on how to see the contents of the EFI System Partition here - http://www.fixedbyvonnie.com/2013/12/how-to-repair-the-efi-bootloader-in-windows-8/#.U-Qz2_ldW7q
    I've also buggered up my original HDD now, so that it won't boot to Windows now.  Now to fix that!  

  • Paasword Probleme to reset my password

    Hello everybody , 
    I got a probleme with fim password reset portal , i can register my question it was successful . Then i went to to password reset site i answer to the question then i had to text my new password and confirm it again so after that this message apear : 
    The error page was displayed to the user. Details: Title: Erreur Message: Une erreur s'est produite. Réessayez. Si le problème persiste, contactez le support technique ou l'administrateur système. (Erreur 3000) Source: Attributes: Details: System.InvalidProgramException:
    Error while performing the password reset operation: PWUnrecoverableError à Microsoft.IdentityManagement.CredentialManagement.Portal.Reset.AttemptToResetPassword() à System.Web.UI.WebControls.Button.OnClick(EventArgs e) à System.Web.UI.WebControls.Button.RaisePostBackEvent(String
    eventArgument) à System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) à System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) CorrelationId: RequestId:
    ErrorCode: 3000 CaughtTime: 02/19/2015 17:34:24 Web Portal: FIM Password Reset Portal Session Id: jb2x2w45naffyi451tozvsur IP Address: fe80::3d7b:6642:c540:80c3%12
    Can someone help me please 

    Hello,
    Jorge wrote a large blog post just about this error yesterday:
    https://jorgequestforknowledge.wordpress.com/2015/03/08/resolving-the-pwunrecoverableerror-error-with-fim-self-service-password-reset-sspr/
    Maybe this help.
    -Peter
    Peter Stapf - ExpertCircle GmbH - My blog:
    JustIDM.wordpress.com

Maybe you are looking for