AIR 15 on iOS tlfText not rendered

I think I have a bug, but I'm still not convinced that it's the fault of the air.

I have an AIR applications for iOS, Android, Windows and Mac Publishing.

I use the version of Adobe Flash Professional CS6 12.0.2.529

I have a header positioned at 0,0 where to place two TLF textfields and some buttons. When I run on iOS 8 published under the name AIR version 15, I don't see my text, buttons display very well. When I run on Android, Windows, or Mac published as AIR 15, the text is very good. I placed my text under the heading (thinking maybe it was a black text on a black background - don't tell me you have never done this!)-the outcome proved the text was there (the "body" is positioned under the header and was pushed down when I did) - but I still didn't have my text.

When I compile my app with AIR 14, everything was fine, the text just like on Android, Windows and Mac released with AIR 15.

The funny thing is that I use tlfText exclusively in the entire application and all THE OTHER INSTANCES are very well, that it is precisely these text two fields render on iOS.

On a side note, in any case, I put my tlf text using tlfMarkup (mentioned because it doesn't seem to be very popular that I can't find many articles or support on this issue, I'm starting to regret this choice)

Any suggestions are appreciated.

UPDATE:

I tried to compile with 15.0.0.249 and 15.0.0.274 AIR (BETA) but the problem persists.

They said adobe no longer supports the tlftextfield. I had to spend all the flow of text. After that I started, it was an easy transition.

Tags: Adobe AIR

Similar Questions

  • Flash cc could not play video when I change target air 17 for IOS.

    The video works very well when it is in flash player 10 or higher, but when I played in a SWF with air 17 for IOS this is happening. When I wanted to publish this on the iPad device, and when I open the app, it was totally white without even the green bar that you can see in the screenshot.

    Screen Shot 2015-11-05 at 5.30.04 pm.png

    I think it is because you are using a component FLVPlayback stripped, which involves an external file that has code, and which is not allowed in the iOS. Either your H.264 video, which works in Flash player, but not in the iOS.

    If you play FLV, try to adjust the skin of the component to zero, see if the video will be displayed.

  • File.upload ActionScript does not work on Air SDK for iOS devices

    I try to use the ActionScript File.upload to transfer a file on Air SDK for iOS environment, but the File.upload does not work properly. No event on the file upload handler is executed after File.upload is called, and no exception is caught. When I check the side network traffic server, I found no application http even didn't hit the server after execution of File.upload. The code is below.

    ------------------------------------------------------------------------------------------ -----------------------------------------------------------------------

    <? XML version = "1.0" encoding = "utf-8"? >

    " < = xmlns:fx s:View ' http://ns.Adobe.com/MXML/2009 "xmlns:s ="library://ns.adobe.com/flex/spark"title ="HomeView"> "

    < fx:Declarations >

    <! - Place non-visual elements (e.g., services, items of value) here - >

    < / fx:Declarations >

    < fx:Script >

    <! [CDATA]

    private var file:File;

    private var dir:File;

    This method is executed to create a file and download it when you press the download button.

    protected void OnUploadButtonPressed(event: MouseEvent): void {}

    trace ("upload button clicked");

    var urlReq:URLRequest = new URLRequest ("http://10.60.99.31/MyPath/fileUploadTest.do");

    urlReq.method = URLRequestMethod.POST;

    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));

    }

    trace ("size =" + imageBytes.length);

    try {}

    dir = File.applicationStorageDirectory

    I also tested in several different directories

    dir = File.createTempDirectory ();

    dir = File.documentsDirectory;

    var today: Date = new Date();

    var filename:String = 'IMG' + now.fullYear + now.month + now.day + now.hours + now.minutes + now.seconds + now.milliseconds + ".txt";

    file = dir.resolvePath (filename);

    var stream: FileStream = new FileStream();

    Stream.Open (file, FileMode.WRITE);

    stream.writeBytes (imageBytes);

    Stream.Close ();

    Review the content of the file to check if the file is written successfully.

    var readStream:FileStream = new FileStream();

    readStream.open (file, FileMode.READ);

    var: string result = readStream.readUTFBytes (readStream.bytesAvailable);

    trace ("rear read result =" + result); The result is shown here as planned.

    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 (urlReq); This line does not work. No handler is executed. No http request struck the coast server.

    trace ("after file upload test");

    } catch (error) {}

    trace (e);

    }

    }

    Complete Manager

    private function uploadComplete (event: Event): void

    {

    trace ("Upload successful.");

    }

    IOError handler

    private void ioError (error: IOErrorEvent): void

    {

    trace ("Upload failed:"+ error.text ");

    }

    Manager SecurityError

    private void securityError(error:SecurityErrorEvent):void {}

    trace ("security error:" + error.text);

    }

    Another Manager

    private void someError(error:ErrorEvent):void {}

    trace ("an error" + error.text);

    }

    Progress Manager

    private void onProgress(event:ProgressEvent):void {}

    trace ("progressHandler");

    }

    This method is executed to call the URLLoader.load when the delicate touch.

    protected void OnTrickyButtonPressed(event: MouseEvent): void {}

    var urlReq:URLRequest = new URLRequest ("http://200.60.99.31/"); This points to a server not - exist

    urlReq.method = URLRequestMethod.POST;

    urlReq.data = new ByteArray();

    var loader: URLLoader = new URLLoader();

    try {}

    Loader.Load (urlReq); This line is very important in iOS7. He decides if the latter file.upload may work.

    But in iOS8, file.upload does not work even if that line is executed.

    trace ("after urlloader load");

    } catch (error) {}

    trace (e);

    }

    }

    []] >

    < / fx:Script >

    < s:Button = "200" x = "200" width = "400" height = "200" label = "Upload" click = "OnUploadButtonPressed (event)" / > "

    < s:Button = "200" x = "500" width = "400" height = "200" label = "Tricky" click = "OnTrickyButtonPressed (event)" / > "

    < / s:View >

    ------------------------------------------------------------------------------------------ -----------------------------------------------------------------------


    When it is run on the simulator of the Air, it works very well as expectedand the file is successfully downloaded to the server. But when run on iOS devices (in my case, iPad), as I explained at the beginning, no event on the file upload handler is executed and not the http request has even hit the server. So I think that the problem may come from the client side.

    During my attempt to solve the problem, I found something complicated about this problem on iOS7. In other words, if you call the URLLoader.load method (although the URLLoader.load points to an address non-existed) before calling the File.upload method, the File.upload will work as expected on iOS7. Specifically, when the above OnTrickyButtonPressed method is run before the OnUploadButtonPressedmethod, File.upload will succeed on iOS7. But this only happens on iOS7. On iOS8, File.upload still refuses to work, regardless of knowing if the URLLoader.load is executed before.

    I think in my case, the problem is not the problem of sandbox or a session of Firefox problem described in the two links below, because not even a http request hit the side server. It seems that the Air SDK for iOS comes to fail send the http reason request any.

    http://StackOverflow.com/questions/5967382/Flex-4-FileReference-issues-with-Firefox

    http://StackOverflow.com/questions/351258/how-do-i-make-Flex-file-upload-work-on-Firefox-a nd-safari

    To make my problem clear, I list my environment below:

    • Development environment: Windows7 (64-bit) / Mac os 10.9.4 (tested on both OS platforms.)
    • IDE: Flash Builder 4.7
    • Air SDK: 3.8 / 16.0.0 (after that I have updated to the latest Air SDK 16.0.0, problem persists.)
    • Application server: Tomcat7 + spring

    Finally, I want to mention that download the file using URLLoader.load isn't an option in my case because I want to download large files in the future, which cannot be addressed with the URLLoader.load.

    I struggled with this for days. If I really appreciate it if anyone has an idea about this.

    Thanks in advance.

    Hi KA RYU.

    We have reproduced the issue successfully, our team would work on it.

    -Tushar

  • Cannot be found in iOS 10 notes

    I did a clean install of iOS 10.1 on my iPad 2 Air, not a restore of backup and linked to my existing Apple ID cloud data. I find that I can not get a result of research within the Notes application - fill in the search bar in the application with a known keyword produces no results, even after that all my notes have been uploaded and are visible.

    I also did a regular update of the iOS 10.1 on my iPhone 6s without deleting data and applications, and the same prob exists on upgrading phone - no search results in the application Notes, even with all the Notes.

    On my iPad Pro 12 without an upgrade, always using the latest version of 9, there is no problem, research within the Notes application, which contains of course the same, iCloud synchronized data.

    Anyone else know this and have a solution?

    Hello, GerryConway!

    Thank you for joining the communities Support from Apple! Looks like you have research questions in iOS 10 Notes. I know how important it is, you are able to search correctly. The first thing I would say is on the devices with iOS 10, make sure that when you start typing in the search bar that you have selected all accounts rather than the current accounts. This can cause the search appear no results if you have selected instead of all current.

    See you soon!

  • 10 iOS does not well at all. Notes is much harder to change more before. The start screen is so clumsy. How can I get rid of all the widgets of the splash screen?

    10 iOS does not well at all. Notes is much more difficult to edit with touch screen as before. How can I erase my start of all the widgets screen? I might want to go back to iOS earlier.

    "How can I erase my start of all the widgets screen?" is the only question that you asked, so here's the answer:

    Some widgets may not be deleted, but you can move the widgets that you use most on the front screen and keep the ones you don't want a rear screen. Or, you can take the widgets you want and move them to a single folder.

  • Mail 10.0 in macOS Sierra not rendered HTML

    Hello

    Sierra installation went flawless. Mail that I normally get displayed as HTML does NOT appear in HTML format, and there is not a button load remote content. Previous mail received El Capitan and 9.3 mail always display and work properly in Mail 10.0 (it displays the content "Remote Load" button). I look at the raw source of Amazon and PayPal and the headers mime drive ins are all the same. So far, four sites, that I normally get HTML mail, 10 Mail will NOT be rendered in HTML.

    Note: Mail-> Preferences-> "Load remote content in messages" on or off makes no difference.

    Anyone else having this problem? It's boring get raw HTML.

    Thanks in advance for any help.

    Best regards.

    This seems to be associated with some mail files. I can take validly rendered HTML of the Inbox and manually move (drag) the file and is no longer makes but appears in raw HTML. Placing the message in the Inbox was still raw and not rendered HTML display. Remove the mailbox and then recreate it makes no difference. I had formerly imported mail before and it associated with maybe 'archived mail"even if these mailboxes are not empty / delete all ~/Library/Mail plist files does nothing to solve the problem.

    Who wrote 10 Mail should have enough information to explain this. I have a fix. It's stupid and reconstruction of the mailboxes does nothing to fix.

  • 6 10 iPhone iOS is not recognized by the laptop Win10Pro

    6 10 iPhone iOS is not recognized by the laptop Win10Pro

    After the upgrade to iOS 10 on my iPhone 6, is is no longer recognized as an external drive by my Win10Pro x 64 laptop on USB 2.0 or 3.0 port. New cable is used to eliminate that as a problem.

    Why is this happening?

    I come to the last iOS 9.x.x?

    Y at - it and the new driver I need to download on my PC?

    I started to automatically backup icloud, but I want to import photos directly to my PC.

    Thank you

    Vicki

    Try opening the iPhone before connecting to Windows. If the film is not empty, then the device should be listed in Windows Explorer. If it still does not show try to restart the computer and the device, and then try again. If it does not show more in iTunes then try iOS device is not showing in iTunes for Windows.

    TT2

  • Siri on iPad 2 Air after updating IOS 10

    Hello

    on my Ipad 2 Air after upgrade IOS 10.0.1 I have no option to change the voice of Siri in the male. The voice is that of the IOS 9.3.5. I did a complete reset, but nothing has changed. Is this normal?

    What language you have selected for Siri? With selected English, I get a 'Siri voice' setting that lets me select different English accents and male and female voices

  • Problem between IOS 10 &amp; Notes

    Goodmorning,

    I'm updating the iPhone 6 + and I have a problem with the Notes application. The application of close Notes after a few seconds.

    10 IOS is not reliable at the moment. No idea how I can fix this problem?

    Thank you.

    Try these troubleshooting steps:

    -Reset: hold the Home and Power buttons until you see the logo Apple (10-15 seconds).

    -Restore your iDevice: https://support.apple.com/en-us/HT204184

    If your backup is in iTunes, make sure that it is encrypted.

  • Firefox not rendering or display the graphics properly, tried everything?

    Firefox not rendering or display the graphics properly.
    When a page loads first, fine, but if you click on a few buttons, then the back button to return to the page of the image is cut in half, or lack of parts of it, on the page what happens, if I delete the page history and refresh, all goes well, once again, I also worked on a web page that does the same thing on the server or locally, I haven't tried any cache, refresh on the page load, ran Firefox in safe mode, my friend has Firefox also and he got the same results, Internet explore, no problem, no problem of Chrome, I need to solve this problem with Web page, I'm working on the side of the code so that everyone doesn't have this problem.

    Try disabling OMTC and leave hardware acceleration in active Firefox.

    You can try to disable hardware acceleration in Firefox.

    • Tools > Options > advanced > General > Browsing: "use hardware acceleration when available.

    You will need to close and restart Firefox after enabling/disabling this setting.

    You can check if there is an update for your display driver graphic card and search for hardware acceleration of related issues.

  • I had designed a Web application and tested on Firefox 18, 19, 20 and now when I check it on 21 version it is not rendered correctly. Now tell me what I need to do.

    I had designed a Web application and tested on Firefox 18, 19, 20 and now when I check it on 21 version it is not rendered correctly. Now tell me what I need to do.

    https://developer.Mozilla.org/docs/Mozilla/Firefox/releases/21

  • Hindi fonts not rendered in html pages

    Hindi fonts not rendered in html pages are operating except the mangal font and original.
    Is it a bug or a problem which I am not capable of tackling.
    Browser Mozilla reveals an error in the console (font download has failed or the character encoding of the HTML document is not declared. The document will be made with text truncated in some browser configurations if the document contains characters from the US-ASCII range.
    the downloadable fonts: download failed (font family: 'Kruti Dev 010' style: normal weight: normal stretch: normal CBC index: 0): status = 2147500037
    Source: file:///D:/epub/filename/OEBPS/Fonts/k010.otf @ file:///D:/epub/filename/OEBPS/Styles/style.css).

    Please answer soon.
    Thank you.

    1 - is the HTML page to specify the correct encoding, and is the file saved in this encoding? Validate your markup and style sheet in the links below.

    2. the style sheet point to the correct file?

    3. the police is a Unicode font? If so, there may be another problem with the font file. Try to use the following fonts generator to convert it into several formats.

  • updated my iPad to 9.3 air activate iPad display does not not my account information, but the Mac computer accepts my Apple ID and password

    updated my iPad to 9.3 air activate iPad display does not not my account information, but the Mac computer accepts my Apple ID and password

    A lot of people is affected by this problem, and Apple has worked on the issue.  Some found the following steps useful for this issue:

    Go to iCloud.com and select settings once you are connected.  Click on your device listed there and remove them from the account (not typing not erase or lost mode).  Restart your device and must ignore this lock of Activation screen because you actually disabled the lock by removing the device for iCloud.com

    I hope that helps!

  • Firefox is not rendering/display websites properly.

    Today, never had any problems with any site, I realized so far. Every Web page I have vist will not/rendering/display of the load correctly. I have Firefox didn't Age and have not had any problems like this before.

    If you use extensions (Tools > Modules > Extension) as NoScript , Adblock Plus or Block Flash that can block content, and then make sure that these extensions are not blocking content.

    • "Clear the Cache": Tools > Options > advanced > network > storage (Cache) offline: 'clear now '.
    • 'Delete Cookies' of sites that cause problems: Tools > Options > privacy > Cookies: "show the Cookies".

    Start Firefox in Firefox to solve the issues in Safe Mode to check if one of the Add-ons is the cause of the problem (switch to the DEFAULT theme: Tools > Modules > themes).

    • Makes no changes on the start safe mode window.

    See:

  • Thai language is not rendered correctly

    First of all, I want to tell you thank you for making this app.

    The beta version works quite well on my device, but there is a problem that I don't know if I could call it a bug or not because this seems odd somehow. Thai alphabet is not rendered correctly in the chat window, but list contact display my name of contact thai very well online.

    When I try to send a GI in thai after press send bubble of conversation it show empty nothing there at all.

    I hope that this fix in the next update.

    Now you can read Thai on Skype 1.0 for WP7. Thank you!.

Maybe you are looking for