Skype kills its modern Windows 8 app in the name of "efficiency"

Instead of trying to bring its touchscreen app up to par with the desktop version, Skype will just discontinue the app altogether. With Windows 10 looming, Skype no longer wants to have one app for touchscreens and another for mouse-and-keyboard. As such, Microsoft is killing off Skype’s modern touchscreen app for Windows. Starting July 7, anyone who tries to use this app on Windows 8 or higher will be redirected to a download page for the desktop version. The news doesn’t affect Skype’s modern Windows Phone app, and Microsoft says nothing will change for users of Windows RT tablets, such as the Surface and Nokia 2520. Presumably, that means Windows RT users will still have access to the app, though it’s unlikely they’ll receive any updates. Sourced from Jared Newman | @onejarednewmanPCWorld

The official release is here:
http://blogs.skype.com/2015/06/11/a-more-efficient-skype-experience-for-your-pc/
It applies to the PC platform an not other mobile platforms.

Similar Messages

  • PCWorld commentary on retirement of Skype's modern Windows 8 app

    Instead of trying to bring its touchscreen app up to par with the desktop version, Skype will just discontinue the app altogether.
    With Windows 10 looming, Skype no longer wants to have one app for touchscreens and another for mouse-and-keyboard.
    As such, Microsoft is killing off Skype’s modern touchscreen app for Windows. Starting July 7, anyone who tries to use this app on Windows 8 or higher will be redirected to a download page for the desktop version.
    The news doesn’t affect Skype’s modern Windows Phone app, and Microsoft says nothing will change for users of Windows RT tablets, such as the Surface and Nokia 2520. Presumably, that means Windows RT users will still have access to the app, though it’s unlikely they’ll receive any updates.
    Sourced from Jared Newman | @onejarednewman
    PCWorld
    [Topic title updated by moderator to be more descriptive. Original topic title was: "Skype kills its modern Windows 8 app in the name of “efficiency”"]

    Strangely, Skype cited Windows 10 as a reason for abandoning its touchscreen app, but said nothing about offering a universal app for the upcoming operating system. A universal app would bestow a couple of distinct advantages: First, it would allow Skype to distribute its software through the Windows Store, allowing users to automatically get updates and easily re-download the app onto new PCs. It would also let Skype have a single app that works across phones, tablets, PCs, and the Xbox One. As it stands, Skype offers separate apps for each of these product categories, and distributes its desktop program through Skype.com. That’s not to say Skype won’t go universal after Windows 10's launched July 29. Microsoft is working on tools to convert desktop programs into universal apps, and it’d be downright shocking if Skype didn’t lead by example. Still, some of the details on this program are unclear, which might explain why Skype isn’t talking about it. In any case, it’s interesting that Skype is heading in a different direction than Microsoft Office, whose upcoming touch-friendly apps will be completely separate from the main desktop Office suite. Arguably, desktop Office is such a complex piece of software that merging it with the touch version just isn’t feasible right now. Sourced from : Jared Newman | @onejarednewmanPCWorld

  • How to create a window with its own window border other than the local system window border?

    How to create a window with its own window border other than the local system window border?
    For example, a border: a black line with a width 1 and then a transparent line with a width 5. Further inner, it is the content pane.
    In JavaSE, there seems to have the paintComponent() method for the JFrame to realize the effect.

    Not sure why your code is doing that. I usually use an ObjectProperty<Point2D> to hold the initial coordinates of the mouse press, and set it to null on a mouse release. That seems to avoid the dragging being confused by mouse interaction with other nodes.
    import javafx.application.Application;
    import javafx.application.Platform;
    import javafx.beans.property.ObjectProperty;
    import javafx.beans.property.SimpleObjectProperty;
    import javafx.collections.FXCollections;
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.geometry.Point2D;
    import javafx.geometry.Pos;
    import javafx.scene.Node;
    import javafx.scene.Scene;
    import javafx.scene.control.Button;
    import javafx.scene.control.ChoiceBox;
    import javafx.scene.input.MouseEvent;
    import javafx.scene.layout.AnchorPane;
    import javafx.scene.layout.StackPane;
    import javafx.scene.layout.VBox;
    import javafx.scene.paint.Color;
    import javafx.stage.Stage;
    import javafx.stage.StageStyle;
    import javafx.stage.Window;
    public class CustomBorderExample extends Application {
      @Override
      public void start(Stage primaryStage) {
      AnchorPane root = new AnchorPane();
      root.setStyle("-fx-border-color: black; -fx-border-width: 1px; ");
      enableDragging(root);
      StackPane mainContainer = new StackPane();
        AnchorPane.setTopAnchor(mainContainer, 5.0);
        AnchorPane.setLeftAnchor(mainContainer, 5.0);
        AnchorPane.setRightAnchor(mainContainer, 5.0);
        AnchorPane.setBottomAnchor(mainContainer, 5.0);
      mainContainer.setStyle("-fx-background-color: aliceblue;");
      root.getChildren().add(mainContainer);
      primaryStage.initStyle(StageStyle.TRANSPARENT);
      final ChoiceBox<String> choiceBox = new ChoiceBox<>(FXCollections.observableArrayList("Item 1", "Item 2", "Item 3"));
      final Button closeButton = new Button("Close");
      VBox vbox = new VBox(10);
      vbox.setAlignment(Pos.CENTER);
      vbox.getChildren().addAll(choiceBox, closeButton);
      mainContainer.getChildren().add(vbox);
        closeButton.setOnAction(new EventHandler<ActionEvent>() {
          @Override
          public void handle(ActionEvent event) {
            Platform.exit();
      primaryStage.setScene(new Scene(root,  300, 200, Color.TRANSPARENT));
      primaryStage.show();
      private void enableDragging(final Node n) {
       final ObjectProperty<Point2D> mouseAnchor = new SimpleObjectProperty<>(null);
       n.addEventHandler(MouseEvent.MOUSE_PRESSED, new EventHandler<MouseEvent>() {
          @Override
          public void handle(MouseEvent event) {
            mouseAnchor.set(new Point2D(event.getX(), event.getY()));
       n.addEventHandler(MouseEvent.MOUSE_RELEASED, new EventHandler<MouseEvent>() {
          @Override
          public void handle(MouseEvent event) {
            mouseAnchor.set(null);
       n.addEventHandler(MouseEvent.MOUSE_DRAGGED, new EventHandler<MouseEvent>() {
          @Override
          public void handle(MouseEvent event) {
            Point2D anchor = mouseAnchor.get();
            Scene scene = n.getScene();
            Window window = null ;
            if (scene != null) {
              window = scene.getWindow();
            if (anchor != null && window != null) {
              double deltaX = event.getX()-anchor.getX();
              double deltaY = event.getY()-anchor.getY();
              window.setX(window.getX()+deltaX);
              window.setY(window.getY()+deltaY);
      public static void main(String[] args) {
      launch(args);

  • Is it possible to Silent Push a Managed Windows Phone App from the Store?

    Is it possible to silent push a Windows Phone app from the Store? We have a requirement to install a couple of apps after enrollment. Some of those apps are in the Store some are Enterprise apps.
    Thanks,
    Mark Monster
    Mark Monster Silverlight MVP

    Hi,
    No it is not currently possible, In Windows 10 a new business portal will be introduced that should solve this.
    Regards,
    Jörgen
    -- My System Center blog ccmexec.com -- Twitter
    @ccmexec

  • HT4009 I'm attempting to down load an app by the name of hudmaniax,upon entering my password for purchase approval I'm prompted to re enter my password a second time followed up with a form to create a security form ...I.e  name of first school attended e

    I'm attempting to down load an app by the name of hudmaniax,upon entering my password for purchase approval I'm prompted to re enter my password a second time followed up with a form to create a security form ...I.e  name of first school attended etc etC.

    This is normal behaviour.  Apple have recently introduced increased security to protect you from fraudulent transactions.  Once you have answered the questions (remember your answers) you will only be asked for them occasionally in future.

  • Having trouble removing a student email account from the Windows Mail App because the school has started using office 365 for thier email which i dont have access to

    I was wondering if anybody has any ideas on how to remove a gmail account that was set up by a community college for use on their mail servers and then find out that after awhile they have locked you out because they have started using office 365 for their
    emails and you are left with a student email account that you have no idea how to delete because you have missied out on deleting it before they changed to a different email provider?
    Anybody with ideas please help because I don't know what to do

    Hi,
    Regarding to Windows Mail App, do you mean the Modern UI App in Windows 8.1? Do you mean that you want to remove the email account from Mial App? Generally, we can simply remove the account by the "Account" option in Mail App (Open Mail App, move
    the mouse the right chram bar, click Account, then click the mail account\Remove account), but if the email acocunt is tied with the Microsoft Account which is used on the pc, in that case, it is unavailable to remove the email account, you need to contact
    your college to disconnect the Microsoft Account.
    If I'm misunderstanding something, please free correct me.
    Regards
    Yolanda Zhu
    TechNet Community Support

  • Image file can't be opened by windows store app if the file is in the Ext4's external hard disk.

    My question is described below:
    I have two disks, external hard disk and removable disk. They are formatted with EXT4.
    I put the same image in the disks, and use Ext2Fsd to mount the disks.
    I open the file in win8, and it will default open by the windows store app : photos.
    It will be success to open if the file is in the Ext4's removable disk.
    It will be failed to open if the file is in the Ext4's external hard disk.
    I don't know why it will be failed to open if the file is in the Ext4's external hard disk.
    Does anyone have similar experiences?

    Hi hatasum,
    Thanks for posting!
    Base on my experience, if installed Ext2Fsd, we can read the ext4 file system on windows system. But Which version of Ext2Fsd did you use? From my experience, Ext2Fsd is not spported fine  about windows 8 version. Please refer to this software official
    website (http://www.ext2fsd.com/ ) . I suggest you could post this issue to the Ext2Fsd discussion forum ( such as
    http://sourceforge.net/p/ext2fsd/discussion/143329/thread/7f262ad0/ )for better help.
    Thanks for your understanding.
    Regards,
    Will
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Connectiong Visual Studio 2010/2013 to SQL Database and Running VS Windows Form App in the Windows Azure Cloud

    Hi, good day
    Im going to have a little presentation before I finished my OJT and the topic that was given to is cloud computing. One of the task I need to do is to set up an application where in it can run and access real time on the "cloud". Now my prob is
    I already have windows azure account, made my database, BUT don't know how to connect it to my Visual Studio 2010/2013 (which is more preferable?), and if I ever connect it when my Windows Form is made can it run on the cloud also, how? Please help. Thank
    you so much.
    PS: I will be discussing this with people who doesn't know much about computing can you send me tips what to discuss? Double Thank You. :)

    Thank you for the help.. Another thing can I run my Windows Form App also on the cloud? Like if I present is it possible that the application that I will be doing can be uploaded and accessed on the cloud by the audience and can be used by many at the
    same time? Can you tell me how? Or give me a source how to do it? I downloaded the azure tools but I don't how to use it. I checked and tried activating and fixing my IIS and enabling support for ASP but still nothing, when I try to do cloudservice it says
    "get azure tools" even though I already have it installed in my laptop, and when I try to right click and upload the project to azure I don't see the usual option 'Upload to Microsoft Azure'. My app is a simple phonebook app with add, edit, delete and search
    function. Thanks again..

  • I cant slide the screen, but I can do double click. But also is a women is telling me what to do, like the time, the names of the apps or the names of the folder.

    I dont know what i did,but when i tried to slide the screen, it wont let me, first i have to see what i want to choose, then i have to do the double click, i really dont know how to change and put it as i have it before, also is a women from the ipad telling me what to do, for example: the name of the apps, folders, the time, the day.

    You have activated some of the accessibility controls.
    Go to settings/general/accessibility here you can find out what is turned on and off.
    The the voice over sounds like the first one to check. this will turn off the lady's vioce.
    Hope this helos.
    PJRS

  • Skype for Modern Windows uses old P2P file trasfer...

    The old P2P file transfer mode is not supported on Skype for Windows Phone. Only image file transfer using the new Cloud-based mode is supported. Older Skype devices are not capable to send files using the Cloud-based mode. This means that you can only receive image files sent from latest Skype versions installed on Windows/Mac computers and newer smartphones.
    When o when do we get an update from Skype for Modern Windows wich can use the new Cloud based transfer mode, even within Skype translate this is not the case so i have no hope. But we never know so Skype people do your best ........

    Hi,
    Thanks for your feedback. We will continue to add more features during the regular updates through the beta phase. Stay tuned.

  • Disable startup sound in 'Modern Windows' Skype

    Please help me to disable the horrible noise that Skype makes at startup. I know how to do it in normal Skype (desktop version). Now i need help to turn off the startup sound in Skype for Modern Windows (from Windows Store). 

    Probably no need to unless you have a Windows RT device http://community.skype.com/t5/Modern-Windows-from-Windows/Upgrade-now-to-Skype-for-Windows-desktop/td-p/4012052

  • Skype stopped working on Windows 8.1 x64

    Hello,
    Today I tried to log in to Skype desktop but first the start screen froze for a few second than it couldn't log in and I needed kill skype from the Task Manager because I couldn't close it. So I downloaded the latest desktop version(6.22.81.105) and installed it, but still there are problems on the first start after update it couldn't log in so I closed skype and tried to start again and now it froze after the intro screen popped up this happend twice now Skype starts but is still wont log in. So I can't get it work, the funny thing is that 72hours ago it worked just fine, since than I installed only one software which is Hyper-V and I don't think that can interfere with Skype if its not running. I checked the firewall but both skype desktop and the metro app is allowed so thats not the problem.
    Oh and of course metro app also can't start it never gets forder than the start screen where those dots are spinning.
    So how can I fix this? Because I realy want to use Skype on my PC.
    Before you ask I did no changes to my router, or anti virus software or any other sw and I didn't change any Windows settings (except as I wrote before I installed Hyper-V)
    Solved!
    Go to Solution.

    Try to reset all Skype settings.
    Quit Skype or use Windows Task Manager to kill any Skype.exe process. Go to Windows Start and in the Search/Run box type %appdata% and then press Enter or click the OK button. The Windows File Explorer will pop up. There locate a folder named “Skype”. Rename this folder to something different, e.g. Skype_old.
    Next go to Windows Start and in the Search/Run box type %temp%\skype and then press Enter or click the OK button. Delete the DbTemp folder.
    Restart Skype.
    N.B. If needed, you will still be able to re-establish your call and chat history. All data is still saved in the Skype_old folder.

  • [Forum FAQ] Go to Start Screen/Desktop when closing Windows Store App

    After install Windows 8.1 Update 1, you will notice these things set by default even on touchscreen laptops and desktops:
    Windows 8.1 now boots directly to the desktop.
    Closing Windows Store Apps and go to desktop instead of Start Screen.
    Besides option “When I sign in or close all apps on a screen, go to the desktop instead of Start” since Windows 8, another new option in Taskbar Properties “Show Windows Store app on taskbar” is used to control closing app behavior.
    Features of "Show Windows Store app on taskbar" 
    When the setting is checked, all of the Windows Store apps that are currently running will display on taskbar. You can easily switch between Windows Store apps and your desktop and its applications through the taskbar. For mouse users,
    you can also access the taskbar within a Windows Store app. Just move the mouse cursor to the button of the screen, the taskbar pops up.
    When the setting is unchecked,
    Windows Store apps have no minimize button, only Close button
    Windows Store apps that are open are not visible on Taskbar
    Windows Store apps can still be pinned to the taskbar
    How do these two options work for closing app behavior?
    Modern app and Taskbar   setting
    OFF
    ON
    Boot   to desktop setting
    OFF
    Close goes to Start
    Close reveals the   app that was previously used, and eventually dead ends at the Desktop
    ON
    Close goes to desktop
    Close reveals the   app that was previously used, and eventually dead ends at the Desktop
    Know why “When I sign in or close all apps on a screen, go to the desktop instead of Start” does not work when “Show Windows Store app on taskbar” is checked on
    As MironV mentioned in the
    thread, Windows 8.1 Update is designed to introduce a number of changes for mouse and keyboard users that would help them use and switch between Windows Store apps alongside their familiar desktop applications. A lot of these changes only made sense when
    combined together, so they are toggled by one setting, which is “Show Windows Store apps on the taskbar.” This is usually enabled together with the first setting as a complimentary set of improvements for desktop users. When the setting is enabled, Windows
    Store apps are intended to feel more like regular maximized applications living on the desktop, though they are full screen only. For example, when you launch apps from Start, they appear on the taskbar until they are closed. You can also minimize them or
    switch between them by invoking the taskbar.
    Please understand that unchecking the “When I sign in or close all apps on a screen, go to the desktop instead of Start" setting has no effect on close and minimize behavior when the “Show Windows Store apps on the taskbar” setting is checked, since
    they are controlling two independent things. If you tend to use only one Windows Store app at a given time, it may seem like we’re not respecting the setting by going to the desktop.
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    I don't know if I'm the only one, but on my desktop (using mouse and keyboard only) I like to have my Start screen as my main screen.  To ensure this I made sure to uncheck the "When I sign in or close all apps on a screen, go to the desktop" box and
    check the "Show Start on the display I'm using when I press the Windows Logo key" box. I also really like having the task bar appear at the bottom even when I'm using a modern app.  Based on the settings I've chosen (i.e., boxes I've checked or not checked),
    I would expect to be taken back to the start screen and not the desktop whenever I close an app.  From what I've read from your response and from others in this thread, in order to accomplish this function (i.e., closing an app and going directly to the
    start screen) I need to uncheck the "Show Windows Store apps on the taskbar" setting.  By doing this I get the functionality I was looking for when the apps are closed and I get sent to the start screen.  However, I am now not able to see the taskbar
    when I'm in a modern app or when I'm on the start screen.  This seems counterintuitive/confusing as many have mentioned.  Not to mention it creates an additional step for users to get back to the Start screen.
    All I want to do is (1) use my start screen as my main screen, (2) see the taskbar when running whatever app I'm using (e.g., modern), and (3) go back to my start screen (and not the desktop) when I close an app.  It would only make sense that I should
    get these results if I leave the "Show Windows Store apps on the taskbar" box checked and the "When I sign in or close all apps on a screen, go to the desktop instead of Start" box unchecked; but unfortunately this is NOT the case.  I really hope that
    an update fixing this is coming sooner rather than later because this is really annoying.

  • Code signing Windows Store Apps

    I can't get a very clear answer on the code signing requirement for deploying Windows Store Apps to the app store, even after searching the Internet for a couple of days. Specifically, my question is: are you required (not just recommended) to have a third
    party Code Signing Certificate to publish to the Windows App Store?
    I am not distributing the app to internal customers, but rather to external customers via the app store. If I'm missing this requirement documented in the documentation available on this site, can you point me to it?
    Michael

    All methods of deployment (Windows Store, PowerShell or System Center Configuration Manager) require the application to be signed using a certificate. The Windows Store channel requires a signing certificate
     from a publicly trusted CA because, well, the testers in the approval process won't have access to your internal PKI.
    Visual C++ MVP

  • Powershell to get Descriptions/Reviews of Windows Store apps ?

    I am so wildly excited that Win10 will come with a real package manager as well as that the idea of programmatically accessing Windows Store items for CRUD is a supported feature. This is a huge win for MS over Apple imho.
    The other thing that drives me crazy about Apple store (ie besides being hard/impossible to programmatically add/remove) and is similar to the Windows Store for win8 is the GUI-only display of pre-sales/pre-install information.
    Is there a way to get info about a Windows store app from the command line, eg Powershell? For example, can I print a list of review with their posting dates and the manufacturer's description?
    thank you!

    I love this! ty, here is a sample output ;
    Name : Microsoft.ZuneMusic
    Publisher : CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US
    Architecture : X64
    ResourceId :
    Version : 2.6.672.0
    PackageFullName : Microsoft.ZuneMusic_2.6.672.0_x64__8wekyb3d8bbwe
    InstallLocation : C:\Program Files\WindowsApps\Microsoft.ZuneMusic_2.6.672.0_x64__8wekyb3d8bbwe
    IsFramework : False
    PackageFamilyName : Microsoft.ZuneMusic_8wekyb3d8bbwe
    PublisherId : 8wekyb3d8bbwe
    IsResourcePackage : False
    IsBundle : False
    IsDevelopmentMode : False
    Dependencies : {Microsoft.VCLibs.120.00_12.0.21005.1_x64__8wekyb3d8bbwe,
    Microsoft.Media.PlayReadyClient.2_2.11.2154.0_x64__8wekyb3d8bbwe,
    Microsoft.WinJS.2.0_1.0.9600.17018_neutral__8wekyb3d8bbwe,
    Microsoft.ZuneMusic_2.6.672.0_neutral_resources.scale-140_8wekyb3d8bbwe}

Maybe you are looking for