How to use the code to update to mountain lion?

hi
How can you use the code tu free update to Mountain Lion?  thks

Basically you are asking as how to port silverlight to Xaml (RT). Go one by one converting each API from silverlight to XAML, like IsolatedStorage isn't there in RT, so look for its alternative etc.
See here the namespace/class mappings : Windows Phone Silverlight to Windows Runtime namespace and class mappings
http://developer.nokia.com/community/wiki/Using_Crypto%2B%2B_library_with_Windows_Phone_8

Similar Messages

  • Since the last software update for mountain lion I am having a problem when moving screenshots to trash. Now a Finder box appears saying finder wants to make changes and I have to enter my password for every action.

    Since the last software update for mountain lion, I am having a problem when trying to remove any screenshots to the trash. A box appears saying "Finder wants to make changes. Type your password to allow this"
    I have checked Finder Preferences and cannot find any box that I can 'UNTICK' to resolve this. I sometimes take a lot of screenshots when I am researching something and now find I have to enter my password for every screenshot to be removed to trash.
    Anyone got a solution please, Thanks

    Have you looked at the previous discussions listed on the right side of this page under the heading "More Like This"?

  • Cannot use the CS6 blur filters with Mountain Lion

    Cannot use the CS6 blur filters with Mountain Lion since I cannot see the circle and other adjustement lines of the UI. I had no problems using these filters with Lion. Could you help.
    Thanks

    Slateskies wrote:
    ... I'm doing this because of a new game that requires OS 10.6.8. ...
    Why not just Upgrade to 10 6 8 which is Snow Leopard...
    First you need to check that your current Mac meets the System Requirements for Snow Leopard...
    Snow Leopard Specs:
    http://support.apple.com/kb/SP575
    If it does... then you need to Purchase and Install Snow Leopard Disc,
    Mac OS X 10.6 Snow Leopard
    ( It should be noted that Apple will send paid MobileMe members the Mac OS X 10.6 DVD for free.)
    Would Also Recommend that you do a Bootable Clone Backup of your current Hard Drive Before attempting any Major Upgrade...
    By far the easiest way to make a Backup, is to use something like
    SuperDuper  http://www.shirt-pocket.com/
    or CCC  http://www.bombich.com/

  • How to use the code written in App.Xaml.cs in Windows Phone 8 in Windows Phone 8.1 Universal Apps

    i have a App.xaml.cs file in Windows Phone 8.0 , amd i want to use the code in that file to make work with App.xaml.cs file in Windows Phone 8.1 Universal Apps
    My Windows Phone 8 App.xaml.cs file is like as below
    namespace OnlineVideos
    public partial class App : Application
    #region Initialization
    public static dynamic group = default(dynamic);
    public static dynamic grouptelugu = default(dynamic);
    public static ShowList webinfo = default(ShowList);
    public static WebInformation webinfotable = new WebInformation();
    AppInitialize objCustomSetting;
    IsolatedStorageSettings settings = IsolatedStorageSettings.ApplicationSettings;
    DispatcherTimer timer;
    IsolatedStorageFile isoStore = IsolatedStorageFile.GetUserStoreForApplication();
    public static bool AdStatus = false;
    public App()
    UnhandledException += Application_UnhandledException;
    if (System.Diagnostics.Debugger.IsAttached)
    Application.Current.Host.Settings.EnableFrameRateCounter = true;
    //RootFrame.UriMapper = Resources["UriMapper"] as UriMapper;
    AppSettings.NavigationID = false;
    objCustomSetting = new AppInitialize();
    timer = new DispatcherTimer();
    Constants.DownloadTimer = timer;
    InitializeComponent();
    InitializePhoneApplication();
    #endregion
    #region "Private Methods"
    void StartDownloadingShows()
    timer.Interval = TimeSpan.FromSeconds(10);
    timer.Tick += new EventHandler(timer_Tick);
    timer.Start();
    void timer_Tick(object sender, EventArgs e)
    try
    BackgroundWorker worker = new BackgroundWorker();
    worker.DoWork += new DoWorkEventHandler(StartBackgroundDownload);
    worker.RunWorkerCompleted += new RunWorkerCompletedEventHandler(worker_RunWorkerCompleted);
    worker.RunWorkerAsync();
    catch (Exception)
    void worker_RunWorkerCompleted(object sender, RunWorkerCompletedEventArgs e)
    if (AppSettings.StopTimer == "True")
    timer.Stop();
    AppSettings.StopTimer = "False";
    async void StartBackgroundDownload(object sender, DoWorkEventArgs e)
    switch (AppSettings.BackgroundAgentStatus)
    case SyncAgentStatus.DownloadFavourites:
    if (AppSettings.DownloadFavCompleted == false && AppSettings.SkyDriveLogin == true)
    Deployment.Current.Dispatcher.BeginInvoke(() =>
    timer.Stop();
    ReStoreFavourites reStoreFav = new ReStoreFavourites();
    await reStoreFav.RestorefavFolder(ResourceHelper.ProjectName);
    Deployment.Current.Dispatcher.BeginInvoke(() =>
    AppSettings.BackgroundAgentStatus = SyncAgentStatus.UploadFavourites;
    timer.Start();
    else
    AppSettings.BackgroundAgentStatus = SyncAgentStatus.UploadFavourites;
    break;
    case SyncAgentStatus.UploadFavourites:
    bool result = Task.Run(async () => await Storage.FavouriteFileExists("Favourites.xml")).Result;
    if (AppSettings.SkyDriveLogin == true && result)
    Deployment.Current.Dispatcher.BeginInvoke(() =>
    timer.Stop();
    UploadFavourites upLoad = new UploadFavourites();
    await upLoad.CreateFolderForFav(ResourceHelper.ProjectName);
    Deployment.Current.Dispatcher.BeginInvoke(() =>
    AppSettings.BackgroundAgentStatus = SyncAgentStatus.DownloadParentalControlPreferences;
    timer.Start();
    else
    AppSettings.BackgroundAgentStatus = SyncAgentStatus.DownloadParentalControlPreferences;
    break;
    case SyncAgentStatus.RestoreStory:
    if (AppSettings.DownloadStoryCompleted == false && AppSettings.SkyDriveLogin == true && (ResourceHelper.ProjectName == "Story Time" || ResourceHelper.ProjectName == "Vedic Library"))
    Deployment.Current.Dispatcher.BeginInvoke(() =>
    timer.Stop();
    RestoreStory restore = new RestoreStory();
    //if (ResourceHelper.ProjectName == "Story Time")
    await restore.RestoreFolder("StoryRecordings");
    //else
    // await restore.RestoreFolder("VedicRecordings");
    Deployment.Current.Dispatcher.BeginInvoke(() =>
    AppSettings.BackgroundAgentStatus = SyncAgentStatus.UploadStory;
    timer.Start();
    else
    AppSettings.BackgroundAgentStatus = SyncAgentStatus.UploadStory;
    break;
    case SyncAgentStatus.UploadStory:
    if (AppSettings.SkyDriveLogin == true && (ResourceHelper.ProjectName == "Story Time" || ResourceHelper.ProjectName == "Vedic Library"))
    Deployment.Current.Dispatcher.BeginInvoke(() =>
    timer.Stop();
    UploadStory st = new UploadStory();
    //if (ResourceHelper.ProjectName == "Story Time")
    await st.CreateFolder("StoryRecordings");
    //else
    // await st.CreateFolder("VedicRecordings");
    Deployment.Current.Dispatcher.BeginInvoke(() =>
    AppSettings.BackgroundAgentStatus = SyncAgentStatus.DownloadFavourites;
    timer.Start();
    else
    AppSettings.BackgroundAgentStatus = SyncAgentStatus.DownloadFavourites;
    break;
    default:
    ShowDownloader.StartBackgroundDownload(timer);
    break;
    #endregion
    #region "Application Events"
    private void pop_Opened_1(object sender, EventArgs e)
    DispatcherTimer timer1 = new DispatcherTimer();
    timer1.Interval = TimeSpan.FromSeconds(5);
    timer1.Tick += timer1_Tick;
    timer1.Start();
    void timer1_Tick(object sender, EventArgs e)
    (sender as DispatcherTimer).Stop();
    Border frameBorder = (Border)VisualTreeHelper.GetChild(Application.Current.RootVisual, 0);
    Popup Adc = frameBorder.FindName("pop") as Popup;
    Adc.IsOpen = false;
    private void Application_Launching(object sender, LaunchingEventArgs e)
    SQLite.SQLiteAsyncConnection conn = new SQLite.SQLiteAsyncConnection(Constants.DataBaseConnectionstringForSqlite);
    Constants.connection = conn;
    AppSettings.AppStatus = ApplicationStatus.Launching;
    AppSettings.StopTimer = "False";
    objCustomSetting.CheckElementSection();
    SyncButton.Login();
    if (AppSettings.IsNewVersion == true)
    AppSettings.RatingUserName = AppResources.RatingUserName;
    AppSettings.RatingPassword = AppResources.RatingPassword;
    AppSettings.ShowsRatingBlogUrl = AppResources.ShowsRatingBlogUrl;
    if (ResourceHelper.AppName == Apps.Online_Education.ToString() || ResourceHelper.AppName == Apps.DrivingTest.ToString())
    AppSettings.QuizRatingBlogUrl = AppResources.QuizRatingBlogUrl;
    AppSettings.LinksRatingBlogUrl = AppResources.LinksRatingBlogUrl;
    AppSettings.ShowsRatingBlogName = AppResources.ShowsRatingBlogName;
    AppSettings.LinksRatingBlogName = AppResources.LinksRatingBlogName;
    if (ResourceHelper.AppName == Apps.Online_Education.ToString() || ResourceHelper.AppName == Apps.DrivingTest.ToString())
    AppSettings.QuizLinksRatingBlogName = AppResources.QuizLinksRatingBlogName;
    Constants.UIThread = true;
    group=OnlineShow.GetTopRatedShows().Items;
    grouptelugu = OnlineShow.GetRecentlyAddedShows().Items;
    Constants.UIThread = false;
    StartDownloadingShows();
    private void Application_Activated(object sender, ActivatedEventArgs e)
    AppSettings.AppStatus = ApplicationStatus.Active;
    if (ResourceHelper.AppName == Apps.Kids_TV_Pro.ToString())
    AppSettings.ShowAdControl = false;
    private void Application_Deactivated(object sender, DeactivatedEventArgs e)
    AppSettings.AppStatus = ApplicationStatus.Deactive;
    AppState.RingtoneStatus = "TombStoned";
    private void Application_Closing(object sender, ClosingEventArgs e)
    AppSettings.AppStatus = ApplicationStatus.Closing;
    private void Application_UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e)
    FlurryWP8SDK.Api.LogError("Error at Application_UnhandledException in App.xaml.cs", e.ExceptionObject.InnerException);
    if (System.Diagnostics.Debugger.IsAttached)
    System.Diagnostics.Debugger.Break();
    else
    Exceptions.SaveOrSendExceptions("Exception in Application_UnhandledException Method In App.xaml.cs file.", e.ExceptionObject);
    e.Handled = true;
    return;
    #endregion
    #region Phone application initialization
    public PhoneApplicationFrame RootFrame { get; private set; }
    // Avoid double-initialization
    private bool phoneApplicationInitialized = false;
    // Do not add any additional code to this method
    private void InitializePhoneApplication()
    if (phoneApplicationInitialized)
    return;
    // Create the frame but don't set it as RootVisual yet; this allows the splash
    // screen to remain active until the application is ready to render.
    RootFrame = new PhoneApplicationFrame();
    if (App.Current.Resources["AdVisible"] as string == "True")
    RootFrame.Style = App.Current.Resources["RootFrameStyle"] as Style;
    RootFrame.ApplyTemplate();
    RootFrame.Navigated += CompleteInitializePhoneApplication;
    // Handle navigation failures
    RootFrame.NavigationFailed += RootFrame_NavigationFailed;
    // Ensure we don't initialize again
    phoneApplicationInitialized = true;
    //NonLinearNavigationService.Instance.Initialize(RootFrame);
    private void RootFrame_NavigationFailed(object sender, NavigationFailedEventArgs e)
    if (System.Diagnostics.Debugger.IsAttached)
    System.Diagnostics.Debugger.Break();
    else
    Exceptions.SaveOrSendExceptions("Exception in RootFrame_NavigationFailed Method In App.xaml.cs file.", e.Exception);
    e.Handled = true;
    return;
    // Do not add any additional code to this method
    private void CompleteInitializePhoneApplication(object sender, NavigationEventArgs e)
    // Set the root visual to allow the application to render
    if (RootVisual != RootFrame)
    RootVisual = RootFrame;
    // Remove this handler since it is no longer needed
    RootFrame.Navigated -= CompleteInitializePhoneApplication;
    #endregion
    Mohan Rajesh Komatlapalli

    Basically you are asking as how to port silverlight to Xaml (RT). Go one by one converting each API from silverlight to XAML, like IsolatedStorage isn't there in RT, so look for its alternative etc.
    See here the namespace/class mappings : Windows Phone Silverlight to Windows Runtime namespace and class mappings
    http://developer.nokia.com/community/wiki/Using_Crypto%2B%2B_library_with_Windows_Phone_8

  • How to use the code posted in the thread

    Quick question. How do i use the code posted in the threads, because when I copy and past in the program it is not formatted well.
    Per example : In the below link there is some code which i want to use, but when i copy and paste in the ABAP editor i get lot of syntax errors.
    Re: BDC
    Thanks.

    Shiva,
    I dont think you can do much about this because the code which you mentioned in that thread should have been kept using markup 
    Thanks
    Bala Duvvuri
    Edited by: Bala Duvvuri on Jul 15, 2010 7:29 PM

  • How to use an HP Laserjet 3200 on Mountain Lion?, How to use an HP Laserjet 3200 on Mountain Lion?

    I hae upgraded my 21.5 inch iMAC serial number W 89452185 PC bought in the fall of 2009
    to Mountain Lion OS X 10.8.2 (12C60) but now I am unable to print with my trusted/old HP Laserjet 3200.
    Can you please help me?
    Thank you!
    Albert ([email protected])

    Here's a screenshot that may be relevant:

  • I was using Mavericks Version for iPhoto 9.5.1 now i want to use the same library into my Mountain Lion version of iPhoto 9.4.3. how it;s possible?

    i just re installed Mountain Lion 10.8.5 on my Mac. i was using Maverics 10.9.1 before now my question is my iPhoto library is unable to open on Mountain Lion version of iPhoto because i copy that library from Maverics version of iPhoto 9.5. now i am able to open iPhoto 9.5 library to iPhoto 9.4.1

    After you download the upgrader, you will need to go to your Applications folder and find the Utilities folder.
    In there will be the iPhoto Library Upgrader (version 1.1). Open the application and follow the instructions. Should get you going.

  • How long does it take to update latest Mountain Lion OS?

    I have just updated my OS to the latest version of Mountain Lion. It is 10.8.5 now. however when it restarted, it stopped at the gray Apple logo screen and now the beach ball has been spinning for a long time. Is this normal? How long should I expect? And if not, any solutions to repair this OS?
    Thanks
    M

    No, it's not normal, and may indicate the presence of incompatible software or hardware.
    Read and follow all the instructions in the following: Mac OS X: Gray screen appears during startup
    Please determine if the problems also occur in "Safe Mode":
    Safe Mode or "Safe Boot" is a troubleshooting mode that bypasses all third party system extensions and loads only required system components. Read about it: Starting up in Safe Mode
    You must disable FileVault before you can start your Mac in Safe Mode.
    Starting your Mac in Safe Mode will take longer than usual, graphics will not render smoothly, audio is disabled on some Macs, and some programs (iTunes for example) may not work at all.
    Merely starting your Mac in Safe Mode is not intended to resolve the problem, it's to observe its performance without certain additional components.
    To end Safe Mode restart your Mac normally. Shutdown will take longer as well.

  • How do i turn off auto update for mountain lion OS?

    Today my computer informed me it was going to perform an update and restart my computer.  This is a first for me with Apple products. 
    Does anyone know how to turn off auto-update?  When installing the software i ticked the box that disallowed auto-update but i must have missed doing it some other place in the upgrade process.
    Thank you.

    davefromtemple wrote:
    Thomas... another bad answer.  When you say...
    Your Mac will never force you to update.  WRONG.
    When I updated to the latest software updates... I was asked if I would like automatic updates.
    Unfortunately, I pressed Yes.
    Now, I'm in the middle of working on something and my display goes bright white... then I get a message that says "Installing Software Update"... then the display goes bright white... the computer turns off and I need to sign on again.
    AND I can't find a way to turn off automatic software updates!
    You are posting in the wrong forum, please try to keep up.

  • Dead/inaccessible parts on the screen after updating to mountain lion

    I have updated my iMac (2007: 2.4 GHz, 4GB 667 MHz DDR2 SDRAM) to Mountain Lion and have experiencened major issues when having several apps/windows open at the same time. This causes ”dead” parts on the screen that become inaccessible. When clicking somewhere on i.e. Safari or iTunes the window deselects, as if clicking on the desktop. In order to be able to type something in the iTunes quick search I then have to drag the whole window down to a part of the screen that isn’t dead. This means a lot of dragging up and down to be able to use my computer.
    I have the same Problem on my MBP and done a lot of research but no one seems to have a similar problem.
    Any ideas?
    Thanks
    David

    If you boot up in safe mode (hold down the shift key while booting until you see the Apple Logo) do you still have the problem?

  • How to use the iCloud password update on an iMac?

    I have changed my password for iCloud and my iMac keeps telling me that i will have to reset the password through the app.com website. I have done this three times and the iMac still does not update my password. So i am thinking that i will have to reset my computer, is this a good option, if so
    how do i do this?

    Unfortunately Apple has not (yet) implemented a resolution independent GUI. This means that the only way to change the size of text overall is to change the resolution of the display - System Preferences > Displays. The problem with this is that LCDs have one resolution that's native. Changing the resolution of your display will make the font larger but it will tend to redult in a fuzzy display. However it is worth playing with since iMacs generally do have more than one resolution that works without fuzziness. Whether any of them will meet your needs is another story.
    But as you found with Safari, it is possible to change the resolution of individual applications. While we cannot change the native resolution of the menubar and some aspects of an application, we can change some of them. For example, I have Word & Excel configured to automatically display file contents at 150%. Not all programs offer this capability but many do.

  • Problem accessing internet using time capsule after update to mountain lion

    After updating my macbook air to moutain lion i am having some trouble accessing internet.
    Evertytime i re-start my mac or airport utility i am able to access internet properly. After sometime when i access some particular sites, internet access goes down and i need to restart time capsule to access internet again.
    Even though in airport utility internet is marked as disconnected, time capsule's indicator is still glowing green colour.
    I tried deleting the com.apple.timemachine.plist file from /Library/Preferences/, but still no luck.
    Is anybody else also facing the same problem? How can i resolve this problem?

    Is the time capsule the only router in the network?
    Try setting the lease time in the TC to very short value.. 20min or even less, 10min. It will not add signficant network traffic but might keep the Air updated to the TC.
    I would also use SMB compatible name for the TC as well as wireless.. ie short, no spaces.. pure alphanumeric.
    Set a different name for 5ghz so it cannot swap around.
    And lock the wireless channels. Try each channel in turn, to see if any are better.

  • Can i delete my emails from the server using the default mail program in mountain lion?

    how can i delete emails from the server in mail on os 10.8.1?

    Hi, check Mail>Preferences>Accounts, both Mailbox Behaviors & Advanced tab to see those settings.

  • Apple TV icon is not showing on macbook pro after update to Mountain lion

    I wanted to try Mirroring from my macbook pro to my tv using the new airplay update from Mountain lion but the icon is not showing after the update.

    Welcome to the Apple Community.
    AirPlay Mirroring requires a second-generation Apple TV or later, OS X 10.8 or better and is supported on the following Mac models: iMac (Mid 2011 or newer), Mac mini (Mid 2011 or newer), MacBook Air (Mid 2011 or newer), and MacBook Pro (Early 2011 or newer). It also requires the computer to be using wi-fi.

  • Example on how to use the NI "saving a front panel img to file" on a prog.

    New to the labview program - I'm trying to save the front panel of the displayed output to file. I downloaded "Panel_Image_to_File.zip" from the NI site. But I'm having problem using the code to our program so as to save the image as a jpeg.
    A simple example on how to use the code or any other code that will be able to save the front panel to a specified folder will be great.

    All you should need is an invoke node of VI class and the the method Get Panel Image. Wire the Image Data output to the Write JPEG File on the Graphics & Sound>Graphics Formats palette. The Invoke Node is on the application Control palette. When it's on the diagram, right click and select Class>VI Server>VI. Right click on it again and select Methods>Get Panel Image.
    Attachments:
    Save to jpg.jpg ‏10 KB

Maybe you are looking for

  • Locate SQL causes full table scans from Statspack

    Hello, In my statspack reports I see a lot of full tables scans (1,425,297) How can I locate the query that causes this ? stats$sql_plan should fit? Oracle is 9i Thank you

  • Finding books created by iAuthor

    I think the new textbooks and iAuthor are great.  But I have noticed that most books that are enhanced and require iBooks 2.0 or later or created in iAuthor are not in the textbooks section of the store.  This is confusing to me as if I am searching

  • How to de-activate Special Ledger

    Hi Some years ago, we have activated a special ledger based on a weekly calendar to get weekly sales. This calendar is year-dependent and is maintained upto 2011. That means that after 2010, we will not be able to post any document & also in FI will

  • Failing OpenGL & Mystery Wacom Int3

    Ok... tried posting under other topics, but I guess I need to start my own. I have tried calling tech support (HAH!!) and I am teetering on returning CS4. So PLEASE someone from the mothership give me a sign you care... Nvidia GeForce 8600GT 256mb do

  • Email wont stay open

    email wont stay open