Does the current WebKit version in Air SDK 3.5 support Uint8Array or any bufferArray stuffs?

Does the current WebKit version in Air SDK 3.5 support Uint8Array or any bufferArray stuffs?  If not, is there an alternative or workaround solution so I can reuse some javascript routines that requires bufferArray like Uint8Array...?   Thanks in advance.

You needed to use SDK 5.1 or later. AIR uses 6.0 or 6.1 now, so Retina is ok without any special tricks.

Similar Messages

  • Does the current SSRS version supports the xlsb excel file extension?

    I've found answers that the SSRS doesn't support the xlsb file type but it was way back 2013:
    https://social.msdn.microsoft.com/forums/sqlserver/en-US/94c57862-281e-480a-b442-c2e907778bd8/ssrs-excel-render-and-save-as-excel-binary-xlsb
    Does the current version (Reporting Services 2012) of Reporting Services already support this kind of file? Where can I see the list of file type that the Reporting Services is supporting?

    Hi zoldyk15,
    In Reporting Services 2012, it doesn’t support .xlsb render. For your requirement, you could provide Microsoft a feature request at
    https://connect.microsoft.com/SQLServer so that we can try to modify and expand the product features based on your needs.
    If you have any question, please feel free to ask.
    Best regards,
    Qiuyun Yu
    Qiuyun Yu
    TechNet Community Support

  • Does "Erase All Content and Settings" remove or retain the current IOS version on the device

    I want to give my iPhone 3GS w/IOS 6 to a family member.  When I "Erase All Content and Settings", will it remove or retain the current IOS version on the device?

    The version that is installed will remain.

  • Selective XML Index feature is not supported for the current database version , SQL Server Extended Events , Optimizing Reading from XML column datatype

    Team , Thanks for looking into this  ..
    As a last resort on  optimizing my stored procedure ( Below ) i wanted to create a Selective XML index  ( Normal XML indexes doesn't seem to be improving performance as needed ) but i keep getting this error within my stored proc . Selective XML
    Index feature is not supported for the current database version.. How ever
    EXECUTE sys.sp_db_selective_xml_index; return 1 , stating Selective XML Indexes are enabled on my current database .
    Is there ANY alternative way i can optimize below stored proc ?
    Thanks in advance for your response(s) !
    /****** Object: StoredProcedure [dbo].[MN_Process_DDLSchema_Changes] Script Date: 3/11/2015 3:10:42 PM ******/
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    -- EXEC [dbo].[MN_Process_DDLSchema_Changes]
    ALTER PROCEDURE [dbo].[MN_Process_DDLSchema_Changes]
    AS
    BEGIN
    SET NOCOUNT ON --Does'nt have impact ( May be this wont on SQL Server Extended events session's being created on Server(s) , DB's )
    SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED
    select getdate() as getdate_0
    DECLARE @XML XML , @Prev_Insertion_time DATETIME
    -- Staging Previous Load time for filtering purpose ( Performance optimize while on insert )
    SET @Prev_Insertion_time = (SELECT MAX(EE_Time_Stamp) FROM dbo.MN_DDLSchema_Changes_log ) -- Perf Optimize
    -- PRINT '1'
    CREATE TABLE #Temp
    EventName VARCHAR(100),
    Time_Stamp_EE DATETIME,
    ObjectName VARCHAR(100),
    ObjectType VARCHAR(100),
    DbName VARCHAR(100),
    ddl_Phase VARCHAR(50),
    ClientAppName VARCHAR(2000),
    ClientHostName VARCHAR(100),
    server_instance_name VARCHAR(100),
    ServerPrincipalName VARCHAR(100),
    nt_username varchar(100),
    SqlText NVARCHAR(MAX)
    CREATE TABLE #XML_Hold
    ID INT NOT NULL IDENTITY(1,1) PRIMARY KEY , -- PK necessity for Indexing on XML Col
    BufferXml XML
    select getdate() as getdate_01
    INSERT INTO #XML_Hold (BufferXml)
    SELECT
    CAST(target_data AS XML) AS BufferXml -- Buffer Storage from SQL Extended Event(s) , Looks like there is a limitation with xml size ?? Need to re-search .
    FROM sys.dm_xe_session_targets xet
    INNER JOIN sys.dm_xe_sessions xes
    ON xes.address = xet.event_session_address
    WHERE xes.name = 'Capture DDL Schema Changes' --Ryelugu : 03/05/2015 Session being created withing SQL Server Extended Events
    --RETURN
    --SELECT * FROM #XML_Hold
    select getdate() as getdate_1
    -- 03/10/2015 RYelugu : Error while creating XML Index : Selective XML Index feature is not supported for the current database version
    CREATE SELECTIVE XML INDEX SXI_TimeStamp ON #XML_Hold(BufferXml)
    FOR
    PathTimeStamp ='/RingBufferTarget/event/timestamp' AS XQUERY 'node()'
    --RETURN
    --CREATE PRIMARY XML INDEX [IX_XML_Hold] ON #XML_Hold(BufferXml) -- Ryelugu 03/09/2015 - Primary Index
    --SELECT GETDATE() AS GETDATE_2
    -- RYelugu 03/10/2015 -Creating secondary XML index doesnt make significant improvement at Query Optimizer , Instead creation takes more time , Only primary should be good here
    --CREATE XML INDEX [IX_XML_Hold_values] ON #XML_Hold(BufferXml) -- Ryelugu 03/09/2015 - Primary Index , --There should exists a Primary for a secondary creation
    --USING XML INDEX [IX_XML_Hold]
    ---- FOR VALUE
    -- --FOR PROPERTY
    -- FOR PATH
    --SELECT GETDATE() AS GETDATE_3
    --PRINT '2'
    -- RETURN
    SELECT GETDATE() GETDATE_3
    INSERT INTO #Temp
    EventName ,
    Time_Stamp_EE ,
    ObjectName ,
    ObjectType,
    DbName ,
    ddl_Phase ,
    ClientAppName ,
    ClientHostName,
    server_instance_name,
    nt_username,
    ServerPrincipalName ,
    SqlText
    SELECT
    p.q.value('@name[1]','varchar(100)') AS eventname,
    p.q.value('@timestamp[1]','datetime') AS timestampvalue,
    p.q.value('(./data[@name="object_name"]/value)[1]','varchar(100)') AS objectname,
    p.q.value('(./data[@name="object_type"]/text)[1]','varchar(100)') AS ObjectType,
    p.q.value('(./action[@name="database_name"]/value)[1]','varchar(100)') AS databasename,
    p.q.value('(./data[@name="ddl_phase"]/text)[1]','varchar(100)') AS ddl_phase,
    p.q.value('(./action[@name="client_app_name"]/value)[1]','varchar(100)') AS clientappname,
    p.q.value('(./action[@name="client_hostname"]/value)[1]','varchar(100)') AS clienthostname,
    p.q.value('(./action[@name="server_instance_name"]/value)[1]','varchar(100)') AS server_instance_name,
    p.q.value('(./action[@name="nt_username"]/value)[1]','varchar(100)') AS nt_username,
    p.q.value('(./action[@name="server_principal_name"]/value)[1]','varchar(100)') AS serverprincipalname,
    p.q.value('(./action[@name="sql_text"]/value)[1]','Nvarchar(max)') AS sqltext
    FROM #XML_Hold
    CROSS APPLY BufferXml.nodes('/RingBufferTarget/event')p(q)
    WHERE -- Ryelugu 03/05/2015 - Perf Optimize - Filtering the Buffered XML so as not to lookup at previoulsy loaded records into stage table
    p.q.value('@timestamp[1]','datetime') >= ISNULL(@Prev_Insertion_time ,p.q.value('@timestamp[1]','datetime'))
    AND p.q.value('(./data[@name="ddl_phase"]/text)[1]','varchar(100)') ='Commit' --Ryelugu 03/06/2015 - Every Event records a begin version and a commit version into Buffer ( XML ) we need the committed version
    AND p.q.value('(./data[@name="object_type"]/text)[1]','varchar(100)') <> 'STATISTICS' --Ryelugu 03/06/2015 - May be SQL Server Internally Creates Statistics for #Temp tables , we do not want Creation of STATISTICS Statement to be logged
    AND p.q.value('(./data[@name="object_name"]/value)[1]','varchar(100)') NOT LIKE '%#%' -- Any stored proc which creates a temp table within it Extended Event does capture this creation statement SQL as well , we dont need it though
    AND p.q.value('(./action[@name="client_app_name"]/value)[1]','varchar(100)') <> 'Replication Monitor' --Ryelugu : 03/09/2015 We do not want any records being caprutred by Replication Monitor ??
    SELECT GETDATE() GETDATE_4
    -- SELECT * FROM #TEMP
    -- SELECT COUNT(*) FROM #TEMP
    -- SELECT GETDATE()
    -- RETURN
    -- PRINT '3'
    --RETURN
    INSERT INTO [dbo].[MN_DDLSchema_Changes_log]
    [UserName]
    ,[DbName]
    ,[ObjectName]
    ,[client_app_name]
    ,[ClientHostName]
    ,[ServerName]
    ,[SQL_TEXT]
    ,[EE_Time_Stamp]
    ,[Event_Name]
    SELECT
    CASE WHEN T.nt_username IS NULL OR LEN(T.nt_username) = 0 THEN t.ServerPrincipalName
    ELSE T.nt_username
    END
    ,T.DbName
    ,T.objectname
    ,T.clientappname
    ,t.ClientHostName
    ,T.server_instance_name
    ,T.sqltext
    ,T.Time_Stamp_EE
    ,T.eventname
    FROM
    #TEMP T
    /** -- RYelugu 03/06/2015 - Filters are now being applied directly while retrieving records from BUFFER or on XML
    -- Ryelugu 03/15/2015 - More filters are likely to be added on further testing
    WHERE ddl_Phase ='Commit'
    AND ObjectType <> 'STATISTICS' --Ryelugu 03/06/2015 - May be SQL Server Internally Creates Statistics for #Temp tables , we do not want Creation of STATISTICS Statement to be logged
    AND ObjectName NOT LIKE '%#%' -- Any stored proc which creates a temp table within it Extended Event does capture this creation statement SQL as well , we dont need it though
    AND T.Time_Stamp_EE >= @Prev_Insertion_time --Ryelugu 03/05/2015 - Performance Optimize
    AND NOT EXISTS ( SELECT 1 FROM [dbo].[MN_DDLSchema_Changes_log] MN
    WHERE MN.[ServerName] = T.server_instance_name -- Ryelugu Server Name needes to be added on to to xml ( Events in session )
    AND MN.[DbName] = T.DbName
    AND MN.[Event_Name] = T.EventName
    AND MN.[ObjectName]= T.ObjectName
    AND MN.[EE_Time_Stamp] = T.Time_Stamp_EE
    AND MN.[SQL_TEXT] =T.SqlText -- Ryelugu 03/05/2015 This is a comparision Metric as well , But needs to decide on
    -- Peformance Factor here , Will take advise from Lance if comparision on varchar(max) is a vital idea
    --SELECT GETDATE()
    --PRINT '4'
    --RETURN
    SELECT
    top 100
    [EE_Time_Stamp]
    ,[ServerName]
    ,[DbName]
    ,[Event_Name]
    ,[ObjectName]
    ,[UserName]
    ,[SQL_TEXT]
    ,[client_app_name]
    ,[Created_Date]
    ,[ClientHostName]
    FROM
    [dbo].[MN_DDLSchema_Changes_log]
    ORDER BY [EE_Time_Stamp] desc
    -- select getdate()
    -- ** DELETE EVENTS after logging into Physical table
    -- NEED TO Identify if this @XML can be updated into physical system table such that previously loaded events are left untoched
    -- SET @XML.modify('delete /event/class/.[@timestamp="2015-03-06T13:01:19.020Z"]')
    -- SELECT @XML
    SELECT GETDATE() GETDATE_5
    END
    GO
    Rajkumar Yelugu

    @@Version : ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    Microsoft SQL Server 2012 - 11.0.5058.0 (X64)
        May 14 2014 18:34:29
        Copyright (c) Microsoft Corporation
        Developer Edition (64-bit) on Windows NT 6.2 <X64> (Build 9200: ) (Hypervisor)
    (1 row(s) affected)
    Compatibility level is set to 110 .
    One of the limitation states - XML columns with a depth of more than 128 nested nodes
    How do i verify this ? Thanks .
    Rajkumar Yelugu

  • Before using the current Mac version Yosemite, I did not have an Administrator password.  It seems now that one is required to unlock and make changes in settings.  I have tried all my usual passwords but to no avail.  any ideas???

    Before using the current Mac version Yosemite, I did not have an Administrator password.  It seems now that one is required to unlock and make changes in settings.  I have tried all my usual passwords but to no avail.  any ideas???

    Boot into Recovery. OS X: About OS X Recovery - Apple Support
    Select Terminal from the Utilities menu.
    At the prompt type,
    resetpassword
    Hit return.
    Follow the prompts in the utility to select hard drive, then user.
    Reset the password.
    Exit the utility and restart.
    You will need to log in with your new password, but your keychain will not be reset.
    I’m not sure what access you’ll have to the old keychain since it didn’t have a password. You may be able to get into the keychain and reset the password to match your login password.

  • Is there a test to verify the current running version of firefox is valid

    Is there a web site or application that can verify the running version of Firefox?

    See the Help > Troubleshooting Information page.
    *https://support.mozilla.org/kb/Using+the+Troubleshooting+Information+page
    *Firefox > About Mozilla Firefox
    You are currently running Firefox 13.0.1 and that is not the latest Firefox 15.0 release according to the user agent in the system details list.
    *Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:13.0) Gecko/20100101 Firefox/13.0.1
    If there are problems with updating then easiest is to download the full version and trash the currently installed version to do a clean install of the new version.
    Download a new copy of the Firefox program and save the disk image (dmg) file to the desktop
    *Firefox 15.0.x: http://www.mozilla.org/en-US/firefox/all.html
    *Trash the current Firefox application (e.g. open the Applications folder in the Finder and drag the Firefox application to the Trash) to do a clean (re-)install
    *Install the new version that you have downloaded
    *https://support.mozilla.org/kb/Installing+Firefox+on+Mac
    Your profile data is stored elsewhere in the Firefox Profile Folder, so you won't lose your bookmarks and other personal data if you uninstall and (re)install Firefox.
    *http://kb.mozillazine.org/Profile_folder_-_Firefox

  • How to find photos which have not been updated to the current Process Version?

    How can I search and/or filter to find photos which have not been updated to the current Process Version?  I would like to get a list of the photos rather than going through them one by one and looking for the lightening bolt.

    Thank you!  As my memory fades, it is good to know that my memory is backed up with you and others on this forum!

  • HT1600 How long does the current Apple,TV software download take

    How long does the current Apple TV software up date take , or should it take ..?

    Depends on your internet connection.  Mine is usally done in a few menutes, but I have seen the install part take up to 45 min.

  • Finding the current iTunes version

    How do I find the current iTunes version so that I can request a track....and how do I find the operating system of my computer. I'm a complete technophobe. Can anyone help?

    You can find the iTunes version by clicking *Help... About iTunes*. Mine reads iTunes 9 and then the scrolling text reveals the version number is 9.1.1.11. If you're trying to fill out your version number in a form on the Apple website then these are usually out of date and have an option for the current build. Just use the most recent build listed.
    Your signature suggests you've already worked out that your OS is Windows XP.
    tt2

  • Where do I determine the current Firmware version that's installed?

    Where do I determine the current Firmware version that's installed?
    Thanks,
    Kristin.

    Firmware updates necessary (for OS X operation) for older Macs are available at Mac OS X: Available firmware updates
    http://docs.info.apple.com/article.html?artnum=86117
     Cheers, Tom

  • Does the IE CS6 version have Support for the Middle Eastern tool set? - left to right typing etc.

    Does the IE CS6 version have Support for the Middle Eastern tool set? - left to right typing etc.

    I assume IE means International English, as opposed to English North America (aka US English). There is Middle Eastern and Hebrew support via an English user interface for programs that support it such as InDesign.
    You can change the install language by launching the Adobe Application Manager and clicking on your name in the top left to bring up a context menu. From the menu select Preferences and then click the drop down for Languages. See the screen shot below:

  • Does the F2 linecard (N7k-F248XP-25) on Nexus 7010 support Layer 3?

    Hi All,
    I am sure that F1 linecards on Nexus weren’t able to support L3 functionality, so my query is does the F2 linecard (N7k-F248XP-25) on Nexus 7010 support Layer 3?
    Regards,
    Mayank

    Hi, Im know that this is resolved but i have a f2e Card
    Model:                 N7K-F248XP-25E
    Type (SFP capable):    1000base-SX
    and i can not configure an interface as l3
    NX7K-1-VDC-3T-S1-L3FP(config)# interface ethernet 7/2
    NX7K-1-VDC-3T-S1-L3FP(config-if)# no switchport
    ERROR: Ethernet7/2: requested config change not allowed
    whats the problem??
    Software
      BIOS:      version 2.12.0
      kickstart: version 6.2(2)
      system:    version 6.2(2)
      BIOS compile time:       05/29/2013
      kickstart image file is: bootflash:///n7000-s2-kickstart-npe.6.2.2.bin
      kickstart compile time:  7/9/2013 20:00:00 [08/22/2013 04:51:27]
      system image file is:    bootflash:///n7000-s2-dk9.6.2.2.bin
      system compile time:     7/9/2013 20:00:00 [08/22/2013 08:07:03]
    Hardware
      cisco Nexus7000 C7010 (10 Slot) Chassis ("Supervisor Module-2")
      Intel(R) Xeon(R) CPU         with 12224956 kB of memory.

  • I've updated to the most recent version of iTunes and I can no longer see any of my old music on my mac.  All the music is still available on my ipad.  How can i download the music on my mac?

    I've updated to the most recent version of iTunes and I can no longer see any of my old music on my mac.  All the music is still available on my ipad.  How can i download the music on my mac?

    First, are you positive it is really not there?  Have you looked in your iTunes folder in your Music folder, and in the media folders there? Do you see your media files?
    If your media are gone it is a lot easier to restore from a proper computer backup.  Your i-device was not designed for unique storage of your media. It is not a backup device and media transfer was planned with you maintaining a master copy of your media on a computer which is itself properly backed up against loss. Syncing is one way, computer to device, updating the device content to the content on the computer, not updating or restoring content on a computer. The exception is iTunes Store purchases which can be transferred to a computer.
    iTunes Store: Transferring purchases from your iOS device or iPod to a computer - http://support.apple.com/kb/HT1848 - only purchases from iTunes Store
    For transferring other items from an i-device to a computer you will have to use third party commercial software.  See this document by turingtest2: Recovering your iTunes library from your iPod or iOS device - https://discussions.apple.com/docs/DOC-3991

  • Does the printer models "Canon  IR 2016 URF ll LT" support SAP printing?

    HI All,
    Does the printer models "Canon  IR 2016 URF ll LT" support SAP printing?
    What is the device type we need select SPAD configuration..
    I have checked all the possible device type ,there is no physical output has received .
    but in SP01 status.."completed". Which  device type should i select SAP..
    Reagrd
    Jagadish

    Dear Jagadish,
    Did you try with CAN22 : CANON iR 2200.
    Regards,
    Naveen.

  • Does the iTunes Auto-updater Realize the Currently Installed Version is 64?

    I installed iTunes64Setup.exe for v7.6 before. ONce installed, there is virtually no way to tell it is the 64-bit version (about iTunes, etc.)
    Today the iTunes auto updater alerted me to udpate to v7.7.1. How do I know it recognizes I need the 64-bit version instead of the regular Xp/Vista32 version?

    iOS: Device not recognised in iTunes
    Windows: http://support.apple.com/kb/TS1538

Maybe you are looking for

  • Ableton Live 9.1.7 instruments cause kernel panics

    Hello, only whenever I use an internal instrument in Ableton, my computer goes kernel panic. My libraries are outside the internal SSD (I have them on a 2 TB WD MyPassport Ultra), and the DAW is into the SSD. I always keep connected them while using

  • Best options for life (gulp) after iWeb...

    Hey Gang, Been using iWeb since its inception. I've learned to love it. Well- with the begining of iCloud and the transition away from MobileMe I see the writing on the wall. I realize alot of people will continue to use iWeb but I want to be proacti

  • IPad mini retina constantly reboots after iOS 8.1 update - help!

    Hello, I've downloaded on iPad mini Retina 16 GB iOS 8.1 update and installed it directly from the device (so no iTunes involvement). After it got installed with black apple on white screen (process seemed to be finished) - it started rebooting, but

  • Missing Times font error/warning message

    I've been getting a warning message the the Times font could not be found and Times New Roman is replacing it. I've never added Times to the FrameMaker templates, so I'm not sure where it's finding this font. I checked the References pages and it app

  • How to do deep reset on NOKIA E5-00.? (*)+(3)+(Cal...

    what are the keys to do a hard reset on Nokia E5-00? The default shortcut *+3+Green is not working...