AIR and performance questions

Hey,
I'm new to AIR mobile development although i have around a decades experience with Flash, but with AIR for mobile i'm a bit lost. So i was hoping someone can answer these questions for me...
1. Is there currently no way to use a phones vibration with AIR? I remember seeing people asking this on these forums last year, and it still looks as if this extremely simple thing cannot be done? And if it cant, are there plans to have it in AIR 2.7?
2. When i select GPU acceleration, does it cache all bitmaps automatically? Or do i still have to manually select "Cache as Bitmap" for everything i want cached? (i'm using Flash Pro CS5.5). Because it seems to have no effect on frame rates whatever i do here as long as GPU render mode is selected.
3. Would i get better performance using vectors or bitmaps for graphics?
4. Whats the texture size limit for Android and iOS before it can no longer be cached?
5. Does it matter performance wise if JPG's and PNG's are used for graphics instead of bitmaps? (when i've not selected Cache as Bitmap).
6. Whats the differences between a AIR for Android and AIR for iOS? I've noticed that for Android it supports use of the camera, for iOS it dont. Is there anything else?
7. How can i embed a HD video in an AIR for Android app? i've seen this thread: http://forums.adobe.com/thread/849395?tstart=0
but it's for AIR on iOS, i wouldn't think it's any different for Android, but i'm getting a blank screen when i use the code from that thread (and i'm testing on a Android phone too, not in Flash > Test Movie).
Or if anyone has ANY tips for performance at all then i'd love to hear them

Hello,
I think that Colin may have answered a lot of your questions but here it is:
1. There is currently no way to make the phone vibrate for within AIR. You can read this post on how to create an Android/AIR hybrid application which gives you extension access to some native functionality. Warning: it is somewhat advanced and not supported by Adobe
http://www.jamesward.com/2011/05/11/extending-air-for-android/?replytocom=163323
You can expect to have this functionality in AIR at some point in the future, perhaps not in 2.7
2. in AIR for Android, there is no need to set GPU if you are only using bitmaps. Cache As Bitmap is only needed for vector art.
3. Bitmaps would be better but performance is not the only consideration. Remember that memory is limited so bitmaps can use it all so vectors may be a good option if you have a lot of art. A great advantage of using AIR is that you have the option between the two. My recommendation would be that if your art is going to be animated, create it as bitmap or use cacheAsBitmap if it only moves on x and y axis and use CacheAsBitmapMatrix if it transforms in other way (rotation, size).
4. The limit on Android was 1,024×1,024 last time I checked.
5. JPGs are smaller in size but PNGs look better. A side note, because the PPI is so high on devices, everything looks great so you can get away with lesser quality assets. Test all options.
6. The differences between the two platforms are minimal. Camera first but also Android lets you access the media library (where all the images taken by the device are stored) where iOS do not. In general Android is more open.
7. Video is a very large topic. If you embed the video, you will have a black screen until it is fully loaded. I should say that I did a project with a 1 GB movie and it loaded right away. I have not used the StageWebView to display the movie. Keep in mind that the way the video is endoced matters a great deal (use baseline profile).
Here is some sample code:
import flash.net.NetConnection;
import flash.net.NetStream;
import flash.media.Video;
import flash.events.NetStatusEvent;
var connection:NetConnection;
var video:Video;
video = new Video();
video.width = 480;
video.height = 320;
connection = new NetConnection();
connection.addEventListener(NetStatusEvent.NET_STATUS, netConnectionEvent);
connection.connect(null);
function netConnectionEvent(event:NetStatusEvent):void {
event.target.removeEventListener(NetStatusEvent.NET_STATUS,
netConnectionEvent);
if (event.info.code == "NetConnection.Connect.Success") {
var stream:NetStream = new NetStream(connection);
stream.addEventListener(NetStatusEvent.NET_STATUS, netStreamEvent);
var client:Object = new Object();
client.onMetaData = onMetaData;
stream.client = client;
// attach the stream to the video to display
video.attachNetStream(stream);
stream.play("someVideo.flv");
addChild(video);
function onMetaData(info:Object):void {}
I would recommend looking at my book. I cover a lot of these topics in detail (and went through the same hurdles as you):
http://oreilly.com/catalog/0636920013884
(you can get it on Amazon too).

Similar Messages

  • New MacBook Air and iPad question

    Hi everyone,
    I purchased a Macbook in 2009 and have today upgraded to a brand new MacBook Air.  My question is about my iPhone and iPad and keeping these up to date.  Both are running iOS 5 so I do all updates by wifi which is easy and fast.  Although prior to iOS 5 of course I had to connect these to my Macbook and update that way.  At this stage I am still setting up my new Air and just wonder if there is even any need to connect either device to it?  I have the music that I want on both devices and new used my Macbook to download any apps, I always do them directly on each device.  So do I need to set up either on there?  At this stage I think no but I am just wondering if I am forgetting something.
    Many thanks

    What 'app'?
    If you owned them before they are free.
    Peter

  • My friend have new Macbook Air with OSX Mavericks and I have Macbook Pro with OSX Mountain Lion, Can I create a bootable maverick in pendrive from macbook air and perform a clean installation/update on my macbook pro with osx mountain lion?

    I have late 2012 edition Macbook Pro, I have a internet connection with does not run smoothly It gets disconnected and reconnects Thus I failed everytime when I update my OSX Mountain Lion to Mavericks in App Store. My friend just bought 2013 end Macbook Air whicch have OSX Mavericks pre installed.
    I was hoping if I can create a OS X version in pendrive from his laptop and use that to install and thuss also update OS on my Mountain Lion.
    Kindly explain me in detail how to perform this.
    I have already taken back up of all files and I am ready to total clean my laptop.
    And I want to update to Maverick so I can thus further update to upcoming OS X Yosemite.

    The Mavericks on the Air is probably machine specific since it came pre-installed, so it wouldn't work on your computer. See if your friend will let you access the App Store, where you can sign in using your Apple ID and download the installer. You can use this free program to copy the installer and update your computer.
    Bootable USB Flash Drive – Diskmaker X

  • Performance issue and functional question regarding updates on tables

    A person at my site wrote some code to update a custom field on the MARC table that was being copied from the MARA table.  Here is what I would have expected to see as the code.  Assume that both sets of code have a parameter called p_werks which is the plant in question.
    data : commit_count type i.
    select matnr zfield from mara into (wa_marc-matnr, wa_marc-zfield).
      update marc set zfield = wa_marc-zfield
         where werks = p_werks and matnr = wa_matnr.
      commit work and wait.
    endselect.
    I would have committed every 200 rows instead of every one row, but here's the actual code and my question isn't around the commits but something else.  In this case an internal table was built with two elements - MATNR and WERKS - could have done that above too, but that's not my question.
                DO.
                  " Lock the record that needs to be update with material creation date
                  CALL FUNCTION 'ENQUEUE_EMMARCS'
                    EXPORTING
                      mode_marc      = 'S'
                      mandt          = sy-mandt
                      matnr          = wa_marc-matnr
                      werks          = wa_marc-werks
                    EXCEPTIONS
                      foreign_lock   = 1
                      system_failure = 2
                      OTHERS         = 3.
                  IF sy-subrc <> 0.
                    " Wait, if the records not able to perform as lock
                    CALL FUNCTION 'RZL_SLEEP'.
                  ELSE.
                    EXIT.
                  ENDIF.
                ENDDO.
                " Update the record in the table MARC with material creation date
                UPDATE marc SET zzdate = wa_mara-zzdate
                           WHERE matnr = wa_mara-matnr AND
                                 werks = wa_marc-werks.    " IN s_werks.
                IF sy-subrc EQ 0.
                  " Save record in the database table MARC
                  CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
                    EXPORTING
                      wait   = 'X'
                    IMPORTING
                      return = wa_return.
                  wa_log-matnr   = wa_marc-matnr.
                  wa_log-werks   = wa_marc-werks.
                  wa_log-type    = 'S'.
                  " text-010 - 'Material creation date has updated'.
                  wa_log-message = text-010.
                  wa_log-zzdate  = wa_mara-zzdate.
                  APPEND wa_log TO tb_log.
                  CLEAR: wa_return,wa_log.
                ELSE.
                  " Roll back the record(un save), if there is any issue occurs
                  CALL FUNCTION 'BAPI_TRANSACTION_ROLLBACK'
                    IMPORTING
                      return = wa_return.
                  wa_log-matnr   = wa_marc-matnr.
                  wa_log-werks   = wa_marc-werks.
                  wa_log-type    = 'E'.
                  " 'Material creation date does not updated'.
                  wa_log-message = text-011.
                  wa_log-zzdate  = wa_mara-zzdate..
                  APPEND wa_log TO tb_log.
                  CLEAR: wa_return, wa_log.
                ENDIF.
                " Unlock the record from data base
                CALL FUNCTION 'DEQUEUE_EMMARCS'
                  EXPORTING
                    mode_marc = 'S'
                    mandt     = sy-mandt
                    matnr     = wa_marc-matnr
                    werks     = wa_marc-werks.
              ENDIF.
    Here's the question - why did this person enqueue and dequeue explicit locks like this ?  They claimed it was to prevent issues - what issues ???  Is there something special about updating tables that we don't know about ?  We've actually seen it where the system runs out of these ENQUEUE locks.
    Before you all go off the deep end and ask why not just do the update, keep in mind that you don't want to update a million + rows and then do a commit either - that locks up the entire table!

    The ENQUEUE lock insure that another program called by another user will not update the data at the same time, so preventing database coherence to be lost. In fact, another user on a SAP correct transaction, has read the record and locked it, so when it will be updated your modifications will be lost, also you could override modifications made by another user in another luw.
    You cannot use a COMMIT WORK in a SELECT - ENDSELECT, because COMMIT WORK will close each and every opened database cursor, so your first idea would dump after the first update. (so the internal table is mandatory)
    Go through some documentation like [Updates in the R/3 System (BC-CST-UP)|http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCCSTUP/BCCSTUP_PT.pdf]
    Regards

  • I have a macbook and now I have a Macbook Air, So my question is how can I transfer all my stuff from my old mac to my new mac air?

    I have a macbook and now I have a Macbook Air, So my question is how can I transfer all my stuff from my old mac to my new mac air?
    Thanks

    How to use Migration Assistant to transfer files from another Mac
    MacBook Air- Use Internet Sharing to optimize data migration
    Migration Assistant tips and tricks
    OS X Lion- How to use Migration Assistant to transfer files from another Mac

  • I have the mac book air and when I turn it on its a light blue screen with a flashing folder with a question mark on it and I cant get past it. Anyone know about this?

    I have the mac book air and when I turn it on its a light blue screen with a flashing folder with question mark on it. Any one know how to get past it?

    The MBA is trying to tell you that it is not able to find a bootable system
    Either the file is corrupt or access to the storrage has failed
    I would start by seeing if it will boot with Command + R depressed

  • Questions about Adobe AIR and FLV license model

    I'm currently looking for a game development framework which I can use for a fan-project in my spare time and also for commercial projects for the company I'm working for.
    I think that the Citrus Engine which is open source and based on Apache Flex/Adobe AIR/Starling/Away3D/Box2d/Nate might be a good choice.
    But I'm really confused about the license model of Adobe AIR and its runtime distribution.
    Do I have to pay a license fee or royalties for my games (which include the AIR runtime in order to be stand-alone-apps) when I publish them?
    If so, how much are these license fees/royalties?
    Does this also concern free apps?
    What is the name of the license which I would have to request from Adobe in order to publish my games?
    Do I need several licenses when publishing an app on multiple AppStores (Apple/Google/Amzaon) or desktop distribution platforms (Steam/GOG)?
    Are there further licensing obstacles which I have to keep in mind when using Flex/AIR for (commercial) game development?
    By the way - the FAQ on the product page (http://www.adobe.com/products/air/faq.html) isn't really helping on this topic:
    "How much does Adobe AIR cost?" -> "The Adobe AIR runtime and AIR SDK are free for most users."
    This answer leaves me with the question: Am I belonging to the "most users" or not?
    Therefore it isn't meaningful at all.
    I'm also thinking about adding short video sequences as FLVs to the games.
    If I understood correctly H.264 and MP3 are currently used as a standard for these video files but aren't free.
    Is there a free alternative available for FLVs which can be used in combination with Adobe AIR?
    Or did I get something wrong here and don't need to worry about getting sued when using these formats?
    Thank you in advance for answering my numerous questions.

    That's true.
    I'm using a Dell Studio 1537 with 3GB of RAM and Intel Core 2 Duo and it's quick in Lr    

  • Macbook Air - White/Grey Screen with a folder and a question mark

    Out of the blue , my macbook air stopped starting up and strted to show me a white/grey screen with nothing but a folder and a question mark . After searching on the internet for solutions and trying to reset my PRAM setting , it still wouldn't boot up . I opened up disk utility and going through internet recovery , I ran the first aid verification on my MAC OS X Base System and it said that it found no problems . I can't restore or erase by the way and i really wouldn't erase my files as I have very important files on my mac . Moving on , I tried to reinstall OS X , but apperently it needs a disk to install OS x on and since none appear , I tried using an USB . After creating a partition and erasing everything on my USB , not happy about that  , it wasn't big enough for the OS . So now I am basically stuck in the mac white screen Limbo .
    Any sort of help would be fantastic and please do keep in mind that this is a macbook air and I do not have a place to put DVDs into . All I have read on different forum pages didn't help so i decided that it would be a good idea to create my very own thread . I am not very sure about the Mountain Lion version ,but I am not very sure that it matters .

    Out of the blue , my macbook air stopped starting up and strted to show me a white/grey screen with nothing but a folder and a question mark . After searching on the internet for solutions and trying to reset my PRAM setting , it still wouldn't boot up . I opened up disk utility and going through internet recovery , I ran the first aid verification on my MAC OS X Base System and it said that it found no problems . I can't restore or erase by the way and i really wouldn't erase my files as I have very important files on my mac . Moving on , I tried to reinstall OS X , but apperently it needs a disk to install OS x on and since none appear , I tried using an USB . After creating a partition and erasing everything on my USB , not happy about that  , it wasn't big enough for the OS . So now I am basically stuck in the mac white screen Limbo .
    Any sort of help would be fantastic and please do keep in mind that this is a macbook air and I do not have a place to put DVDs into . All I have read on different forum pages didn't help so i decided that it would be a good idea to create my very own thread . I am not very sure about the Mountain Lion version ,but I am not very sure that it matters .

  • Have the following iMac at home and am contemplating adding a MacBook Air and a 2TB Airport Time Capsule for backup/storage and increased WiFi speeds.  My question is this (1) a compatible setup, and (2) will my older iMac slow down the WiFi speeds?   Man

    Have an older iMac and am contemplating adding a new MacBook Air and a 2TB Airport Time Capsule to increase WiFi speeds. My question is (a) is this a compatable setup and (b) will the older iMac slow the WiFi speeds?
    Thanks

    Be careful about mixing Time Machine backups and other data on the TC's disk.  That will cause conflicts, sooner or later.  See #Q3 in Using Time Machine with a Time Capsule for an explanation and some possible workarounds.

  • Hi - was looking to buy a macbook air soon but wanted to get it with lion software....anyone know when that is available and second question is what is best software for personal money management that works with lion.....use quicken now   thanks

    Hi - was looking to buy a macbook air soon but wanted to get it with lion software....anyone know when that is available and second question is what is best software for personal money management that works with lion.....use quicken now   thanks

    quicken should work with lion.
    Quicken Essentials will work with Lion.  Most people that have used Quicken for a while (i.e. Quicken 2007) have found that Quicken Essentials isn't much better than a basic spreadsheet.  It is a significant step down from previous versions and does not offer many of the features previously offered.  Right now, it seems like the two most common options are iBank and MoneyDance.
    Frankly... this is a major opportunity for these companies.  The largest commercial distributor of this type of product has been Intuit (Quicken).  That makes it hard for any other company to get any of that market as so many people were already using Quicken and may have had years of data stored in it.  Now, with Quicken effectively out of the picture, it's a great chance for another company.  Just imagine if iPhones were suddenly off the market.  That would give other manufacturers a tremendous opportunity since they wouldn't have to fight an up hill battle against a market giant.

  • Question about sync between MacBook Air and iMac

    I have MacBook Air and also considering getting iMac. wondering if i could manage my documents already in MBAir on iMac simultaneously. If yes, how to use it?
    Thanks,
    Sabahattin Bodur
    [email protected]

    NAS storage, or networked together,  Airport Extreme
    with Airport Extreme, you can have an attached HD on the back that any MAC on the network can read / write to
    thats what I do, easy.
    attach a HD on the back of your Airport Extreme, put files, etc etc on it for any Mac or network to use / read / write to.
    Also I store movies on it that I can watch WIFI on my Macbook Air, or ipads
    what fun.

  • Important!! Improve the life and performance of the battery.

    Reduce the operating temperature and increase battery life
    The battery in your notebook PC is designed to provide the necessary amount of energy for the processor while maintaining HP high safety standards. As a result, the battery may not charge or may stop providing power to the notebook when the battery temperature exceeds the specified, design safety level.
    If the battery life appears shorter than normal, the battery stops charging before it is 99%-100% full and the battery appears warmer than usual, the battery has most likely reached its designed "no charge" safety state. The battery will no longer charge until the temperature condition is corrected.
    Try one of the following methods to correct the battery temperature:
    When charging the battery, do not use applications that require large amounts of system resources such as graphic or memory intensive applications, heavy and extended hard drive usage.
    Turn off your notebook and remove the battery to allow it to return to a safe operating temperature.
    Make sure the notebook PC is operating on a hard surface. Using the Notebook PC on a bed or sofa may block the vents causing the notebook PC to heat up and shut down.
    By taking these steps, the battery will return to its normal operating temperature range and continue to charge and discharge as designed.
    Calibrating the battery while PC not in use
    Recalibrating the battery requires a cycle of a complete charge and a complete discharge. To recalibrate the battery while using the PC is not is use complete the following steps.
    The recalibration may take 1-5 hours depending on the age of the battery and the configuration of the notebook PC you own. The PC should not be used while you perform the following steps. Completing all the following steps will also calibrate the battery so that the power meter readings are accurate.
    Shut down the notebook PC
    Connect the AC Adapter to the notebook PC and to an electrical socket.
    Charge the Notebook PC until the Battery Charge light is Green. This indicates the battery is completely charged.
    Press and release the Power Button to start the computer.
    Press the F8 key several times when the HP Logo displays.
    When the Windows Advanced Startup Menu displays, select the Startup in Safe Mode option.
    Remove the AC power adapter from the notebook PC.
    Allow the battery to discharge completely until the notebook PC turns off.
    The battery is now calibrated and the battery level reading on the power meter is now accurate.
    If you are not using the notebook regularly then please unplug the AC adapter and shut down the notebook. By following these practices will improve the life and performance of the battery. Here is a quick list of Do's and Don'ts for the care of your Li-On batteries:
    Do's
    When you receive a new Notebook or Tablet PC, leave the battery to fully charge overnight.
    Condition a new battery by using it until it is fully discharged, and then re-charge it fully. Doing this once a month will help to accurately calibrate your battery.
    Always ensure the battery is recharged as soon as possible after it becomes fully discharged. A battery will be permanently damaged if left for an extended length of time in a fully discharged state.
    Remember that a Lithium-Ion battery will slowly deteriorate; a new battery will always perform better than one that is 6-months old.
    Remember that the battery half-life is rated for a certain total number of charge/discharge cycles (see your User Manual or Quick Start Guide for the rating). For example, a battery that is rated for 3 hours and 500 charge/discharge cycles, will still be considered as within specification, even if it only lasts for 1 hour 45 minutes after 500 charge/discharge cycles.
    Heat is the worst enemy of a battery. Allow plenty of air to circulate around the Notebook/Tablet PC, so that the battery is kept as cool as possible when charging and also when in use. If provided, use the integrated 'legs' under the Notebook to raise the notebook and improve air circulation.
    Remove the battery if storing for several months (the battery should be at approximately 50% charge or higher).
    If you use a NoteBus or if charging your Notebooks or Tablet PCs in a confined space, allow for adequate ventilation in order to keep the batteries as cool as possible.
    Don'ts
    Do Not - Expose the battery to excessive heat or cold (i.e. outside the range of 10-35 degrees Centigrade ambient).
    Do Not - Store the battery in a fully charged state (store batteries with about 50% charge).
    Do Not - Allow a nearly flat battery to be unused for more than a month or so. The battery will slowly discharge until it becomes fully discharged and this will permanently damage the battery cells.
    Do Not - Charge your Notebook/Tablet PC inside a carry case - the battery may overheat.
    Do Not - Charge your Notebook/Tablet PC when stacked on top of each other - the battery may overheat.
    Remember: Your battery is slowly degrading all the time, even if it is not used. Keeping your battery as cool as possible will slow down this degradation considerably.
    For more information please visit the following links:
    How to Improve the Performance of the Battery
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c01297640&cc=us&lc=en&dlc=en
    10 Tips to make your Laptop Battery last longer
    http://labnol.blogspot.com/2006/03/10-tips-to-make-your-laptop-battery.html
    Disclaimer: By clicking on the link above, you will be leaving HP.com to visit a web site that is not maintained by HP and where the HP privacy policy does not apply. This link is provided to you for convenience and does not serve as an endorsement by HP of any information or contacts that you may find on this non-HP site.
    ||-Although I am working on behalf of HP, I am speaking for myself and not for HP.-||
    //Click on Kudos if my reply was helpful and answered your question//
    ||-If my answer solved the problem please mark the topic as the accepted solution-||

    I hope the above article will help you guys..
    ||-Although I am working on behalf of HP, I am speaking for myself and not for HP.-||
    //Click on Kudos if my reply was helpful and answered your question//
    ||-If my answer solved the problem please mark the topic as the accepted solution-||

  • When should I purchase a MacBook Air, and what upgrades are worth it?

    My MacBook Pro (early 2011) is moving as slow as a dinosaur... we are hoping if I get a MacBook Air for school and we only use one account on the Pro (instead of leaving both logged on and switching back and forth), we can get by for a few years without the cost of a new Pro. (I am a grad student. Money problems make it almost tempting to even get a PC at this point.)
    With a minor "refresh" rumored in the upcoming days for the MacBook Air, and the 12" Retina coming a few months down the road... and with my next school term starting in May-- when should I get a MacBook Air?
    I will be getting the 11" since it is cheapest.
    Also, when considering the question of extending the lifetime of the computer (hoping in 4 years it doesn't slow to a crawl like our Pro has), what is more important-- upgraded processor, or RAM?

    While it may be that the hardware you have is responsible for the slow performance, it is also possible that third party software incompatibility is the cause.  If you run EtreCheck and post the results here, someone might be able to spot something.

  • Fan and temp questions about 8 core

    My 8 core Mac Pro was just delivered this morning and I have a couple questions. First, it runs quiet...much quieter than my parents quad G5. Intake and exhaust fan speeds at idle are 500/600 rpm respectively. That's about half of the quad G5. From Hardware Monitor, my core temps range from 132F to 145F which is much hotter than the 110-ish of the G5. One interesting thing to note is that CPU A heatsink is at 109 degrees while CPU B is over 125. It always runs 15-20 degrees cooler than the other. Does this look alright?
    I ran some Cinebench and Altivec Fractal tests which also came up with some interesting results. The Altivec Fractal maxed out all cores. Their temps rose quickly to the 180-200 degree F range. Two of the cores got into the low 200's. The fans didn't even look like they had sped up yet. I closed the program in fear of doing any damage and took a look at the fan graph. The fans were actually starting to speed up after I quit the program. I ran the test again and the fans seemed to ramp up a lot faster than before and caught the cores at 200 degrees. Maybe they were a little lazy on the first try?
    An comments would be appreciated. Other than that, I'm very happy with the performance of the octa-core.

    They are thankfully very very quiet. The air coming out is hot none the less.
    you might want to look into installing smcFanControl
    http://www.versiontracker.com
    which can be used to set higher default fan speed, as well as let you change it from menu bar to other settings / preferences.
    I have settings for 750-1000-1500-2000 rpm. 1000 or less and it is still quiet.
    Someone asked about max temps and 'frying' an Xeon, but apparently it is kind of a complex cpu, it has a number of built-in safeguards to shut itself down... but the Intel rep that someone emailed with wouldn't get into specifics.
    I would worry about heat affecting drives and also an X1900. That think is good at pushing air out the back, but it also pulls in the internal (hot) air, and can pull fine dust etc into the sealed video card housing, which can be a problem of its own.
    Always give the Mac Pro time to cool off before opening the doors. Those FBDIMMs don't like sudden shock stress of changes in temperatures.

  • Telstra Air - Frequently Asked Questions

    What is Telstra Air®?
    Telstra Air is Telstra’s new Wi-Fi network. Eligible Telstra Home Broadband customers can become Telstra Air members and use their home broadband allowance out and about, via our network of Wi-Fi hotspots.
    If customers have an eligible Telstra home broadband service and a compatible gateway, they can become a member. Their compatible gateway creates a Telstra Air hotspot that others can use. Members share some of their home internet bandwidth at home in return for accessing their home broadband allowance at Telstra Air hotspots across Australia and at over 15 million Fon Spots overseas. Over time, by sharing, we expect members will co-create a community of hundreds of thousands of hotspots across Australia.
    The launch of Telstra Air follows the rollout of a trial network of more than 2,600 hotspots at payphone sites nationally and a free trial of the technology that saw over 1.5 million individual users connect. 
    How can customers access the network?
    Telstra Air is available to customers with an eligible Telstra home broadband service and a compatible gateway.  New customers taking up an eligible bundle with a compatible gateway will be offered a Telstra Air membership as part of their bundle (they can opt out when buying the bundle).  Existing customers can visit www.telstra.com/joinair to find out the best way to join.
    Do existing customers have to opt in?
    Existing eligible customers have to opt in to the new service by visiting www.telstra.com/joinair. Existing eligible Telstra home broadband customers without an eligible gateway will need to upgrade to a compatible gateway to become a member. Customers can purchase gateways outright or on monthly repayment options.
    How do customers know if they have a compatible gateway?
    There are four home network gateways that are Telstra Air-ready allowing eligible customers to become a member. They are the
    Telstra Gateway Max™ (ADSL/NBN TG799 device and Cable CG6300 device)
    T-Gateway (ADSL/NBN TG797 device) and
    ADSL Premium Gateway (TG587).
    A firmware update enabling the broadcasting of Telstra Air and Fon signals will be applied to a customer’s gateway when they sign up, if it has not already happened. Customers can go into their gateway settings (http://mygateway) to check if the upgrade has been successful – they will see “Telstra Air” appear in their gateway interface.  The hotspot will only be switched on once a customer has chosen to become a Telstra Air member.  
    At launch, approximately 700,000 of our Telstra Broadband customers already have Telstra-Air ready gateways.
    At what point are customers Air member – does the gateway need to be active or is just when they opt in?
    Customers become Telstra Air members once their order has been submitted in our CRM (Siebel). It’s at this stage that we automatically send them a welcome email (the ‘opt-in’ KMI). Gateway installation and broadband service activation can occur at a later date.
    How do I know if my existing Home Broadband Service is eligible for Telstra Air?
    Telstra Air is available to ADSL, Cable and NBN home broadband customers.
    Customers need a Telstra Gateway Max™, T-Gateway® or an ADSL Premium Gateway.
    If customers don’t have an eligible Telstra home broadband service they can head in store or call 132 200 to discuss their options.
    *Naked Cable broadband customers are unable to join Telstra Air.
    What happens if I want to bring my own gateway?
    If you use your own gateway, you will not be eligible for Telstra Air, as you won’t be able to share with the community. If you had joined the community and have chosen to replace your Telstra Gateway with another non-compatible gateway, your Telstra Air membership will be withdrawn. 
    How do new bundle customers join?
    New bundle customers with an eligible broadband service and compatible gateway will be informed about becoming a member when they sign up to their new service and can decide then if they would like to become a member. Our new Telstra Premier Bundles include a Telstra Gateway Max™ for new customers.
    New Telstra home broadband customers will be able access Telstra Air hotspots in Australia before their home broadband service is activated. They will receive an email when they can connect with information on how to get started, usually within 2 days of ordering.
    Is the service free?
    Telstra Air allows eligible broadband customers to use their Telstra home broadband allowance when they connect to a Telstra Air hotspot. Unless customers need­ to upgrade their gateway, there is no additional cost to join the community.
    Can I use Telstra Air if I am not a Telstra Air customer?
    Currently, you can’t access the Telstra Air Network using your home broadband allowance if you’re not a Telstra Air member. Non Telstra Air members can buy a Fon guest pass for the residential part of our network. We are working on providing guest passes for the Telstra built (e.g. payphone sites) part of the network for later this year.
    Why are the BigPond Unmetered/Green Dot sites metered on Telstra Air?
    Unmetering of BigPond is available in the home and on some of our mobile services – it’s not available on Wi-Fi.
    That said, with the recent increases we have made to the majority of our fixed broadband customers’ data allowances we believe they will have ample data to access the internet via Telstra Air.
    When will non members be able to buy a guest pass for all of the hotspots?
    We are working on providing guest passes for the Telstra built (e.g. payphone sites) part of the network for launch later this year.
    Why is Telstra not able to offer a guest pass for Telstra-run hotspots at launch?
    Our core focus has been on ensuring Telstra home broadband customers who join Telstra Air can access the network using their home broadband allowance. We want to offer all Australians, irrespective of whether they are a Telstra customer or not, access to two million Wi-Fi hotspots across the nation within five years. We are working on providing guest passes for the Telstra built (e.g. payphone sites) part of the network later this year.
    Can a customer share their Telstra Air membership with family and friends?
    Telstra Air Network access is given to the owner of the home broadband account. Customers can access Telstra Air on multiple devices by using their unique details to login, but only a maximum of 3 devices can connect to the Telstra Air Network in Australia at any given time. 
    Any usage at a Telstra Air hotspot will count towards a customer’s home broadband data allowance.
    What’s the difference between the Telstra ID username and the Telstra Air username?
    Telstra ID username is what customers use to log in to My Account and other Telstra online services. Customers will also use the Telstra ID for accessing the Telstra Air Network.  If customers don’t have a Telstra ID, they can register for one online with their account number.
    Telstra Air username ends in @wifi.telstra.com and can be used to access the Fon Wi-Fi hotspots when overseas when using the local captive portal to login. The login details can be found in My Account Telstra Air username where users can also reset their password.
    What is a Fon Wi-Fi pass and how can you purchase one?
    Fon Wi-Fi passes allow non-Telstra Air members the ability to access the hotspot that is broadcast from Telstra Air home gateways and Fon Spots overseas.
    Customers can do this by connecting to the “Fon Wi-Fi” network and purchasing their pass from the Fon login page.
    Can I continue to use Telstra Air if I have reached my data allowance at home?
    No. If you use up your Telstra home broadband data allowance when you are out and about you won't be able to access the Telstra Air hotspots until you enter a new billing period, or use one of your 3 annual data top ups.
    How much power will my modem use and will it impact my electricity bill?
    No. While the Telstra Air modems will broadcast two Wi-Fi channels, our testing shows very minimal incremental power consumption.
    CONNECTING TO TELSTRA AIR
    How many devices can I connect to the Telstra Air Network™ at any given time?
    Telstra Air members can connect up to 3 Wi-Fi devices to the Telstra Air Network in Australia at any given time, using your Telstra ID.
    You can connect your devices to a Telstra Air hotspot as long as you:
    Are a member of the Telstra Air community
    Have a Wi-Fi enabled device
    Are within range of a Telstra Air hotspot
    Have connected to the “Telstra Air” network using your Telstra ID username and password or via the Telstra Air App
    What’s the difference between Telstra Air app and Telstra 24x7 app?
    The Telstra Air app enables an automated connection experience for Telstra Air members to our Telstra Air hotspots across Australia and millions of Fon Spots overseas on iOS and Android devices. The app also includes a hotspot map so customers can find their nearest hotspot when out and about. Customers can access the Telstra Air Network using the app provided they are a Telstra customer with an eligible home broadband service, compatible gateway and have become a Telstra Air member.
    The Telstra 24x7 App allows customers to manage their Telstra services in one place.  Customers can view how much they have used on their Telstra home broadband data allowance,  current and past bill summaries, pay bills, purchase data packs, take advantage of the Telstra THANKS discounted movie ticket offer and access support. A link to the Telstra Air app is also included within 24x7.
    Can customers get the Telstra Air App on their BlackBerry or Windows Phone?
    No. Unfortunately the Telstra Air app is not available on BlackBerry or Windows devices at this time. Telstra Air members with these devices can still connect using a log-in page where they can enter their Telstra Digital Identity username and password.
    IN HOME SERVICE
    Will Telstra Air impact the performance of a customer’s Home Broadband service?
    If a customer is a Telstra Air member their Telstra Gateway creates a separate Wi-Fi hotspot that others can use. When others use this hotspot, it doesn't impact the customer’s broadband allowance, it only shares a portion of their home broadband bandwidth.
    We know that Wi-Fi speeds are important to our customers so we have put in place network settings are in place to ensure their home network performance is protected. This includes limiting the number of guests per hotspot and switching off hotspot sharing when the line speed into a home drops below a certain level.
    What is the service limit set at?
    We have set an engineering limit that we will adjust over time base on customer feedback.
    How can customers disconnect from the Telstra Air Network?
    To disconnect from the Telstra Air Network, customers can simply turn the Wi-Fi off on their device. This will force their device to disconnect from Telstra Air.
    Alternatively, if a customer has the Telstra Air App installed on their Android device, they can open the app and hit the ‘Disconnect’ button.
    On Android and iOS devices you can also choose to ‘forget’ a network. This will mean that your device will delete your login details to the network, and when you are in range, your device will not try to automatically connect to it. To do this, open the Wi-Fi network list in your device settings, tap the network name, and select the ‘Forget’ button.
    As the home broadband user, does my data use in the home get priority over others sharing it?
    We have service rules in place to ensure that only a portion of the home broadband customer's Wi-Fi bandwidth is available to share with other the hotspot users. These rules determine when the hotspot is available for Telstra Air members to access which helps protect the customer experience of the home broadband user.
    HOTSPOT SERVICE
    What are the speeds like when connected to the Telstra Air Network?
    Given this is a Wi-Fi network, speeds may vary depending on your proximity to our hotspots, the number of others connected to the same hotspot, and the device you are using. We expect that customers will be able to undertake activities such as sending emails, uploading photos and browsing the internet when they are using the Telstra Air Network™.
    Is there a time limit on how long customers can be connected to the Telstra Air Network?
    Customers can access Telstra Air hotspots for as long as you like.  However, after 20 minutes of inactivity or 12 hours of continuous connection, your connection will time out and you’ll need to reconnect.
    Is there a map that can help customers find where they can connect to Telstra Air?
    Yes. Customers can find Telstra Air hotspots by using the Telstra Air App or by visiting Telstra.com/air and selecting “Find a Hotspot” to open the interactive Wi-Fi Hotspot Locator.
    We use pin points to identify public hotspots, while a heat map will indicate the general areas where home gateways are broadcasting Telstra Air.
    What is the range like on a Telstra Air hotspot?
    Generally speaking Wi-Fi hotspots have a range of up to 20 metres indoors but in optimal conditions can reach up to 50 metres outdoors.
    However, the range of a Wi-Fi hotspot can be impacted by a number of factors including surrounding buildings, interference from other wireless devices, weather conditions and the number of other users.
    We recommend customers stay close to the hotspot and keep an eye on their device’s Wi-Fi signal strength.
    Overseas Use
    How can customers connect to Fon Spots when travelling overseas?
    Customers can connect to Fon Wi-Fi Hotspots (known as Fon Spots) using the Telstra Air App, the same way they use it in Australia.
    If you don’t have the App you can login manually.
    Turn on your device’s Wi-Fi
    Select “Fon WiFi” from your Wi-Fi network list
    Once you have connected to the Fon Wi-Fi network, open your web browser.
    Enter your @wifi.telstra.com username and password into the Fon login page
    The @wifi.telstra.com username and password is available in My Account
    How do you find Fon Spots?
    The Telstra Air app shows where Fon Spots are overseas. If you don’t have the app customers can go to Telstra.com/wifi to find out where they are.
    Fon Spots can be found in the United Kingdom, France, Japan, Belgium, Brazil, Germany, Portugal, Netherlands, Poland, South Africa, Japan, South Korea, Brazil, Spain, Italy and in the Moscow region of Russia.
    How many devices can be connected to a Fon hotspot?
    When connecting overseas only 1 device can be connected at a given time to the Fon network. This means if you want to use Fon Wi-Fi on 2 devices while overseas, you will have to first disconnect from Fon on one of them, before connecting the other one.
    PRICING AND USAGE ALLOWANCES
    What is the pricing structure for each of the offers?
    For our fixed broadband customers Telstra Air membership is included in their plan or Bundle price, as long as they have an eligible broadband service and a compatible gateway. As a Telstra Air member, data usage at Telstra Air hotspots and Fon Spots will count towards your home broadband allowance, including usage at sites that are unmetered from your home broadband service such as BigPond Movies, Presto, Foxtel Go and our BigPond unmetered sites. 
    How are customers charged when accessing the Fon network overseas?
    As a Telstra Air member there is no additional charge for accessing Fon overseas - any data used at Fon Spots overseas will count towards the customer's home broadband allowance.
    Security
    How secure is the Telstra Air Network?
    Providing a secure and easy Wi-Fi experience for customers is important to us.
    Like most public Wi-Fi services, browsing sessions on Telstra Air are open with the communication between a computing device and the wireless point unencrypted. We recommend to customers that it’s okay to use the service for general web browsing and for streaming content, however any activity that requires a secure connection such as internet banking should be done via a mobile or fixed broadband service.
    If customers are wanting to share personal information when they’re out and about should consider:
    Using a mobile network connection
    Using a VPN app which in initiates the exclusive connection from the computing device
    Or checking that the site they would like to use has HTTPS to protect their exchanged data before proceeding. HTTPS is in wide use on popular sites such as Facebook which started offering it in 2011.
    What customer information is collected when connected to a Telstra Air hotspot?
    Once you are confirmed as a member of the Telstra Air network we don’t monitor your internet usage other than how much data you use from your FBB account.

    Hi,
    Kindly search google and I am sure you will get lots of inputs.
    And also all the issues posted in SDN are realtime issues which will help you.

Maybe you are looking for