Still no support for iOS devices or non-Safari browsers

Been a while now and still the new format doesn't support iOS devices - no formatting bar or ability to edit post.  Still, alternative browsers, e.g. iCab and Atomic, have different issues like format bar does appear but keyboard doesn't.
Should we be expecting an update sometime soon?

I cant find it now, but i saw a post by an apple corp poster saying that this was done purposefully to ensure a "solid" release, or something like that. Basically, iOS devices arent considered a significant user base to be worried about giving VERY limited functionality to.
They basically said that it would be developed into future updates, but with no timelines. Sounded to me like it would be a VERY long time before we get anything above basic text editor abilities. No wait a second, basic text editors can do BOLD! We cant even do that.
Jason

Similar Messages

  • Support for iOS devices

    I would like support for backup of my iOS devices in my TimeMachine.
    I would love the same functions I have for OSX to be available to my iPad & iPhone or att least single full backup over wi-fi.
    Am I the only one that finds the lack of this functionality kind of weird?

    iOS devices back up to iTunes on a computer....or....to iCloud.
    It is not possible to backup an iOS device directly using Time Machine, but if you backup your iOS device to a Mac, and then use Time Machine to back up the Mac, the backups of the IOS devices in iTunes are backed up using Time Machine.
    So, you could say that Time Machine will indirectly back up an IOS device.
    For more information on iOS backups, please see this Apple support document:
    http://support.apple.com/kb/ht1766

  • OneDrive for Business for iOS Devices - Accessing Non Office 365 Hosted Sites

    Hello,
    I have a SharePoint site that I host on premise and am not using Office 365 at all.  Is it possible for me to access the site using the iOS version of the OneDrive for Business app?  When I specify my username, password and SharePoint 2013 site
    URL i get a login error with username/password incorrect.
    Does the iOS app only support Office 365 implementations of SharePoint?
    Thanks

    what type of authentication you are using, this is the key?
    check this official blog:
    http://blogs.office.com/2014/02/27/introducing-onedrive-for-business-for-ios-v1-2/
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/3ad5b8ca-37e9-43b2-9201-9c5c339d157c/onedrive-for-business-ipad-app-with-onpremise-sharepoint-2013?forum=sharepointadmin
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog

  • How far are we off Newsstand support for iOS devices?

    I suppose there are enough of us holding off releasing our apps to coincide with the launch of Newsstand. I've heard WoodWIng have supplied the relevant wrapper code for Newsstand entry. Just wondered how far Adobe are off from updating the viewer builder to support this as well?

    Week or two ago Adobe stated this in Read me to new version of Viewer Builder:
    Beta iOS5 support
    To test Newsstand or other iOS5 features, you can create a v15 beta viewer for testing purposes. Use the v14 viewer version for any viewer app you intend to submit to Apple. Do not submit v15 beta viewer apps to Apple.
    Soon after iOS5 releases, you will be able to create a multi-folio viewer that appears in the Newsstand folder, making your app easier for your customers to discover.
    However new version 1.5 does not contain this feature and this feature is not present in current version of Read me (i've found it in Google Cache). So, maybe next version? Who knows :/.

  • Weird acting of Socket class while build for iOS device

    Hello,
    It's kind of weird and frustrating using Socket class to build package for iOS device (iPad in my case) - I do have the certificates files (P12, Provisioning) and I can build a package from FB4.5.1 too, but if I build the package as 'Fast' mode through 'Run Configuration' wizard the Socket works okay, but if I package with 'Standard' mode it never works - even I tested both the modes in same device! Any suggestions/idea - I couldn't able figure out why it's acting strange in different modes!
    Thank you.

    This is still become ridiculous - I've read in a document online that non-working socket has bug-fix with AIR 2.7, I was using 2.6 previously - so I downloaded the latest AIR 3.0 SDK and rebuild the project - yet its not working! This is ridiculous!

  • File.upload on Air SDK for iOS devices failed to send http request to server.

    I am trying to use ActionScript's File.upload to upload a file on Air SDK for iOS8 environment, but the File.upload does not work properly. No handler about the file upload is executed after File.upload is invoked, and no exception is caught. When I check the network traffic of the server side, I found that no http request even hit the server after File.upload is executed. The code snippet here is very simple.
      private var file:File;
      private var dir:File;
      //This method is executed to create a file and upload it when the Upload Button is pressed.
      protected function OnUploadButtonPressed(event:MouseEvent):void{
      var str:String = 'This is test';
      var imageBytes:ByteArray = new ByteArray();
      for ( var i:int = 0; i < str.length; i++ ) {
      imageBytes.writeByte( str.charCodeAt(i) );
      try{
      dir = File.applicationStorageDirectory
      var now:Date = new Date();
      var filename:String = "test" + now.seconds + now.milliseconds + ".txt";
      file = dir.resolvePath( filename );
      var stream:FileStream = new FileStream();
      stream.open( file, FileMode.WRITE );
      stream.writeBytes( imageBytes );
      stream.close();
      file.addEventListener( Event.COMPLETE, uploadComplete );
      file.addEventListener( IOErrorEvent.IO_ERROR, ioError );
      file.addEventListener( SecurityErrorEvent.SECURITY_ERROR, securityError );
      file.addEventListener(ErrorEvent.ERROR, someError);
      file.addEventListener(ProgressEvent.PROGRESS, onProgress);
      file.upload( new URLRequest("http://10.60.99.31/MyPath/fileUploadTest.do"));//This line does not work. No handler is executed. No http request hit the server side.
      } catch( e:Error ) {
      trace( e );
      //Complete Handler
      private function uploadComplete( event:Event ):void
      trace( "Upload successful." );
      //IOError handler
      private function ioError( error:IOErrorEvent ):void
      trace( "Upload failed: " + error.text );
      //SecurityError handler
      private function securityError(error:SecurityErrorEvent):void{
      trace( "Security error:" + error.text );
      //Other handler
      private function someError(error:ErrorEvent):void{
      trace("some error" + error.text);
      //Progress handler
      private function onProgress(event:ProgressEvent):void{
      trace("progressHandler");
    When executed on Air Simulator, it works fine as expected, and the file is successfully uploaded to the server. But When executed on iOS devices(in my case, iPad), as I explain early, no handler about the file upload is executed, and no the http request even hit the server. So I think the problem may be in the client side. It seems that the Air SDK for iOS just failed to send the http request for some reason.
    To make my problem more clear, I list my environment below:
    Development Environment:  Windows7 (64bit)  / Mac os 10.9.4 (Tested on  OS platforms.)
    IDE: Flash Builder 4.7
    Air SDK:  3.8 / 16.0.0 (After I updated to the lastest Air SDK 16.0.0 , the problem still exists.)
    Application Server:  Tomcat7 + Spring
    Target OS: iOS 8
    I have been struggling for this for days. So I really appreciate it if anyone has any idea about this.
    Thanks in advance.

    Hi bluewindice ,
    As you have quoted ( ActionScript's File.upload does not work on Air SDK for iOS devices ) , this issue has been replicated at our end, and our team will be working on it.
    Thanks,
    Tushar

  • HT201210 Why iphone 3g has no support for ios 5 + ..please allow us to download..

    Why iphone 3g has no support for ios 5 + ..please allow us to download..
    Please do anyhow. .anything ...you are the creater of apple.. I know you can do it. .please do anything that iphone 3g will support ios 5 ro greater than that..

    The 3G was discontinued over 2yrs ago.
    The 3GS was only discontinued about a month ago.
    Apple made the decision that the 3G would not get anything newer than 4.2.1 because of reasons only they know.
    Griping about it is pointless.
    Speculating about why is against the terms of use of these forums.
    The device is ancient... either accept that it will never get an update and live with it or buy something newer.

  • How to integrate flash media server 4.0 live streaming for iOS devices ?

    Hi All,
    I have website which has live streaming module its working fine, same module i want to integrate for iOS devices. For live video streaming we are using FMS 4.0. So please let me know how we can integrate this for iOS devices using flash media server 4.0.
    Thanks in Adavnce
    Mohammad Sharique

    You need to place the crossdomain.xml in the webroot folder. Create a text file in the webroot folder using notepad, and call it crossdomain.xml. The text below will give you a wide open access policy, which is fine for testing.
    <?xml version="1.0"?>
    <!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd">
    <cross-domain-policy>
              <allow-access-from domain="*" />
    </cross-domain-policy>
    For debugging HTTP streaming I recommend you get hold of something like Charles or Fiddler. These will greatly assist in pinpointing any issues.

  • No,I recently buy an android device which is running ver 4.0 and has flash player.So please make Adobe Flash Player for IOS devices pls!pls  .

    No,I recently buy an android device which is running ver 4.0 and has flash player.So please make Adobe Flash Player for IOS devices pls!pls  .

    You need to contact the folks at the link below.
    http://www.adobe.com/aboutadobe/contact.html

  • F4V player for iOS devices ?

    Hi All, Is there any player to play .f4v file for iOS devices application. (We are using Flash Media Server 4.0).     Thanks In Advance Mohammad Sharique

    You need to contact the folks at the link below.
    http://www.adobe.com/aboutadobe/contact.html

  • Can I still get Pages for iOS 4?

    Can I still get Pages for iOS 4?

    Not anymore.  Apple does not make older versions of the App available for download. Sorry.
    B-rock

  • Lag When Programming For iOS Device With Adobe Flash Professional.

    Hi, I'm trying to make an Application for iOS device, Everything is find, but when i installed it on my iphone 4 and my iPhone 4S my game start lagging, i don't what to do, i tried to simplifed the code but nothing is working i dont know if it's in the rendering or when i'm trying to export, but on my iPhone it's lagging.
    Any Help Please, Solution ?
    Thanks
    Francis

    Target gpu on the device you're testing .. you'll get much better results.
    You can do it on the xml configuration file on <renderMode> or if you're publishing in flash on the settings of renderMode select GPU.
    Also get rid as much as you can from vector graphics and use bitmaps instead.
    You can use Adobe's method of converting a vector in bitmap like this : myMC.cacheAsBitmap = true;
    And also if you're moving an object, scaling or changing it's transparency use myMC.cacheAsBitmapMatrix = new Matrix();
    These are some basic optimization tips.

  • Error coming while installing Berkeley database for IOS Device.

    Hi I want to install berkeley db in my MAC. My Xcode version is 4.5.2. I downloaded db-5.3.21(Berkeley) from oracle site.I installed command line tool for xcode. I installed berkeley db in my MAC for iPhoneSimulator. Where as for iPhone device I am unable to install. I am following below link for installing the berkeley db. http://docs.oracle.com/cd/E17076_02/html/installation/build_unix_iphone.html
    When I am installing berkeley db for IOS device it is showing following error.
    checking for arm-apple-darwin11.4.2-sh... no checking for sh... /bin/sh checking for a BSD-compatible install... /usr/bin/install -c checking for arm-apple-darwin11.4.2-cc... /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc checking whether the C compiler works... no configure: error: in /Users/celstra/rajaramesh/db-5.3.21/build_unix': configure: error: C compiler cannot create executables See config.log' for more details
    ............................... The error is telling that C compiler cannot create executables... But for iPhonesimulator it is not showing the error...
    Steps performed for installing Berkeley database for IOS device.
    export DEV_iOS=/Developer/Platforms/iPhoneOS.platform/Developer
    export SDK_iOS=${DEV_iOS}/SDKs/iPhoneOS6.0.sdk
    export COMPILER_iOS=${DEV_iOS}/usr/bin
    export CC=${COMPILER_iOS}/gcc
    export CXX=${COMPILER_iOS}/g++
    export CFLAGS="-arch armv6 -pipe -Os -gdwarf-2\
    -no-cpp-precomp -mthumb -isysroot $SDKROOT "
    export CXXFLAGS="-arch armv6 -pipe -Os -gdwarf-2\
    -no-cpp-precomp -mthumb -isysroot $SDKROOT "
    export CFLAGS=${LDFLAGS}
    export CXXFLAGS=${LDFLAGS}
    //export CPP=”/usr/bin/cpp ${CPPFLAGS}”
    export LD=${COMPILER_iOS}/ld
    export AR=${COMPILER_iOS}/ar
    export AS=${COMPILER_iOS}/as
    export NM=${COMPILER_iOS}/nm
    export RANLIB=${COMPILER_iOS}/ranlib
    ../dist/configure --host=arm-apple-darwin9\
    --prefix=$SDKROOT ...   
    Same steps i performed for iPHONESIMULATOR. But at that time c complier works fine. But while i am try to install for IOS device it is showing above error.
    Can we need any license software for this installation. Could any one please provide exact document regarding installation for IOS device.
    Any advice would be appreciated.
    Edited by: 1000547 on Apr 17, 2013 12:58 AM
    Edited by: 1000547 on Apr 17, 2013 1:03 AM
    Edited by: 1000547 on Apr 17, 2013 2:31 AM

    Thanks for the  reply komal i did that but not cleared..one thing when i create the build from my flash builder the error happens.but the same project i used in another flashbuilder and create build..That build works fine...is there any chance for flash builder compiler problem.
    cheers,
    venkat

  • HT1338 Java for iOS devices

    I am currently out of country and unable to log onto my personal email account via Comcast.net.  It is requiring me to have JavaScript activated.  But I have looked almost everywhere for a download for either my iPad or 4s iPhone runnning most current iOs.   Is there a location to download or is it even available for iOs devices?

    Java and Javascript are two very different things so don't confuse them.
    If you're  asking about Java there are mentions of it on the web but I've never tried to get it on the iPhone see How to Use Java on An iPhone
    If you asking about Javascript  then that is possible. Open settings on the iPhone go to Safari and make sure javascript is enabled see How to enable JavaScript on the iPhone

  • Design for iOS devices

    I am a novice with web design but was able to make a fairly simple site that looks fine with Safari or Firefox on my desktop but on an IOS device the spacing and layout are all out of wack.
    Is there a special way to design for IOS devices?
    Thanks in advance

    This particular forum was created to help those transitioning from Photoshop.com to Adobe Revel. Your question does not pertain to that topic.
    We also have many other forums relating to other Adobe products at: http://forums.adobe.com

Maybe you are looking for

  • How do I get rid of phantom albums from the itunes store which I haven't actually bought?

    A screenshot to explain: I already have The Soft Bulletin, which I downloaded from the itunes store a few years ago on a different computer. Anyway, I was rearranging the tracklisting for my own preference, when I was shown an option to 'complete my

  • Issue with "Find" in Bridge when searching external drive.

    When using "Find" in Bridge (version 2.1.1.9) in CS3 to search for files on an external hard drive I must either check "Include Non-Indexed Files" or go to the external drive and build the cache for the folders I want to search. Otherwise the files w

  • How to assign values to the parameter

    I have write a procedure in procedure builder like this: PROCEDURE "GETMCTOREPORT" ( p_logname IN VARCHAR2, p_mysql IN VARCHAR2, p_opyear IN VARCHAR2, p_exrate IN VARCHAR2, p_flag IN OUT VARCHAR2) but I don't know how to run this procedure, espically

  • My computer hates me...help me tame it...

    I'm not even sure where to begin, so I'll start with the most frustrating. 1. When trying to burn a dvd of my own video in idvd it gets to the part where it's done processingthe movie and preparing to burn and then I get the spinning color wheel and

  • I need HP Scan software but can't find it

    I have just installed my HP Color LaserJet Pro MFP M176n and it prints and copies fine. But I really need to scan to email and pdf - and I understand I can do this through HP Scan Software - but I cannot find it anywhere to download and install it. P