Videos in a Mobile App

I want to build a mobile application (focusing on Android) where I can allow the user to choose from a set of preloaded videos (.MP4, but I can probably do other formats, to include flash - since I'm focusing on android).
This is an early proof of concept.  I downloaded the trial of Adobe Flex Builder, but I do not see a video component.  Is there an add-on?  Can anybody point me in the right direction.
I've been out of coding for a while, but I get it.  I have no experience though in this particular environment.
Thanks in advance for any help!

Can anyone confirm that Stage Video actually works on Ice Cream Sandwich? If not then is there a solution for playing video on android?

Similar Messages

  • Sharing music and videos but not mobile apps btw 2 accts on same Mac

    My wife and I each have accounts on our Mac. When we sync our iPhones, I want each of us to be able to sync our own music and video playlists (from a common repository) but *keep our iPhone apps separate*. We are kind of doing it now, but I'm not quite sure how (or why) it's working. I made a network share on a NAS box for our iTunes libraries and also a Shared library supposedly for Music.
    Can anyone outline a definitive way of organizing the folders in the finder and through iTunes? No speculation please: it's too hard to go back.
    Thanks in advance

    Hmm... this is a bit technical,
    Try posting in the iTunes Match forum, you'll probably find more knowledgeable folks there.
    https://discussions.apple.com/community/itunes/itunes_match

  • Need HTTPService and play video in flex 4.6 Air Mobile App

    We are porting a flex 3.2 app to mobile app. The 3.2 app uses mx.rpc.http.HTTPService to send XML requests for data and launch video web pages. Will a flex 4.6 Air Mobile app be able to do the same? If so, what replaces mx.rpc.http.HTTPService? I read that mx components will not work in Flex mobile apps.

    HI,
    Its working fine.And the mxml components which are displayobject should not be used in the mobile application except the chart.
    So nothing wrong with using "mx.rpc.http.HTTPService",you can also use  <s:HTTPService/>
    Also there is a nice way to see which components should be used or which not for the mobile application.
    Simply mouse over on the component when you have used it.You can see a message on that if that is not optimized for the mobile application like for the combobox you can see this message:-
    "Adobe discourages using ComboBox when targeting profiles: mobileDevice."
    While this is not the case with <s:HTTPService/>.
    with Regards,
    Shardul

  • Enhancement Request to delete selected photo/video from mobile app / LVR2

    Hi, I have enhancement request for action Cam: HDR-AS100VR. Please give ability to delete photo/video from either the PlayMemories mobile app OR the RM-LVR2 device. As the only option is to format the microSD card. It is a hassle to connect to computer to delete specific photo/video from the action cam. With the current functionality to copy/share (from mobile app) as well as playback from RM-LVR2 ; I believe Select and Delete function is not a difficult things to do If Sony doesn't have time to do this, perhaps Sony can make API available for public? Thanks

    Apparently this request is captured in http://community.sony.com/t5/Join-the-Inspiration/HDR-AS100V-Firmware/idc-p/499577#M1090 Closing this thread now

  • Video playback on mobile device

    Hello,
    I'm new here and probably this was asked before me, but I spent a lot to search on the net and actually couldn't find much.
    I'm developing a web based application dealing with video - it should be controlable and have to interact with other elements of the app. The client now asks mobile apps - for Android and iOS, that should have same features.
    I looked for solutions to play video on mobile device using Flex and building mobile apps but nowhere could find a proper explanation and results about framerates and performance. The other problem I think will be that the mobile device should play streamed video (which can be encoded in any suitable format) as well as native video - usually h.264, that as far as I understood, is not possible on iOS (I coudn't find out about Android).
    On my Android device I can play very smoothly even web videos (in the browser) that are not "optimized for mobile" as it pops up during playback. I made a test and build a simple app that just plays a remote video using the Spark's VideoPlayer and its framerate was OK but the picture was terrible - some strange coloured lines appeared.
    Is there anybody who has more info about video playback on mobile device, codecs, components etc. I need that info to make the choice to stick with Flash development for all the apps or to go for native development with platforms' SDK.
    Thanks

    Can you say even more about what it is you want to do? I mean, what will the application do, not what are the technical aspects of how it will work?
    For a point of comparison, look at this thing I did:
    http://www.cartoonnetwork.com/mixit/
    If you try out the Make page, both the template ones and the from scratch one, as well as the View page to see the playback unit in action. Is what you're going to do anything like that?
    I have tried the playback part of this as a mobile app, and it so very nearly works ok! Amongst the many problems are that the overall data rate needed is quite high, and mobile devices aren't as consistant or high bandwidth as desktops, the external swfs often need code in them, so that rules out iOS, and to do the layering involved rules out H.264.
    At some future time there will hopefully be StageVideo that can use H.264, but I don't know when that will be, or whether it will be responsive enough (FLV is much faster to connect to and play than H.264).
    Incidentally, even in the Objective-C world you can't lay things on top of the standard iOS H.264 player. To do that you have to use the AV Foundation class, so it's fairly low level programming. Using FLV in Flash is a lot easier!

  • Dreamweaver CS5.5 Mobile Apps with PHP and MYSQL?

    Hello,
    I don't have Dreamweaver CS5.5 yet and I've been trying to search for information on this but I couldn't find any. I've been learning PHP and been developing with MYSQL with Dreamweaver CS5 but I wanted to know if I can use the same tags and everything if I would to build a Mobile App using the new Dreamweaver CS5.5 (http://tv.adobe.com/watch/cs-55-web-premium-feature-tour-/dreamweaver-cs-55-jquery-mobile- pages/). I overlooked at the video and it seems pretty easy building an app. So is PHP and MYSQL easily integratable? Are there any examples that I might be able to check out?
    Thanks!

    No. PHP is a server-side scripting language that requires a server (or server-like environment) to run.
    An iPhone (or Android) application does not allow for a "built-in" server (which is resource intensive and has scary security implications). You just can't build an application with PHP/MySQL for a mobile device. Instead you can build a web service that your HTML/JavaScript mobile application can then communicate with. This is the only supported way you can use PHP/MySQL in a mobile app. Again: the PHP/MySQL should reside on a server and your HTML/JS mobile app can then communicate with that web service. That's what instapaper and other applications do.
    Frankly, just make a web application that's mobile device friendly and you'll:
    1) Avoid all the messiness of the app stores
    2) Have greater control over what your web app can do (don't have to tow the Apple/Google line)
    3) Have a web app that can work across mulitple mobile devices as well as standard web browsers (i.e. more audience = more $).
    4) Future proof your application (pushing updates to your server and everyone using your web app is updated)
    Otherwise, read-up on Adobe AIR and what it supports and remember, the best apps are written natively for the platform (i.e. want to write an app for an iPhone? Learn Objective-C and use xCode on a Mac. Want to write an app for Motorola Xoom? Learn the Android SDK and use inteliJ).

  • New Features: Cisco Technical Support Mobile App v3.6

    Cisco Technical Support Mobile App v3.6 - New Features:
    On Monday, May 12th, a new version of the Cisco Technical Support mobile application was released with the following new features:
    Aggregated Content For More Than Six Thousand Products
    Select from one of more than six thousand models to access aggregated support documentation, software downloads, and Cisco Support Community content within "Product Information". It is like having your own personal library in the palm of your hand.  
    Pocket Integration
    Send In-App content to your Pocket (Read-It-Later) account for easy, synchronized access across all your devices. As Darren Murph describes on BGR.com, you can further enhance your experience with IFTTT to automate content archival from your Pocket account to several other channels including Evernote, Instapaper, Dropbox, and Box.net. 
    For more Information
    Pocket: http://www.getpocket.com
    IFTTT: http://www.ifttt.com
    IFTTT Pocket Recipes: https://ifttt.com/recipes?channel=pocket#popular​
    Support Contract Expiration Reminders
    With your permission, event reminders can be added to your calendar 90 and 60 days prior to your support contracts expiring. Keeping your contracts up to date ensures non interrupted access to Cisco TAC. 
    And there's more…
    Users with active support contracts can view, update and create support cases, track and initiate RMA Returns, and research software bug information. Stay up to date with the latest offerings from Cisco through several Video, Podcasts and RSS Feeds.
    How to Download the App
    The app can be found by searching for "Cisco Technical Support"in either the iTunes or Google Play App Stores. Direct links to the app are provided below:
    iOS: https://itunes.apple.com/us/app/cisco-technical-support/id398104252?mt=8
    Android: https://play.google.com/store/apps/details?id=com.cisco.swtg_android&hl=en

    Hi Jessica,
    On the iOS mobile app, communities with sub-communities are identified by a blue arrow next to the community.  If you tap on the community name you will be taken to the community, if you tap on the blue arrow you will be taken to the sub-communities within that parent community.  For Android tapping on the arrow next to the community name will expand that community to show any sub-communities underneath it.  I hope this helps.
    Thanks,
    Kent

  • Cisco Technical Support Mobile App v3.10.1 - New Features

    We are pleased to announce the latest release of the Cisco Technical Support mobile app. 
    What's New in Version 3.10.1:
    • Mobile Push Notifications for Support Cases and generic PSIRT announcements
    • Opt-In to receive Support Case update notifications
    • Expanded "My Shortcuts" section includes bookmarked Bugs and Video Channels
    • Expanded access to Product Lookup - no longer blocked whether the device is not under contract or user lacks entitlement
    • Significant performance improvements loading case notes.  Horizontal swiping support to move directly from one note to the next
    Note: Tapping on a notification will launch the app, and take you to the content in question.
    (View Updated User Guide)
    Complete Feature List:
    Available Features for All Users:
    • Research Cisco products and services through mobile optimized content, videos and podcasts. 
    • Complete access to all our installation and configuration guides, data sheets, command reference guides and more for over 7,000 Cisco products. 
    • Access to over 1,700 troubleshooting guides covering 26 domains; written by TAC, for TAC, and freely available to all our customers.
    • PSIRT Mobile Push Notifications - Tap on the notification to launch the app and view details about the PSIRT
    • Control what notifications you receive from within "Settings"
    • Add bookmarks to your favorite Podcasts, RSS Feeds, and Video Channels for easy access from "My Shortcuts"
    • Integration with Pocket (Read-It-Later) service. Save content to your Pocket account for offline consumption across all of your enabled devices. Go to http://www.getpocket.com/ to learn more about setting up a Pocket account.
    Available Features for Cisco Support Contract Owners:
    Cisco Support Cases & RMAs:
    • View, Edit and Create Support Cases
    • Access to all case notes, attachments (txt, pdf, xls, ppt, doc, and image file types), and related bugs
    • Receive mobile push notifications when a TAC Engineer has been assigned to your case and when your case transitions to a Customer Pending state
    • Opt-In to receive mobile push notifications for any support case you are entitled to access
    • Direct contact (phone & email) with your assigned TAC Engineer, On-Site Contact, and Field Engineer
    • Add bookmarks to Support Cases for easy access from "My Shortcuts"
    • Single tap to request case updates, case closure, and reopen cases
    Cisco Support Contracts & Product Coverage Information: 
    • View basic contract information and set-expiration reminders prior to their expiration
    • Lookup product coverage details by serial number - An embedded bar code is available to make the process easier 
    • Ability to validate and update the current installation using your current location
    Bug Search Tool:
    • Research Cisco software bugs by product, iOS version, or any other keyword using a simplified search utility 
    • Bookmark software bugs for easy access from "My Shortcuts"
    Have questions or want to provide feedback? Send us an email at: [email protected]

    thanks for bringing the Cisco support app.
    it works good and easy to use. thanks you Cisco and Team.
    Potha

  • Mobile app based on web service data control and VO with VC runtime error

    Hi,
    Jdev 11.1.2.3.0 + mobile extension.
    Windows 7, 64 bit.
    Reproduceable with Android emulator but not on iOS and iOS emulator.
    I can not test on real Android device because we do not have it in our office.
    So I don't know wether this issue is related to android emulator only or to android in general.
    Also not reproduceable by Oracle support.
    I have a VO "Employees" with a VC "department_id = :departmentIdVariable" and exposed the find method for this VO via service interface in AM.
    (see demo video from https://blogs.oracle.com/shay/entry/developing_with_oracle_adf_mobile?utm_source=dlvr.it&utm_medium=facebook).
    In a ADF mobile app I create a parameter form and amx:listView like demoed in the mentioned video.
    Whenever I test this app on android emulator I get the error below.
    Exact the same page used in a second feature works fine.
    I found out that the problem only occures on the first attept (this means when I open the page on the second feature first then this will fail and the subsequent call of the first page will be successfull).
    The problem does not occure when the web service data control does not contain a method based on VC with bind variable.
    [SEVERE - oracle.adfmf.framework - AmxBindingContext - loadDataControlById] Unable to load Data Control testDataControl due to following error: ERROR [oracle.adfmf.framework.exception.AdfException] - Unable to load definition for testDataControl.Types.findEmployeesView1DepartmentIdCriteria.findCriteria.childFindCriteria.findAttribute.
    ERROR [oracle.adfmf.framework.exception.AdfException] - Unable to load definition for testDataControl.Types.findEmployeesView1DepartmentIdCriteria.findCriteria.childFindCriteria.findAttribute
    at oracle.adfmf.metadata.bean.transform.TransformCacheProvider.fetch(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;(Unknown Source)
    at oracle.adfmf.cache.SimpleCache.get(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;(Compiled Method)(Unknown Source)
    at oracle.adfmf.metadata.cache.MetaDataCache.getByLocation(Ljava/lang/String;)Loracle/adfmf/util/XmlAnyDefinition;(Unknown Source)
    at oracle.adfmf.metadata.cache.MetaDataFrameworkManager.getJavaBeanDefinitionByName(Ljava/lang/String;)Loracle/adfmf/metadata/bean/JavaBeanDefinition;(Unknown Source)
    at oracle.adfmf.dc.VirtualJavaBeanObject.registerAccessorAttribute()V(Unknown Source)
    at oracle.adfmf.dc.JavaBeanObject.registerJavaBean(Loracle/adfmf/metadata/bean/JavaBeanDefinition;)V(Unknown Source)
    at oracle.adfmf.dc.VirtualJavaBeanObject.<init>(Ljava/lang/String;Ljava/lang/String;Loracle/adfmf/metadata/bean/JavaBeanDefinition;Ljava/lang/String;)V(Unknown Source)
    at oracle.adfmf.dc.VirtualJavaBeanObject.<init>(Ljava/lang/String;Ljava/lang/String;Loracle/adfmf/metadata/bean/JavaBeanDefinition;)V(Unknown Source)
    at oracle.adfmf.dc.VirtualJavaBeanObject.registerAccessorAttribute()V(Unknown Source)
    at oracle.adfmf.dc.JavaBeanObject.registerJavaBean(Loracle/adfmf/metadata/bean/JavaBeanDefinition;)V(Unknown Source)
    at oracle.adfmf.dc.VirtualJavaBeanObject.<init>(Ljava/lang/String;Ljava/lang/String;Loracle/adfmf/metadata/bean/JavaBeanDefinition;Ljava/lang/String;)V(Unknown Source)
    at oracle.adfmf.dc.VirtualJavaBeanObject.<init>(Ljava/lang/String;Ljava/lang/String;Loracle/adfmf/metadata/bean/JavaBeanDefinition;)V(Unknown Source)
    at oracle.adfmf.dc.VirtualJavaBeanObject.registerAccessorAttribute()V(Unknown Source)
    at oracle.adfmf.dc.JavaBeanObject.registerJavaBean(Loracle/adfmf/metadata/bean/JavaBeanDefinition;)V(Unknown Source)
    at oracle.adfmf.dc.VirtualJavaBeanObject.<init>(Ljava/lang/String;Ljava/lang/String;Loracle/adfmf/metadata/bean/JavaBeanDefinition;Ljava/lang/String;)V(Unknown Source)
    at oracle.adfmf.dc.VirtualJavaBeanObject.<init>(Ljava/lang/String;Ljava/lang/String;Loracle/adfmf/metadata/bean/JavaBeanDefinition;)V(Unknown Source)
    at oracle.adfmf.dc.VirtualJavaBeanObject.registerAccessorAttribute()V(Unknown Source)
    at oracle.adfmf.dc.JavaBeanObject.registerJavaBean(Loracle/adfmf/metadata/bean/JavaBeanDefinition;)V(Unknown Source)
    at oracle.adfmf.dc.ws.WebServiceObject.registerBean(Loracle/adfmf/metadata/dcx/AdapterDataControlDefinition;Loracle/adfmf/metadata/dcx/soap/SoapDefinitionDefinition;)V(Unknown Source)
    at oracle.adfinternal.model.adapter.webservice.WSDefinition.loadDataControlDefinition(Loracle/adfmf/metadata/dcx/AdapterDataControlDefinition;)V(Unknown Source)
    at oracle.adfmf.dc.GenericJavaBeanDataControlAdapter.loadDataControl(Ljava/lang/String;)V(Unknown Source)
    at oracle.adfmf.dc.ws.WebServiceDataControlAdapter.setDataProvider(Ljava/lang/Object;)V(Unknown Source)
    at oracle.adf.model.adapter.DataControlFactoryImpl.createDataControl(Loracle/adfmf/bindings/dbf/AmxBindingContext;Loracle/adfmf/util/XmlAnyDefinition;Ljava/util/Map;)Loracle/adfmf/bindings/DataControl;(Unknown Source)
    Does anyone has seen the above error ?
    I have recreated the model and mobile app more than 20 times, re-installed Jdev, re-created Jdev settings (integrated WLS & Co), ran the web services on a different machine.
    On my site this problem is 100% reproduceable with android emulator.
    regards
    Peter

    Hi, Peter, this could be an issue with proxy server setting. Are you behind a firewall when you test this?
    iOS simulator would use Mac's proxy setting. Android Emulator has its own proxy setup - it's a bit complicated to get to and varies based on the Android emulator you are using. For 4.1 emulator (you should always use 4.x or above emulators), you would need to go into the emulator itself, and go to settings - Wireless & Networks - click More... - Mobile Networks - Access Point Names. You should see an Access point used by the emulator to simulate network connection. Mine says "T-Mobile US". You click on it, and then you can select the proxy attribute and set it according to your office's settings.
    Hope that resolves the issue.
    Thanks,
    Joe Huang

  • A mobile App for lulu would be amazing!

    As I now have my phone as my link to everything from banking to research, I think a mobile app for lulu would be amazing in order to track sales, promotion of author spotlights and all the other wonderful stuff lulu.com provides us, the selfpublished authors.

    Mobile Flash is no longer being developed (it was discontinued around 2011, IIRC). It never existed on any Apple idevice and buggy versions were installed on Android, but that stopped in August of 2012.
    If your Flash files are video, convert them to a more modern standard (MP4, OGV, WEBM) and use the html5 <video> tag.
    If they're interactive files, ask yourself "can a mobile user interact with these in any appreciable way?".
    Remember, mobile devices don't have mice, all those cool mouse-dependent effects and navigation tricks available in Flash do nothing in the old, buggy mobile Flash environment.
    You "can" get an old version of Flash on some Android phones. It's a relatively hacky feeling way to install called "Sideloading" that typical viewers WILL NOT do. You just have to find a version of the Flash .apk that works with your current Flash files, have a phone that allows Sideloading, then convince your viewers that the file you found isn't going to harm their device since it's no longer available through the secure/trusted channels they would normally go to.
    A very tall order.

  • NFL Mobile app

    It was announced today by verizon that more everything customers will receive premium features for the NFL Mobile app for free  for the 2014-2015 NFL season instead of the $5 subscription fee in years past.  I installed the NFL Mobile app on my elipsis tablet and after 2 hours on the phone with verizon i was told this app in incompatible with the verizon elipsis.  I was able to watch videos that are included with the app, but i wont be able to tell if i can watch football games on this tablet until football season  starts. Does anyone else have a better answer for me?

    Hi Eric,
    Premium features on the NFL Mobile app can only be activated for Smartphones. The app does not have a live games option on tablets.
    Below is a snippet I copied from the application information available in the Playstore.
    "Verizon customers can upgrade to Premium Features on their smartphone for access to NFL RedZone on Sundays, and watch LIVE local Sunday NFL games in addition to Thursday, Sunday and Monday nights...."
    Although it is not the answer you were hoping for, we wanted to answer your question. I forwarded your feedback to the product development team.

  • Authentication Mechanism for Our Mobile App

    Hi All,
    We developed a mobile app with SAP SRM System as backend.
    Java Adapters is used in the front end to access SAP Backend in the form of Web Service URL, which is nothing but FM in the form of URL.
    The FM in our application, takes only the User ID, who logs in as the input and returns the data of the user as expected.
    When the Web-Service is called, it is accessing the SAP SRM backend DIRECTLY.
    So, we have to give SAP Backend Credentials to the WS to return the output.
    Is there anyway by which, the user can login the mobile app with his user ID and some other password set by him in the front end login application (which can also have "Forgot Password?") BUT NOT SAP Backend password, as the user id will be consumed in the back-end by the Web-Services.  
    Hope I am clear:)
    Thanks & Regards,
    Pavan

    Cool. Thanks.
    >>> thsundel<[email protected]> 6/18/2012 8:06 AM >>>
    seschenburg;2201882 Wrote:
    > See subject. :-)
    >
    > We just installed Novell Messenger 2.2 and I've been asked about mobile
    > app availability. Mostly for internal users on our internal wi-fi
    > segment, but if there's an external option please share that also. I'll
    > probably get asked about that next.
    >
    > Thanks.
    iPhone and Android mobile apps should be available in mid 2012
    according to the roadmap: http://www.novell.com/php5/groupwise/ (ignore
    the video)
    Thomas
    thsundel
    thsundel's Profile: http://forums.novell.com/member.php?userid=128
    View this thread: http://forums.novell.com/showthread.php?t=456946

  • Watch Vimeo video into AIR iOS app

    Hi, I'm currently developing a mobile app in Adobe AIR.
    I need to display a full screen video and I saw that the perfect way is to link the user to an .mp4 file into vimeo using this very basicly code:
    myButton.addEventListener(MouseEvent.MOUSE_DOWN,fn_video);
    function fn_video(e:MouseEvent):void{
         navigateToURL(new URLRequest("myVideoOnVimeoURL.mp4"));
    It works perfectly... but now my question is if there's a way to obtain the direct URL of a video into Vimeo.
    From the web site it is possibile... but I need to obtain that path automatically.
    AS3, PHP, JavaScript...doesn't matter the language, I only need a code to study on.
    Cheers
    Bran

    I'm not certain about the rules for using Vimeo feeds outside of Vimeo, but read this discussion:
    http://www.longtailvideo.com/support/forums/jw-player/setup-issues-and-embedding/9340/play -vimeo-video-with-jw-player-its-possible/
    The interesting parts start about a quarter of the way down.

  • Using Flash to develop to games and mobile apps

    This semester I registered for an online course called Motion Graphics with my college.
    The course was supposed to be an introduction to Adobe Flash and Adobe After Effects.
    I signed up for the class specifically because I wanted to learn Adobe Flash to create games and mobile apps.
    Unfortunately, it turns out that as of this semester my college is phasing out Adobe Flash from all of its courses,
    and the course I signed up for is now only teaching After Effects and won't be teaching Flash at all.
    I asked the course instructor about this, and she said it was because "flash can no longer work with creating many "apps" and other applications do not except flash." [sic]
    Is this even a factual statement?
    My college still offers several Java-related courses, but I really would have preferred to learn Flash and ActionScript instead.
    I suppose my primary question here is:
    Would it be better to learn Flash or to learn Java to create apps and games that can run on all of the most common platforms (e.g. Android, iOS, Windows)?

    To be on topic, the course is about "motion graphics", and After Effects is an excellent, highly used tool in that trade. When creating video, Flash is used much less because it's very inferior. Again, in "motion graphics". With a robust expression scripting language in After Effects, Flash lost its footing in this department. Flash was probably only previously part of that course to deploy your video to the web, but it's not necessary or desirable due to (as kglad mentioned) Adobe discontinued Flash Player for mobile. Your target just changed to outputting MP4.
    What you want to do, make apps, is a completely different world. Adobe AIR SDK is a great, frequently updated runtime that I've made dozens of apps with. Java is used with the Android SDK to make native Android apps. Objective-C with Xcode and the iOS SDK is used to make native iOS apps. Visual Studio and Azure (or HTML5/JS/CSS) are used to make Windows apps. The big difference here is the AIR SDK can get a good return on investment from re-using most of the code base of your app (depending on its type) by its scripting language porting to Android, iOS (and I think still Blackberry tabs), not Windows however.
    If you want to make apps, you took the wrong class.
    There are numerous frameworks out there similar to AIR that can deploy to multiple targets that are worth consideration on their own. From specific frameworks (like game-oriented) such as Unity to extremely abstract (used for anything) like Phonegap and standard HTML5 web development.
    I haven't used Flash to make anything like a website in almost a decade. It's strictly been device apps, desktop apps, kiosks and product demonstrations. It's an extremely capable IDE for just about everything, except modern motion graphics.

  • Ten dollars a month to watch "free" NFL mobile app

    Just admit it Verizon: you are going to make 3g users pay 10 dollars a month to watch the supposedly free NFL Mobile App.
    I read the hocus pocus post about data management etc.
    The bottom line is you are going to charge a fee to use a free app.

    Hi jac10,
    I apologize for any confusion surrounding the pricing of the NFL Mobile application. Please see pricing details below:
    When downloading NFL Mobile application fees apply differently depending on current promotions and mobile device type.
    ·          All phones receive Basic Features at no additional cost
    ·          4G devices receive Premium Features at no additional cost for 2011 Season (promotional)
    ·          Effective 10/01/2011, NFL Mobile requires $10 Verizon Video/V CAST Video subscription for users with 3G devices
    ·          Data usage is incurred while using NFL Mobile application and charged per the customer's data package
    When downloading the NFL Mobile Application:
    Customers are advised when accepting the end-user license agreement that a V CAST Video subscription is required to access video content.
    3G customers accessing NFL Mobile video content without a Verizon Video/V CAST Video subscription will see the option to self-provision Verizon Video/V CAST Video for $10 per month to receive the NFL Premium app.
    4G customers will receive free access to NFL Mobile video content through the end of the current NFL season (promotional).

Maybe you are looking for

  • Detecting directory structure changes

    I'm looking for a way to detect any changes to a given directory (including sub directories). Any creation/editing/deletion of files would need to be reported with the name of the file involved along with a path to that file. This would be in a conso

  • Document Security - Forwarding

    Hello, I would like to be able to restrict (or at least track) a document from being forwarded to another user. Is this possible? We have some highly sensitive documents that we do not want to be forwarded to anyone without our knowledge. I do know h

  • One username and password not being added to keychain

    I have entered a username and password for a webpage and answered yes when asked it I wanted this saved it to my keychain. However I can not find the u/n and pass word in my keychain (Safari>Preferences>Passwords) and this u/n and pw is not shared wi

  • OnClick message dissapears

    I used some javascript to make a "thank you for subscribing" message appear after someone clicks a submit button to subscribe to an email list. The problem is, it stays for about 2 seconds, then goes away. Does anyone know how to make it stay after t

  • RFID for third party system(rosetta net)

    hi friends                                       Iam new for this Scenario, customers send the Purchase order through the ASN to the Rosetta net software. We are using the Rosetta net software for receive the purchase order from the customer.