Something simple is more... I can't pass my email is

Why can not just put 1 in steps of 10 or however much he need to get my email from one location to Windows live?  Please

Can you be more specific about what you want to do?  You you continue to use your e-mail service old but have these messages before living as they come?  Or he will cut you down and live will be your single e-mail account?

Tags: Windows

Similar Questions

  • I must be missing something simple, but I can't figure out how to remove my Adobe account?

    I must be missing something simple, but I can't figure out how to remove my Adobe account?

    http://livingtext.WordPress.com/2009/03/13/delete-an-Adobe-account/

  • Unable to get Firefox more. "Can't find page" repeatedly tried to

    I've been using Firfox for time enough sime and very happy TSF he. But all of a sudden I can't get my Firefox home page and when I search it says "Can can't FIND THE PAGE ETC. ETC." I tried repeatdly during the last days unsuccessfully. At the same time, junk Yahoo keeps appearing as my search engine, and I can't get rid of it. I could go with Google Chrome but I wish I could stay with Firefox. Am not too smart with I.T or computers and would appreciate simple instructions. Clues?

    Hi, it sounds as if this may be a result of malware installed on your computer, you may not be aware of.

    You can try these free programs to search for malicious software that work with your existing anti-virus software:

    Microsoft Security Essentials is a good permanent antivirus for Windows 7/Vista/XP, if you do not already have one. Windows 8 already has integrated antivirus.

    More information can be found in the article troubleshooting Firefox problems caused by malware .

    xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

    After executing the above, you may also need to run SearchReset, who as his name suggests resets your home and search pages by default.

    If your question is resolved by this or another answer, please take a minute to let us know. Thank you.

  • CD is not compatible with XP, why? I can't pass the data information of my new HP with Vista professional in my other, older __Dell computers using XP iperating system. It makes the CD a bit useless.

    I don't understand why I can't pass data as a file in Quicken to my new HP computer using the CD of my old Dell computer with the XP operating system.  I have to use thumb devices to transfer data.  What is a reason that they cannot be compatible.

    Read the section on using disks of different CD players or format to ISO for older computers

    http://Windows.Microsoft.com/en-us/Windows-Vista/burn-a-CD-or-DVD

    If your computer is equipped with a CD or DVD burner, you can copy files to a recordable disc. This process is called burning a disc. By default, Windows Burns discs in the active file system format, but you can also choose to burn discs in ISO image format.

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    http://Windows.Microsoft.com/en-us/Windows-Vista/disc-burning-frequently-asked-questions

    Why are there two different ways to format a disc?

    You can choose between the formats of live file system and mastered during the creation of a new recordable disc because each of these formats is used for different purposes. The default choice is the active file system because it is a more convenient way to create a disc. When you use a Live file system disc, files are copied to the disk immediately. When you use the ISO image format, the files are stored in a "transit zone" until you decide to burn the disc.

    When you use the system format active files with rewritable discs, such as CD - RW and DVD - RW, you can also erase unwanted files from a disc to recover space, which is not possible with mastered discs. On the other hand, mastered discs are more compatible with older computers, previous versions of Windows, and other devices such as CD and DVD players. For more information, see which CD or DVD format should I use?

    See you soon.

    Mick Murphy - Microsoft partner

  • Something simple that I'm missing: switching XML text problem

    I'm sure it's something simple I'm missing. I was looking at this code for some time now, I'm hoping that a fresh pair of eyes can help out me:

    I have a title for my videos of xml that are loaded with the video of the scene. When you click on a thumbnail of the image of the video, what is supposed to happen is the title of the video could appear above of the new video and remove the previous title of the video. Instead, remains the previous title and the new title of stacks on top of the other.

    Here are some of my code:

              //Process XML==================================================================================================================
              public function processXML(e:Event):void{
                   var myXML:XML = new XML(e.target.data);
    
                   thumb_width = myXML. @ THUMB_WIDTH;
                   thumb_height = myXML. @ THUMB_HEIGHT;
                   video_x = 200;
                   video_y = -20;
                   my_videos = myXML.VIDEO;
                   my_total = my_videos.length();
    
                   makeContainers();
                   thumbs_x = thumb_container.x;
                   thumbs_y = thumb_container.y - 20;
                   callThumbs();
                   makePlayer();
              }
              
              //Make Containers=================================================================================================================
              public function makeContainers():void{
                   main_container = new Sprite();
                   thumb_container = new MovieClip();
                   addChild(main_container);
                   titles = new Sprite();
                   
                   thumbs = new Sprite();
                   thumbs.addEventListener(MouseEvent.CLICK, playVideo);
                   thumbs.addEventListener(MouseEvent.MOUSE_OVER, onOver);
                   thumbs.addEventListener(MouseEvent.MOUSE_OUT, onOut);
                   thumbs.x = thumbs_x;
                   thumbs.y = thumbs_y;
                   thumbs.buttonMode = true;
                   main_container.x = -10;
                   main_container.y = -10;
                   thumb_container.addChild(thumbs);
                   main_container.addChild(thumb_container);
                   main_container.addChild(titles);
                   thumb_container.mask = thumbScroller.vThumbMask;
                                  
                   thumbScroller.next_btn.addEventListener(MouseEvent.MOUSE_DOWN, doAction);
                   thumbScroller.previous_btn.addEventListener(MouseEvent.MOUSE_DOWN, doAction);               
                   thumbScroller.next_btn.addEventListener(MouseEvent.MOUSE_UP, releaseButton);
                   thumbScroller.previous_btn.addEventListener(MouseEvent.MOUSE_UP, releaseButton);
              }
    
         
              //Call Thumbs==================================================================================================================
              public function callThumbs():void{
                   
                   for (var i:Number = 0; i < my_total; i++)
                   {
                        var thumb_url = my_videos[i].@THUMB;
                        var thumb_loader = new Loader();
                        thumb_loader.name = i;
                        thumb_loader.load(new URLRequest(thumb_url));
                        thumb_loader.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded);
                        thumb_loader.y = (thumb_height+10)*i;
                   }
              }
    
              public function thumbLoaded(e:Event):void{
                   var my_thumb:Loader = Loader(e.target.loader);
                   thumbs.addChild(my_thumb);
              }
              
              
              //Make Player==================================================================================================================
              public function makePlayer():void{
                   my_player = new FLVPlayback();
                   my_player.skin = "SkinOverPlaySeekMute.swf";
                   my_player.skinBackgroundColor = 0x70A16C;
                   my_player.skinBackgroundAlpha = 0.5;
                   my_player.skinAutoHide = true;
    
                   my_player.x = video_x;
                   my_player.y = video_y;
                   my_player.width = 450;
                   my_player.height = 338;
    
                   main_container.addChild(my_player);
                   my_player.source = my_videos[0]. @ URL;
              }
              
              //stop audio and video
              public function stopPlayer():void{
                   my_player.stop();
              }
              
         
              //Thumbnail Functions-----------------------------------------------------------------------------------------------------------
              public function playVideo(e:MouseEvent):void{
                   var video_url = my_videos[e.target.name]. @ URL;
                   my_player.source = video_url;
                   thumbs.addEventListener(MouseEvent.CLICK,getTitle);
    
              }
    
              public function getTitle(e:MouseEvent):void{
                        var thumb_title = my_videos[e.target.name].@TITLE;
                        var title_txt:TextField = new TextField();
    
                                     //THIS DOESN'T WORK. FOR SOME REASON IT DOESN'T SEEM TO EVER GET CALLED 
                        if(titles.contains(title_txt)){
                                         trace("remove previous title");
                             titles.removeChild(title_txt);
                        }
                        
                        var myFormat:TextFormat = new TextFormat();
                        myFormat.font = "Helvetica";
                        myFormat.color = 0x000000;
                        myFormat.size = 25;
                        title_txt.defaultTextFormat = myFormat;
                        
                        title_txt.text = thumb_title;
                        title_txt.y = video_y - 40;
                        title_txt.x = video_x + 50;
                        title_txt.width = thumb_width;
                        title_txt.height = thumb_height;
                        title_txt.wordWrap = true;
                        titles.addChild(title_txt);
              }
    
    
    Also, for some reason, when the swf first loads, the title does not appear for the first thumbnail clicked but it starts to appear when you click a second thumbnail.
    Any help will be very much appreciated!
    
     
    

    The likely problem of lies between the following lines...

    var title_txt:TextField = new TextField();

    if (titles.contains (title_txt))

    {

    titles.removeChild (title_txt);

    }

    You just create an instance named title_txt.  So any reference to it thereafter is the newly created instance, no matter what that may already exist.

    I have just to keep a textfield and replace what is in it.  But if you want to continue to create instances and accumulate them in memory, then probably just want to use something like...

    if (titles.numChildren > 0)

    {

    titles.removeChildAt (0);

    }

  • Can I pass name of user and password for strobe playback as parameters?

    A question related to the SSO on.

    Can I pass name of user and password for playback of strobe as parameters so that the user does not need to be prompted for the name of user and password for protected content? In other words, Strobe detects a need for authentication, but rather establish a dialog box to prompt the user, it just extracts the name of user and password transmitted and transmits it to the license server?

    If no such function is available, can anyone point to a simple sample plugin, where I can spend the long name of username/password or a token to the license server, perhaps through the object connection or flow? I looked at the example of Akamai, and it's quite complicated with little documentation.

    Thanks in advance for your help.

    -Leki

    Hi Lei,

    The SMILPlugin seems to have a bug when used with a proxy plugin.

    Please follow these steps:

    1 starting the SMILPlugin source code: http://opensource.adobe.com/svn/opensource/osmf/trunk/plugins/samples/SMILPlugin

    2. open the SMILMediaGenerator class.

    3. go to line 123. You should see the following code snippet:

    If (! isNaN (duration) & duration > 0)

    {

    (videoElement as VideoElement) .defaultDuration = duration;

    }

    4. replace by this excerpt:

    If (! isNaN (duration) & duration > 0)

    {

    Assuming that videoElement is that a VideoElement is wrong (I guess that we can find a better name for this variable?)

    Since any plugin proxy will break this code. Iterate through the string until you reach a VideoElement proxy

    We can add a deffensive code just after the iterator, unless we should always have a VideoElement on top.

    var temp: MediaElement = videoElement;

    While (temp is ProxyElement)

    {

    Temp = .proxiedElement (temp as ProxyElement);

    }

    (temp as VideoElement) .defaultDuration = duration;

    }

    5. check that everything works with this patch.

    6. Let us know if that fixes the problem.

    7. connect the bug and submit the patch (with a link to this post on the forum) here: http://bugs.adobe.com/jira/browse/FM

    Thank you

    ANDRIAN

    Post edited by: Andrian Cucu

    updated the piece so that it uses a temp var

  • When I go to my GroupOn I get "400 Bad Request" and that he can not pass, but if I use my Internet Explorer it passes through. Help?

    I use Groupon and I recently tried to buy one but when I hit 'BUY' get "400 Bad Request" error message. I called Groupon, and they made the purchase for me. However, when I went on Internet Explorer, which I use rarely like optonline does well with her, the purchase went through fine.

    Why I get this error message with Forefox and what I can do about it?

    Please update to version 24.0

    Please try to clear the cache and cookies:

    Many issues of the site can be caused by corrupted cookies or cache. To try to solve these problems, the first step is to clear cookies and cache.
    Note: This will be you temporarily disconnect all sites, you're connected to.
    To clear the cache and cookies to do the following:

    1. Go to Firefox > history > clear recent history or (if no Firefox button is displayed) go to tools > clear recent history.
    2. Under "Time range to clear", select "all".
    3. Now, click the arrow next to details to toggle the active details list.
    4. In the list of details, see the Cache and Cookies and uncheck everything.
    5. Now click the clear now button.

    More information can be found in article to clear your cache, history, and other personal information in Firefox .

    This solve your problems? Please report to us!

    Thank you.

  • MacBook Pro (retina, 15 inches, beginning 2013) El Capitan 10.11.3, Simple question here: I can't open FinalCut Express (4, I believe). The wheel turns for hours. How can I install/uninstall and will I lose all my old films (for the most part stored on ex

    MacBook Pro (retina, 15 inches, beginning 2013) El Capitan 10.11.3, Simple question here: I can't open FinalCut Express (4, I believe). The wheel turns for hours. How can I install/uninstall and will I lose all my old films (for the most part stored on external hard drives). Thanks for your suggestions.

    You will not lose anything, but the app if you uninstall. If you decide to uninstall use this app to make sure that all the other files which depends on FCE are also deleted however I can't give you any assurance as to whether you will be able to reinstall so that it works correctly. It is a software that has not been supported for almost 5 years and there are conflicting reports as to its compatibility with OS X 10.11. Can't I test it myself.

    Maybe someone else will chime in with their own experiences.

    Russ

  • How can I access the album artwork for printing. It is used to be simple, that now I can not find anything

    How can I access the album artwork for printing on a CD? It is used to be simple, that now I can not find anything

    (Retina Powerbook 15, OSX 10.11.2, Itunes 12.3 2.35)

    Right-click on the right track... Get info... Select album art... Drag it to the desktop

    print it from there.

  • The simple question is "where can I find the installer for the HP Quick start?

    The simple question is "where can I find the installer for the HP Quick start?

    BESR regards

    Hello:

    And here's one for W8...

    http://h20565.www2.HP.com/hpsc/SWD/public/detail?swItemId=ob_140915_1#tab1

  • How can I delete the emails saved is more necessary in my HP Officejet Pro

    How can I delete the emails saved is more necessary in my HP Officejet Pro storage

    Hello @Robstan,

    Welcome to the HP Forums!

    I understand that you want to delete your saved emails. I will do my best to help you! First of all, I need to know what kind of printer you have? Click here to read: model number.

    Once you check this information and I will help you. Have a good night!

  • in hotmail, I can't pass on all messages that the coordinates and the message is not transferred to the new email.

    In hotmail, I can't pass on all messages that the coordinates and the message is not transferred to the new email. However, this works in Windows Live Mail. I use Windows 7 64-bit and 64-bit internet.

    Hello Brian,.

    There is a forum located there that is specifically for Windows Live Hotmail problems. Here is the link:
  • every time I try to install something windows tells me I can't install it because I install another prgm, but don't want to install anything...

    every time I try to install something windows tells me I can't install it because I install another prgm, but don't want to install anything...

    Hi MatthewMessmer,

    1. Did you the latest changes on the computer?
    2. You receive the error message when you try to install a program on the computer?
    3. You have security software installed on the computer?

    Method 1

    First restart the computer and try to install programs on the computer.

    I suggest that you restart the Windows Installer service and check if it helps.

    Refer to the article below and try the steps listed in the section Windows installation problems, check to see if it helps.

    How to troubleshoot issues that may occur when you install, uninstall, or upgrade one program on a Windows computer

    http://support.Microsoft.com/kb/2438651

    Method 2

    If the previous step fails, then temporary disable the security software on the computer and check if that helps.

    Important: Antivirus software can help protect your computer against viruses and other security threats. In most cases, you should not disable your antivirus software. If you do not disable temporarily to install other software, you must reactivate as soon as you are finished. If you are connected to the Internet or a network during the time that your antivirus software is disabled, your computer is vulnerable to attacks.

  • in vista how can I pass notpad text to a mail recipient?

    I have vista how can I pass on notpad text to a mail recipient? I havn't got 'word' installed.

    Thank you.

    You can go to file | Except that in Notepad to save the text.  You can then use Insert | Attachment to attach the text of a message to the folder (or just drag the file recorded by the message above, then drop it) or you can just copy the text (use follow-up of CTRL-A CTRL-c), then in an e-mail message, and then paste it (CTRL-V).

    Steve

  • Can not pass my account!

    I have major issues trying to pass my email to a Microsoft account. My email is the @Hotmail.com end so I don't see why it does not work. When I try to do, it says there was an error and the error 0x800b0101 code. I don't know if this code can help someone help me or not, but I really need to get this figured out! If I can't get this done so I need to try to return my SurfacePro3 because I need to be able to access and do what I would like for the school on this thing. Thanks in advance!

    Hi Mariah,

    Thanks for posting the request in Microsoft Community Forums.

    We will analyze and identify the cause of the problem. This problem normally occurs when there is no incorrect configuration settings of the computer. The steps described here.

    Method 1: Troubleshoot Microsoft Account

    I suggest the first run the troubleshooter in Microsoft Account to check if the problem with the Microsoft account. Here is a link to download and run the Troubleshooter:

    http://go.Microsoft.com/fwlink/?LinkId=268424

    Method 2:

    Step 1: Check that the time zone defined in the settings of the clock is correct.

    a. click on Date and time shown in the taskbar and click then on change date and time.

    b. the Date and time tab, click on the hour and the date of change.

    c. set the date and time.

    d. then click change time zone , select your time zone and click ok.

    e. click the tab time Internet and then click change settings.

    f. place a check on synchronize with a time server Internet.

    g. in the Server option, select time.windows.com and click on update now.

    h. press on apply and ok and then restart the computer and check.


    Step 2:

    Try to make the reliable device and check the results.

    Trusted devices: FAQ

    http://Windows.Microsoft.com/en-in/Windows-8/what-is-trusted-device

    Also, try the steps mentioned by "Steven S" in the material provided. You can try the steps stipulating 'switch to a Local account and return to a Microsoft account'.

    http://answers.Microsoft.com/en-us/Windows/Forum/windows_cp-security/IM-having-trouble-with-my-Microsoft-account-how-do/b2d1277c-0be2-43B6-BDF3-c4f7954515be

    Hope this information helps. Response with status so that we can help you.

Maybe you are looking for

  • f223cl: Downgrade hp f223cl

    Hello! I don't like windows 8.1 and try windows 10 but not compatible with linux, so I formatted my hard drive and install my new windows 7 pro, but not recognize anything, even network card doesn't work, so I would like to help me with this problem,

  • Problem when I type the letter "o".

    Hello to the Forum I have a strange problem with my laptop which began just today that the problem is when I type the letter "o".in a sentence, the cursor jumps to the beginning of what I typed. It affects all the programs I need to typeThat is to sa

  • Sync for Sony Ericsson phones software

    Does anyone knows a good synchronization software for Sony Ericsson phones that works well with the Toshiba Bluetooth stack?I used the official version of Sony Ericsson and it worked fine, but it seems not to support MS Office 2010 which I use now.

  • Satellite L650-PSK1EA-06L02F - where are the specifications?

    I'm looking to buy some RAM to upgrade for laptop computer to my father, but Toshiba support page lists absolutely nothing under specifications tab for this model.http://www.MyToshiba.com.au/support/computers/satellite/L650/psk1ea-06l02f/specificatio

  • Deployment of VeriStand model to cRIO-9024

    Hello I am trying to deploy a dll of Veristand simulink to my target RT VxWorks cRIO model 9024 but I get error compatibility while deploying, saying:... Specified model is not supported in the current execution target! I created the DLL file and out