link on how to install .csj in the BlackBerry Tablet OS SDK for Adobe AIR via a command prompt is broken

When in the form of help on how to get my installed LSB file, the link behind the "BlackBerry Tablet OS SDK for Adobe AIR via a command prompt" appears to be down.

someone else?

Why not to use FB to install the key of LSB

Tags: BlackBerry Developers

Similar Questions

  • Future of the Tablet OS SDK for Adobe AIR

    It has been months since the last update to the AIR SDK. With all the excitement surrounding the NDK, I'm starting to think I may need to re - write my application from scratch to have access to the PB magnetometer and gyroscope. I'm no expert air but have learned to appreciate the power of the Adobe platform. But I also believe that its value is strongly decreased because of Lake access to sensors, BlueTooth. and the statement of the API. There is a whole class of advanced applications that are missing from the App World due to the RIM footdragging.

    It is my understanding that AIR applications running on the desktop computer can access native libraries for things like BlueTooth and other material that is not directly supported. I don't understand why RIM has not yet published a simple extension to ActionScript so that I can complete my app.

    Is this too much to ask for an official update from the vision of the RIM for the AIR SDK?

    Personally, I think that more serious comments are noticed, discussed and propagated upwards when appropriate, and few things we are dealing with here are surprising in any way with persons on BOARD.

    I think that in most cases, things that we complain are well understood, and they have plans to deal with a lot or most of them in the future releases (some may imminent, judging by reports in the last two days).

    And I think that RIM expects a lot of these things, but simply felt forced into a strategy of liberation at the beginning (maybe a good strategy, if she somehow influenced things related to the TouchPad by RIM being first) with a lot of these things still in the works. I do not think that they have been "footdragging" much or at all, but are simply work very hard and invisibly for us, to bring us all these goodies as soon as possible. I can only wish for more transparency and communication on this subject, but their culture does not seem right now aligned with these principles.

  • How do to call the BlackBerry menu form share an Adobe Air application?

    Hello

    I'm looking for a tutorial or demo code that describes how to call the BlackBerry menu sharing an Adobe Air based application.

    I found a tutorial of waterfalls for it - there's one for Adobe Air too?
    - http://bbcascadescode.tumblr.com/post/38998702671/invoke-share-for-bb10

    This is a screenshot of the Action menu:

    Advice welcome!

    Here you go:

    package com.lib.playbook.invocation
    {
        import com.lib.playbook.controls.List;
        import com.lib.playbook.pages.TitlePage;
        import com.lib.playbook.renderers.IconListRenderer;
    
        import flash.events.Event;
        import flash.events.IEventDispatcher;
    
        import qnx.events.InvokeEvent;
        import qnx.events.InvokeQueryTargetEvent;
        import qnx.fuse.ui.core.Action;
        import qnx.fuse.ui.events.ActionEvent;
        import qnx.fuse.ui.events.ListEvent;
        import qnx.invoke.ActionQuery;
        import qnx.invoke.InvokeManager;
        import qnx.invoke.InvokeRequest;
        import qnx.invoke.InvokeTarget;
    
        public class InvokeSearchPage extends TitlePage
        {
            private var request : InvokeRequest = null;
            private var targets : List = new List();
    
            /////////////////////////////////////////////////////////////////////////////////////////
            public function InvokeSearchPage()
            {
                super();
                this.title = 'Search With';
                this.titlebar.dismissAction = new Action( 'Cancel', null, {id:'cancel'} );
                this.titlebar.addEventListener(ActionEvent.ACTION_SELECTED, ActionSelected );
    
                this.targets.cellRenderer = com.lib.playbook.renderers.IconListRenderer;
                this.targets.addEventListener(ListEvent.ITEM_CLICKED, TargetSelected );
                this.targets.rowHeight = 140;
                this.addChild( this.targets );
            }
    
            ///////////////////////////////////////////////////////////////////////////////////////////
            public function filter( request :InvokeRequest ) : void
            {
                this.targets.removeAll();
    
                this.request = request;
    
                //trace( 'filter ' + request.mimeType );
                InvokeManager.invokeManager.addEventListener( InvokeQueryTargetEvent.SUCCESS, TargetsFound );
                InvokeManager.invokeManager.queryInvokeTargets( request.mimeType, request.uri, request.action, request.targetOptions );
            }
    
            ///////////////////////////////////////////////////////////////////////////////////////////
            private function TargetsFound( event : InvokeQueryTargetEvent ) : void
            {
                InvokeManager.invokeManager.removeEventListener(InvokeQueryTargetEvent.SUCCESS, TargetsFound );
                //trace( 'TargetsFound' );
                var action : ActionQuery;
                var target : InvokeTarget;
                for each( action in event.actions )
                {
                    for each( target in action.targets )
                    {
                      this.targets.addItem( { data : target.target, label : target.label, icon : 'file://' + target.icon } );
                    }
                }
            }
    
            ////////////////////////////////////////////////////////////////////
            private function TargetSelected( event :Event ) : void
            {
                if( this.targets.selectedIndex >= 0 )
                {
                  this.request.target = this.targets.selection;
                  InvokeManager.invokeManager.invoke( this.request );
                }
            }
    
            ////////////////////////////////////////////////////////////////////
            private function ActionSelected( event :ActionEvent ) : void
            {
                switch( event.action.data.id )
                {
                    case 'cancel' : this.dispatchEvent( new Event( Event.CANCEL ) ); break;
                }
            }
    
            //////////////////////////////////////////////////////////////////////
            override protected function updateDisplayList(unscaledWidth:Number, unscaledHeight:Number):void
            {
                super.updateDisplayList( unscaledWidth, unscaledHeight );
    
                this.targets.setPosition( 10, this.top + 10 );
                this.targets.setActualSize( unscaledWidth - 20, unscaledHeight - this.targets.y - 10 );
            }
        }
    }
    

    And the rendering engine:

    package com.lib.playbook.renderers
    {
    
        import qnx.fuse.ui.display.Image;
        import qnx.fuse.ui.listClasses.CellRenderer;
    
        public class IconListRenderer extends CellRenderer
        {
    
            private var icon    :Image = new Image();
    
            /////////////////////////////////////////////////////////////////////////
            public function IconListRenderer()
            {
                super();
            }
    
            ///////////////////////////////////////////////////////////////
            override protected function onAdded():void
            {
                super.onAdded();
                this.addChild( this.icon );
            }
    
            ///////////////////////////////////////////////////////////////
            override protected function onRemoved():void
            {
                super.onRemoved();
                this.removeChild( this.icon );
            }
    
            /////////////////////////////////////////////////////////////////////////////////////
            override protected function drawLabel(unscaledWidth:Number, unscaledHeight:Number):void
            {
                super.drawLabel( unscaledWidth, unscaledHeight );
    
                if( this.data )
                {
    
                    if( this.data.hasOwnProperty( 'icon' ) && this.data.icon != null )
                    {
                        this.icon.setImage( this.data.icon );
                        this.icon.setPosition( 10, 15 );//( unscaledHeight - this.icon.height ) / 2 );
                    }
                    else
                    {
                        this.icon.setImage( null );
                    }
    
                }
    
                this.label.x = 140;
                this.label.width = unscaledWidth - this.label.x - 20;
            }
        }
    }
    

    references com.lib.playbook our our inner classes, but you should get the approach to apply.

  • How can I turn off the options to context menu for Adobe Acrobat on Windows 7?

    Hello

    I wonder if anyone can tell here:

    1. The Explorer of Windows 7, I have context menu options to "Convert to Adobe PDF" and "convert to Adobe PDF and send". Both these options ask me to choose a target file name, but when you select a file, Office 2010, I get a message about the missing PDFMaker files. Can I remove these options from popup menu?
    2. In the Explorer of Windows 7, I also have context menu option 'combine taken supported files in Acrobat. But once again, with Office 2010, this fails because "Windows can not find Acrobat.exe. Can I remove this option from context menu?

    I think anyway, there are some compatibility issues between Office and Acrobat X and I have no use for the options menu It's just clutter. I have Office 2010 32-bit.

    Thank you

    Martin O'Shea.

    I have no idea. I don't use WIn7. ShellExView is the best way to remove it. You can search in the registry. And then delete. But please make sure that you delete the entries on the right

  • Can't see the BlackBerry Tablet OS in the settings of the Mobile tab when you create a new project

    Hello

    I followed all the instructions, but when I got to build a new project, I can't find the Black Berry Table OS compiler option. All I see is the google android.

    I must have missed something somewhere. Has anyone had this problem before?

    This has been discussed on several positions... Take a look at: http://supportforums.blackberry.com/t5/Tablet-OS-SDK-for-Adobe-AIR/Problem-with-adobe-flash-builderb...

    If you use Flash Burrito, you must set the language of 'International English' at time of installation and also install it in Administrator, including Adobe AIR SDK mode.

  • How to install and configure the virtual machine with XP as an operating system on a Machine running Vista

    How to install and configure the virtual machine and XP operating system inside, with vista as my work machine.

    * original title - how to install and configure the computer virtual and XP operating system inside, with vista as my work machine.*

    How to install and configure the virtual machine and XP operating system inside, with vista as my work machine.

    Hey Preethi23

    It comes to the installation of vista operating system instance

    read the links below

    http://www.Microsoft.com/Windows/Virtual-PC/support/Virtual-PC-2007.aspx

    http://www.Microsoft.com/Windows/Virtual-PC/support/FAQ.aspx

    http://www.Microsoft.com/downloads/en/details.aspx?FamilyId=04d26402-3199-48A3-afa2-2dc0b40a73b6&displaylang=en

    Walter, the time zone traveller

  • How to install lightroom with the help of my redemption code

    How to install lightroom with the help of a redemption code?

    Hello

    You can not install lightroom with a redemption code.

    You must use a serial number to install it.

    For the serial number, click on the below mentioned link

    https://redeem.licenses.Adobe.com/getserial

    Enter the code of redemption on the link above and you will get the serial number.

    Thank you and best regards,

    Garima SALAUN

  • How to install rac on the VM?

    How to install rac on the VM?

    Hello world

    I want to install Oracle RAC on 2 nodes.
    I installed oracle enterprise server on the servers.

    And I ' t got one storage to another, then I shared disks on node 1 and I mounted the disc on Node2. When sharing of disk, I used the nfs file system.


    This method is a problem for the installation, you?

    Explain you step by step how to install oracle 11g rac on the VM?

    Thank you.

    Salvation;

    You can follow below link I followed

    http://becomeappsdba.blogspot.com/2007/07/step-by-step-build-RAC-part-1-install.html

    See also
    http://blogs.Oracle.com/AlejandroVargas/gems/StepbyStepRAConLinux3.PDF

    Respect of
    HELIOS

  • How to install applications on the desktop firefox?

    win xp sp3 firefox v 37:
    How to install applications on the desktop firefox?

    See apps Marketplace for Firefox Desktop

  • How to install pictures from the laptop in I phone plus 6?

    How to install pictures from the laptop in I phone plus 6?

    my name is aditya thakar

    You ask how do I put pictures that are on your computer to your iPhone.

    If so, you need to synchronize the photos on your phone using iTunes on your computer.

  • Please help me understand how to install updates with the following error updated Message__The following have not been installed: __Security update for Microsoft XP KB 2289162

    Please help me understand how to install updates with the following error Message

    The following updates were not installed:

    Security for Microsoft XP KB 2289162 update

    See the section "How to get help" of http://support.microsoft.com/kb/2289162

    For individuals, please visit the Microsoft Solution Center and antivirus security for resources and tools to keep your PC safe and healthy.  If you have problems with the installation of the update itself, visit the Microsoft Update Support for resources and tools to keep your PC updated with the latest updates.

    Buying to meet problems installing Microsoft security updates also can visit the following page for assistance: https://consumersecuritysupport.microsoft.com/

    ~ Robear Dyer (PA Bear) ~ MS MVP (that is to say, mail, security, Windows & Update Services) since 2002 ~ WARNING: MS MVPs represent or work for Microsoft

  • How to install Windows from the recovery in mSATA SSD partition?

    Hi all

    I intend to install mSATA SSD on my ThinkPad E420 soon. My laptop comes with the recovery partition in the hard drive. How to install Windows on the SSD drive?

    I am familiar with the WIndows installation of optical media, but never to the recovery partition (which I assume where is the installer of Windows).

    Thanks in advance.

    Best regards

    Haris

    Hello

    Sorry, I have no idea on how to install directly from a separate to another drive, but you may want to check this . You will need 1 CD (start) and a 4.7 GB DVD (data) because Lenovo recovery adds all this bloatware in factory settings.

    That said, if you want a clean install, use the Windows disk (in case you do not have the same edition, you can download it legally from the net, google it) and your OEM key for activation.

  • doubt Doc ID 1618305.1 how to install and configure the user interface for content with WebCenter content 11.1.1.8.0

    doubt Doc-ID 1618305.1 How to install and configure the user interface with WebCenter content 11.1.1.8.0 content

    The portal_domain field contains;

    AdminServer (admin) and Enterprise Manager, (port 7001)

    IBR_server1, (port 16250)

    UCM_server1, (port 16200)

    WC_Spaces1, (port 8888).

    On the same machine, I have another weblogic, admin and for the ITS.

    The case is that continued to develop for the upgrade to the new skin WebCenter content.

    That's my goal.

    Then I did some research and came to the following notes in support.

    1 - how to install and configure the UI content with WebCenter content 11.1.1.8.0 and 11.1.1.9.0 (Doc ID 1618305.1()

    https://support.Oracle.com/epmos/faces/DocContentDisplay?_afrLoop=290841671406625 & ID = 1618305.1 & _afrWindowMode = 0 & _adf. CTRL-State = c7eq7vwdt_216

    and

    2 - update of the 11.1.1.8.0 UI content after you apply the Patch of Bundle WebCenter content 3 (MLR 3) or higher (Doc ID 1617477.1()

    https://support.Oracle.com/epmos/faces/DocContentDisplay?_afrLoop=291485823387355 & ID = 1617477.1 & _afrWindowMode = 0 & _adf. CTRL-State = c7eq7vwdt_245

    The UCM_server1 has the following House / app / oracle / Middleware / Oracle_ECM1 /.

    And the list of patches;

    ===================================================================================================

    Installed products of higher level (1):

    Oracle WebCenter content management install 11.1.1.8.0

    There are 1 products in this House of Oracle.

    Installed products (40):

    Cloning of the 11g Application Server 11.1.1.8.0 component

    Enterprise Manager Application Server Integrator Plugin - Management Service Support11.1.1.7.0

    FMW Control Plugin for Oracle inbound refinery 11.1.1.8.0

    FMW Control Plugin for Oracle WebCenter Capture 11.1.1.8.0

    Component install SDK 11.1.0.9.0

    Oracle Application Server Configuration 11.1.1.7.0

    Part of Oracle 11.1.1.7.0 Bali

    Oracle 11.1.1.8.0 capture

    Common files Oracle WebCenter content management 11.1.1.8.0

    Oracle Content Server 11.1.1.8.0

    Content of Oracle 11.1.1.8.0 Server component

    Content access Content Server Oracle 11.1.1.8.0

    Access to the contents of the Oracle Content Server 11.1.1.8.0 files

    Oracle Content Server Core 11.1.1.8.0

    Oracle 11.1.1.8.0 server content distribution

    Oracle extended Windowing Toolkit 11.1.1.7.0

    Oracle Fusion Middleware Admin Config 11.1.1.6.0

    Oracle Help for Java 11.1.1.7.0

    Oracle Help for the Web - UIX 11.1.1.7.0

    Oracle Help for the Web Shared Library 11.1.1.7.0

    Oracle Help share library 11.1.1.7.0

    Ice browser Oracle 11.1.1.7.0

    Oracle IRM                                                           11.1.1.6.0

    Oracle extended JFC Windowing Toolkit 11.1.1.7.0

    One-time correction of Oracle 11.1.0.9.9 installer

    Oracle outside in technology 8.4.0.0.0

    Oracle Remote Client of Intradoc 11.1.1.8.0

    Component of Oracle 11.1.1.7.0 rules

    Oracle SOA 11.1.1.7.0 workflow

    Universal Oracle install 11.1.0.9.0

    Oracle Upgrade Wizard 11.1.1.8.0

    Oracle Upgrade Wizard 11.1.1.8.0

    Upgrade Oracle WebCenter content management 11.1.1.8.0 Assistant

    Oracle WebCenter Capture 11.1.1.8.0

    Oracle Webcenter content - rights 11.1.1.7.0 documentalist

    Oracle WebCenter content - Universal Content Manager 11.1.1.8.0

    Oracle WebCenter content management install 11.1.1.8.0

    Oracle WebCenter content 11.1.1.8.0 management product suite

    Oracle WebCenter content: Imaging 11.1.1.8.0

    OracleAS Documentation 11.1.1.8.0

    There are 40 products installed in this House of Oracle.

    Interim plates (2):

    Patch 18188143: applied the sea Mar 19 17:37:32 BRT 2014

    Patch ID: 17263162

    Created February 5, 2014, 12:56:41 pm

    Bugs fixed:

    15872313, 17184457, 17515691, 16633496, 14317920, 15991141, 16892410

    14071471, 17929776, 13414481, 16042293, 17018964, 17627211, 16768600

    16037162, 14521663, 17768056, 14738077, 16460053, 17567819, 17806416

    15905591, 16080297, 17569908, 17043756, 18139768, 17211093, 17805499

    16418434, 16828356, 16671687, 17039391, 16698130, 17943394, 17632731

    17560900, 14246603, 15941347, 16045712

    Location of patch in the inventory:

    / app/Oracle/middleware/Oracle_ECM1/Inventory/oneoffs/18188143

    Patch location in the storage area:

    /app/Oracle/middleware/Oracle_ECM1/.patch_storage/18188143_Feb_5_2014_12_56_41

    Patch 18088049: applied the sea Mar 19 17:35:58 BRT 2014

    Patch ID: 17182855

    Created February 16, 2014 20:35:48 hrs PST8PDT

    Bugs fixed:

    17919101, 17894065, 17884570, 17883868, 17883112, 17854549, 17835742

    17832305, 17819213, 17812338, 17789722, 17783376, 17778867, 17761746

    17740542, 17733871, 17698852, 17658821, 17642431, 17636186, 17622384

    17616664, 17616611, 17616489, 17613656, 17608703, 17589960, 17581458

    17574153, 17567413, 17565564, 17558210, 17558068, 17546505, 17545841

    17540480, 17528590, 17514070, 17511368, 17511271, 17511089, 17501678

    17500375, 17475733, 17449617, 17421368, 17417817, 17416821, 17416807

    17416771, 17416377, 17416343, 17402732, 17401071, 17401052, 17397875

    17393920, 17393892, 17369286, 17368525, 17368096, 17362858, 17362130

    17354877, 17353764, 17352746, 17335303, 17335290, 17330493, 17324707

    17323595, 17323038, 17317268, 17314494, 17313064, 17313052, 17313000

    17312990, 17312933, 17312863, 17312366, 17298386, 17295962, 17290804

    17285105, 17270986, 17261952, 17255019, 17219134, 17216119, 17206903

    17201035, 17200854, 17199763, 17187804, 17185539, 17171852, 17171818

    17164502, 17160600, 17153780, 17074852, 17050451, 17049175, 17026301

    17008220, 17007746, 17007534, 17006378, 16999307, 16999291, 16991380

    16980256, 16980207, 16980196, 16979042, 16961904, 16958142, 16954858

    16941623, 16936055, 16936048, 16936036, 16936020, 16936006, 16935987

    16935976, 16921682, 16908287, 16858148, 16815976, 16796213, 13931337

    17424037, 17006115, 17171834

    OPatch succeeded.

    ==============================================================================================

    And contains the following configurations in config.cfg

    ==============================================================================================

    SocketAddressHostSecurityFilter = 127.0.0.1 | 0:0:0:0:0:0:0:1 | 192.168.1. * | 10.62.1.79

    xPortalSecurityPropagate = true

    Web server = javaAppServer

    AllowUpdateForGenwww = 1

    SearchIndexerEngineName = OracleTextSearch

    IndexerDatabaseProviderName = SystemDatabase

    AdditionalEscapeChars = -: #.

    FileEncoding = UTF8

    MaxQueryRows = 2000

    DisableAuthorizationTokenCheck = true

    IntradocServerPort = 4444

    SchemaPublishInterval = 604800

    SSAllowDelayedProjectWrites = true

    IdcServerThreadQueryTimeout = 120

    DisableQueryTimeoutSupport = false

    MaxSearchConnections = 20

    #Cache

    UseSearchCache = false

    #

    #AdditionalEscapeChars = _: #, -: {-}, has: A, GOLD: GOLD, CAN: CAN, AND: AND at the END:

    # Accesing a content item on a mapped Web URL (WebUrlMap) fails with the error: "unable to retrieve the content. Security access denied» (Doc ID 1639028.1()

    MaxAccountsInSecurityClause = 300

    # end (Doc ID 1639028.1()

    #Search fails for external users in WCC after upgrade to 11.1.1.8.0 (Doc ID 1676468.1()

    DoCaseInsensitiveAcctSearch = false

    # end (Doc ID 1676468.1()

    #MigrationFormatForfApplicationGUID = dCollectionName:dCollectionGUID

    ==============================================================================================

    To my UCM_Server1 content WebCenter.

    As I already have a WebCenter content I have to follow the second part of the note

    How to install and configure the UI content with WebCenter content 11.1.1.8.0 and 11.1.1.9.0 (Doc ID 1618305.1).

    Install and configure content WebCenter ADF WebUI against WebCenter Content Server

    Step 1) install the MDS schema

    (Step 2), install the Weblogic Server

    11 GR 1 material step 3) DOWNLOAD and install Oracle Application Development Framework (11.1.1.6.0) in the new WebUI WLS Middleware House, found here

    Step 4) Download and apply Patch 16, 546 129.

    Step 5) Download and apply Patch 16, 546 157.

    Step 6) download and apply the Patch and then 19,469,801, 18,102,108 Patch

    Step 7) copy the wccadf files in the field of user interface

    Step 8) Oracle on demand services (MDS) metadata registry

    Step 9) Place the WebCenter content domain user interface model

    Step 10) run the Setup Wizard on the new home of Middleware WebUI to create the new domain

    Step 11) updated the Oracle ADF of shared libraries

    Step 12) start the domain WebUI administration server

    Step 13) Save target Managed Server with the MDS repository and create the metadata partition

    Step 14) start the server managed WebUI.

    Step 15) associate UI WebCenter content to Content Server.

    Step 16) reboot the WebUI ADF server managed.

    Step 17 access the WebUI

    Step 18) complete the Configuration of the workflow

    Step 19) apply the latest Patch Bundle content UI of WebCenter

    MY DOUBT IS:

    To read the steps that I understood, to 19, with success, in the end, I will have an another WebLogic with a domain name and its respective EM.

    I have two servers weblogic?

    portal_domain (explained above) and a new wccui_domain wls and domain.

    This fix it?

    Two WLS to keep WebCenter portal and content, and other elements.

    Because I'm not able to do with the WLS even where I UCM_server1 today?

    Thanks for all suggestions and criticism.

    To read the steps that I understood, to 19, with success, in the end, I will have an another WebLogic with a domain name and its respective EM.

    I have two servers weblogic?

    portal_domain (explained above) and a new wccui_domain wls and domain.

    This fix it?

    Two WLS to keep WebCenter portal and content, and other elements.

    Because I could not do with the WLS even where I UCM_server1 today?

    Yes, up to 11.1.1.9.0, you will need to install a new wls House (new wls server admin) and then configure WCC ui there. User interface and COE will not work in the same field. You can have the portal and content under the same House of wls and install a new one for the user interface.

    This is due to a problem with ADF and WCC libraries.

    With 12 c, this dependence is not there, and you can install / configure all 3 (Portal, content and adf ui) applications on the same domain.

  • How to install widgets in the library of Widgets in Muse CC 2015?

    Help, please!

    How to install widgets in the library of Widgets in Muse CC 2015?

    Download the widget, and double click it.

  • How to install and update the vm on linux systems tools and how to join an esxi host in domain

    How to install and update the vm on linux systems tools and how to join an esxi host in domain

    thanq very much boss

Maybe you are looking for

  • Notes is corrupt

    Hello! My friend is using the mac book air El capitan 10.11.6 (updated), it has some difficulties in the application notes and tried a few steps to solve the problem, but without success. I tried safe mode - no results, but he has a lot of data and d

  • HP Envy 15 j140na: suspected of sound card - no way to diagnose failure?

    I suspect a sound card that has failed on my HP Envy 15, I'm getting no audio through speakers or headphones. 10 Windows and Ubuntu, I have no sound card/no audio device detected. Is it possible to run hardware diagnostics on my laptop to confirm tha

  • Satellite C880 - GPU not allowed to photo editing

    I recently bought a laptop Satellite C880 for editing photos, but it seems to graphics edge are not good for her.Anyone who has had experience of this & know how to get around it?

  • Drive slowly and setup.exe does nothing

    Hello first: sorry for my English, I'm German, but I'll try my best ;) Now my problem:My HDD is very slow and is strangely reading (he still only reads the times and does nothing for 2-3 seconds after that). But my biggest problem is that if I want t

  • I can update my ios 7-8 without 9

    its posible update ipod touch ios 5 7-8 without 9