Input for Mobile Devices: Camera | ADC Presents | Adobe TV

How can you take advantage of the camera integrated in most mobile devices?  Paul Trani shows you how to create an app that uses the native camera application.
http://adobe.ly/wQqFu4

doesn't work, picture loads randomly anywhere...

Similar Messages

  • Input for Mobile Devices: GeoLocation/Google Maps | ADC Presents | Adobe TV

    Geolocation is a top feature on mobile devices. In this video Paul Trani explains how to use the GPS coordinates of a device and plot the coordinates on a Google Map.
    http://adobe.ly/wq4jdr

    I cannot find any information about how to take this a step further and plot a route between my current location and a hard-coded store. Also, I have some purchased apps that map out where I jogged using points every kilometer and a line connecting them. Again, I can find no information about how to do this using Flash CS6.

  • Transform Gestures for Flash Builder and Adobe AIR Mobile Development | ADC Presents | Adobe TV

    Senior Technical Evangelist Duane Nickull illustrates using transformation gestures in Flash Builder, and discusses best practices for zoom events when developing for mobile devices.
    http://adobe.ly/wLSaNj

    How would the app zoom to a point

  • When will Adobe Reader for Mobile Devices support 3D PDF files?

    When will Adobe Reader for Mobile Devices support 3D PDF files?

    There are two basic varieties of LiveCycle XFA...Static XFA and Dynamic XFA, which are very different in terms of their future for potential support in Adobe Reader for iOS. Which variety of XFA are you using?
    Static XFA uses the PDF markup language for content and form fields, so users can view the documents in Adobe Reader for iOS, but we currently do not properly handle filling, saving, and submitting those forms. I have improving our handling of Static XFA on my roadmap, but cannot offer any specific date yet (sorry, policy plus actual uncertainty). I know that there are some other apps that partially support Static XFA, though I do not know how complete their support is. If you can even open the XFA document in Adobe Reader for iOS, it is likely Static XFA.
    Dynamic XFA is effectively a JavaScript application packaged inside a PDF wrapper, which generates layout and form fields via code and requires a significant engine to support this. Support for Dynamic XFA is unfortunately not currently on our roadmap for iOS due to the nature of the technology, and our concern that any implementation we try likely will not pass Apple's restriction against installing something that allows other "apps" to be downloaded and executed from within it. The LiveCycle team is exploring solutions for our enterprise customers wanting to use Dynamic XFA from mobile devices as part of their server offering, but I cannot offer any insight here. To my knowledge, there are no applications that handle Dynamic XFA other than Adobe Reader for the desktop platforms (Windows, Mac, Linux).
    Dennis

  • Adobe AIR for Mobile Devices?

    Hi,
    I was just recently asked whether there is a project for developing Adobe AIR for mobile devices?
    This would be really exciting as you could develop your own projects for mobile devices as well as desktop computers...
    Any ideas?

    It is possible. The thing is Apple won't let developers put their AIR apps into Apple's iTunes store.

  • Adobe to ditch flash for mobile devices! A few questions

    Just read the news. Have a few questions
    1. Is AIR still going to be used for cross platform deployment as that is what I am using now ie: will it be used to deploy html5 apps/programmes?
    2. What tool/IDE will adobe be using for html5 - flash? flex?
    3. All of our multimedia swfs etc... - can they be exported/used in an html5 environment
    4. html5 coding - is it similar to actionscript 3 ie: do we have to start all over again - back to school?
    5. Games coded with actionscript 3. Can these games be exported to html5 or must they be rewritten?
    Flash stays for pc it looks like.
    So it is no longer multiplatform - we will have to code for flash on pc and html5 for mobile devices - is that right or will there be some kind of packager that will export our flash to html5
    Just a few questions

    I don't work for Adobe so my understanding may not be 100% accurate but here we go...
    1. Is AIR still going to be used for cross platform deployment as that is what I am using now ie: will it be used to deploy html5 apps/programmes?
    Adobe will be concentrating on developing AIR for packaging  apps for mobile devices. AIR is ActionScript based and it does not produce HTML5 apps.
    2. What tool/IDE will adobe be using for html5 - flash? flex?
    HTML5 itself is just a flavour of HTML and therefore Dreamweaver is the Adobe tool for it For Javascript based timeline animation etc, Adobe has Edge http://labs.adobe.com/technologies/edge/
    3. All of our multimedia swfs etc... - can they be exported/used in an html5 environment
    Adobe has Wallaby http://labs.adobe.com/technologies/wallaby/ for this - I'm not sure how active the development is lately though. In any case it's impossible to replicate all features of Flash in HTML5.
    4. html5 coding - is it similar to actionscript 3 ie: do we have to start all over again - back to school?
    Again HTML5 itself is just a simple set of HTML tags. JavaScript is very similar to ActionScript, as AS is based on JavaScript (ECMAScript). For example HTML5 Canvas drawing API is very similar to AS3 drawing API. Therefore if you know AS, at least you know the basics of JS syntax.
    5. Games coded with actionscript 3. Can these games be exported to html5 or must they be rewritten?
    If you want it to run on browsers, yes. If you want to convert into apps then AIR does that.
    Kenneth Kawamoto
    http://www.materiaprima.co.uk/

  • Creation of a database engine for mobile devices using j2me

    am trying to develop a database engine for mobile devices.. it is to develop a miniature version of the DBMS that
    can be deployed on a mobile phone..I have to develop my own code for performing tasks such a s creating a table,
    inserting values into it, selecting from it etc..
    I limited my self to develop the software so that it can perform 3 functionalities of create, insert,select..
    I should be taking the details such as table name and its parameters from the user and then should be able to
    create a suitable data structure for it(i tried to develop a class)...
    Usage of RMS package helps me partially in this.. I did that and ll be doing that..
    I got stuck while developing the code for creation of a table.. I am facing problems in creating a dynamic data
    structure for a table and also to use such data structure else where in my project..
    I need help in developing an algorithm for this..
    I would be very grateful to u all if u help me out in developing the code for this project..

    I'm sorry for the amount of time it took me to get back. Derby is an open source database written entirely in Java. I do not know if it can support resource constrained devices like MIDP compliant, but may work okay with CLDC.
    But outside of Derby being a solution, let me give you a few ideas off the top of my head.
    Set up a database server in a separate thread. This server will really be your controller for RMS access.
    Since RMS is just a big sequential 'pipe' you will have to think of data as 'frames' - (starttable) (tableID) (tablename) (data) (tablename) (data).....(endtable).
    When you need to write additional data, just append it to the end of the RMS object.
    When you need to retrieve data, thing are more complex.
    1. Read in all data, looking for your particular tableID. This may be made much easier using RMS filters - (I'm not sure, I've never used them)
    2. Once start of table of interest is found, stick the data elements in either a java vector or array until you reach the table end identifier. I think vector will be a better choice - trust me. (I think its available in J2ME...)
    3. Package this into a do while loop until the element you are searching for is read. If you need to do some sorts on the data or something else that requires the all the data to be present then you need all the data for that particular table. One thing will always be clear. The first data you grab will always be some start table identifier and the last data you grab will be an end table identifier. We just don't know which table because of how we put stuff in the RMS resource.
    This provides you a few positives as well as negatives:
    Positive:
    1. Fast data writes, no need to search for a particular table before accessing it, nor do you need to search for an index in that table.
    2. When looking for data, data may* be found without searching through the entire table. This is accomplished with RMS filters or logic test within the RMS read loop.
    Negative:
    1. Slow when all data of a table is needed (i.e. compute sums or averages of entries). The entire RMS database must be read to ensure all the entries are searched. An example of how this is a problem is as follows: You have 5000 entries in you RMS database resource and you are looking to compute the average of a value in some table. When you first wrote the data to the table, it was done sequentially and no other data for that table exist. But we can't tell if that's the case, so we have to read through all 5000 entries to make sure we looked for every piece of data.
    Beacuse of this issue, this database structure, performance may be fine for 50K - 100K entries (depending on table element size), if the reading requirements don't force full data reads. Otherwise, 25K may be an upper limit.
    I hope this helps.
    Edited by: estarkey on Mar 17, 2009 9:15 PM
    Edited by: estarkey on Mar 17, 2009 10:01 PM

  • Digital Signatures for Mobile Devices

    We currently use smart cards that have our digital signatures and would like to have this transferred or be able to use on a mobile device.  Our forms currently require digital signatures, however, the person can't view the form (created in Livecycle designer ES2) from the mobile phone, therefore we need to upgrade to ES4.  Will we be able to use our current signatures using mobile, without having to use a signature created from Adobe?

    LiveCycle ES4 has Mobile Forms module which actually capable of rendering your existing XFA based forms as HTML5 based form which could be opened on Mobile devices as well.
    Mobile Form has Scribble signature for Mobile devices, the digital signature is not supported on Mobile devices.Check this : http://helpx.adobe.com/livecycle/topics/mobile-forms-dev.html
    Thanks,
    Wasil

  • InDesign document as an interactive PDF for mobile devices?

    How can I export an InDesign document as an interactive PDF for mobile devices?

    Avoid SWF at all cost and export using Adobe PDF (interactive).
    The experience will depend on the PDF reader that the user has installed.

  • How long will an iPad 4 play music whem powered by 2600mAh Flash Chargers for Mobile Devices

    how many hours will an iPad 4 play audio when it is powered by a
    2600mAh Flash Chargers for Mobile Devices ?

    Again, my issue is not with Flash Builder itself. In fact I think Adobe is doing a tremendous job regarding many things at this juncture. They've been under a considerable amount of pressure, especially since Apple tried to declare Flash an obsolete technology. I'm proud of Adobe and Flash - which I thoroughly enjoy working with. I also enjoy working with Flash Builder.
    My issue is in regards to support. It's that simple. I understand that many features take time to prepare prior to their public release. This is obvious. There are a lot of tests to be made prior to even a first release. My issue is a specific one. It is in regards to Flash Builder and their attitude towards this piece of software as it relates to this "mobile storm" that has approached. Everything is about MOBILE, MOBILE, MOBILE. Well, ok.. it's about mobile. Adobe really only has two (count that, 2!) pieces of software that creates Flash content. (and NO, that isn't a lot). There's the Flash IDE and Flash Builder, which is SUPPOSED TO BE FOR DEVELOPERS. One would think that more time would have been spent of getting ELEGANT mobile publishing solutions into Flash Builder at this point. I'm tired of reading one massive pdf after another just to understand what the hell I'm supposed to be doing. AND.. on top of this.. they get simple, fluid, elegant solutions into the FLASH IDE in the meantime. iPhone, Android publishing with the click of a button in the Flash IDE? DONE! Months ago.. Flash Builder 4 with the same capabilities? Nothing. Command lines... Terminal windows.. give me a break.

  • Does CS5 have tools for creating websites for mobile devices?

    Does DW CS5 have any built in tools for creating web pages for mobile devices, iPads, iPhones, etc?
    Thanks.

    This will go back to your other post about the CSS tables, it depends on how much you know.  CSS3 is a style language and while support is growing in Dreamweaver and within browsers it is taking some time so the more you understand the code the better off you will be.  With regards to HTML5 animations, you will find that no tool out there can do this easily outside of some Apple developer tools and if you are serious about programming to work with the iPhone/iPad you will want to sign up (registration is free) and download their developer tools.  Adobe has mentioned making some strides and trying to use their existing tools (ie: Flash) to help transition to HTML5 animations from Flash and Illustrator has also gained some HTML5 vector tools to help out.
    To find out more about what Adobe is doing for HTML5 there was a post made on John Nack's blog not too long ago that you might want to read over (and follow the links).
    http://blogs.adobe.com/jnack/2010/11/so-what-has-adobe-actually-done-for-html5-lately.html
    Dreamweaver is not going to hand you everything though.  To get the most out of it you have to put something into it.  It is easily the most advanced tool in the PHP and ColdFusion realms (ASP/.NET goes to Visual Studio).  But in order to do more and customize things to your needs, understanding the code is a must in the world of web design.

  • What is the correct Page Width for Mobile Device???

    Hi All
    Just have a question that "What is the correct Page Width for Mobile Device???"
    Is the Default 380px width is right? or 320px?
    Because the average smartphone is having resolution is 320X480 pixels...
    also in this video http://tv.adobe.com/watch/muse-feature-tour/adobe-muse-designing-for-mobile-devices/ Dani Beaumont created the Mobile version website in 320px width (If you watch the video carefully you can notice the page width is 320px)
    And if the default page width 380px taken, will it be displayed correctly on every smart phone (average & high end)?
    please reply if you have any suggestions

    HI. I have designed a mobile web site that is currently 450pixels wide. This is the first one I have done. When it displays on some mobile phones, the width of the entire page is scaled down and it only fills about 1/2 of the width of the mobile phone with a whole pile of mrgin to the right. Is this because I should have designed it to be 380 pixes wide or have I done something else wrong. The test site is at:
    http://ancasterdental.com/muse/phone/index.html
    Please help me if you can. Thank you.
    john.

  • How to create an online fillable form for mobile devices, tablets and smartphones.

    How can I create "online fillable forms" for Mobile devices, tablets and smarphones?
    I already created an "online fillable form" with Adobe Acrobat XI Pro for PCs and MACs but this form can not be filled using mobile devices, it can only be downloaded.
    Thanks.

    Hi George,
    I gather from your reply that I won't be able to create "online fillable forms" for Mobile devices with Adobe Acrobat XI Pro. Correct? 
    If Adobe does not have another software similar to Adobe Acrobat XI Pro, would you please suggest me any other means of creating "online fillable forms" for Mobile devices? 
    Would you think that an HTML developed form would be a fair substitute for the PDF fillable forms that I use for PCs and MACs?
    Thanks,
    Alvaro

  • Click to Call for mobile devices

    How do I add a phone number so visitors using a mobile device can click to call? I'm using CS4.

    Depends on which mobile devices you intend to support.  Unfortunately, there is no one size fits all.  But 320 to 480px wide is customary for iPhones.
    Adobe Mobile Device Central
    http://www.adobe.com/products/creativesuite/devicecentral/features/
    MOBILE WEB SITE DESIGN
    Build Mobile Sites
    http://www.mobify.me/
    Build iPhone, iTouch, iPad web sites & apps
    http://iwebkit.net/
    http://mashable.com/2009/11/26/mobile-web-design/
    http://www.noupe.com/how-tos/mobile-web-design-tips-and-best-practices.html
    TESTING
    iPhone simulator - (on-line)
    http://www.testiphone.com/
    Opera Mini Mobile Simulator (on-line)
    http://www.opera.com/mini/demo/
    Google Android Emulator (download)
    http://developer.android.com/guide/developing/tools/emulator.html
    Palm OS Emulator (download)
    http://www.tucows.com/preview/261443
    Mobile Phone Emulator (on-line emulators for WAP, i-mode™, PDA and J2ME)
    http://waprunner.wap3.net/emu_wap3/p/wap3/
    Blackberry Smartphone Simulators (download)
    http://na.blackberry.com/eng/developers/resources/simulators.jsp
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com

  • Creating a site for mobile devices

    Good morning,
    I have a number of questions relating to the creation of a
    site for mobile devices. My client has given me the assignment to
    re-design his current website, and to also create a sub-site
    suitable for mobiles. I have spent a number of hours looking around
    on the Internet and trying to gain a better understanding of these
    issues. Still, a number of questions remain. if you can give me any
    additional understanding, that would be great.
    Question 1:
    Is my understanding correct: I basically need to create two
    sites, one for the wide-screen browser, and one for the mobile
    browser? I can direct visitors to the mobile site using a CSS or
    javascript link - if their browser identifies them as a mobile
    browser?
    Question 2
    Mobile devices come in all sorts of shapes and sizes and
    versions. PDA\s and iPhone's have different screensizes and
    resolutions that smart--phones, which in turn are different again
    from older and simpler phones. Should I design a site for a number
    of different types of phones? That would a huge amount of work...
    Question 3
    I also own Device Central, an App which I should think is
    very useful in this situation. But I fail to understand it! OK, so
    I can see what my photo or website or flash file looks like on my
    Nokia N73 - but I am not designing specifically for that phone. I
    also want my design to look good on all the other phones! My client
    needs a website that is not tailored to one phone, but to all
    phones.
    Question 4
    And why does Device Central not have profiles for the iPhone?
    I would think it is popular enough to warrant its own profile... (I
    post this from the Netherlands, where the iPhone is not carried
    yet, and so I have only ever held one in my hand). Is this because
    the iphone can see regular sites just fine?
    Question 5
    How does Dreamweaver help me build a mobile site?
    Question 6
    My client wants to show video on his website. In fact, that's
    what this website is all about: showing sports-videos from high
    profile sporting events. Which video-formats are most suitable?
    Question 7
    Do all mobile phones support flash? Or only a few? Or none?
    It seems to me that a flash website would allow for more creativity
    in the design.
    Thanks for any help you can give. Any resources you could
    point me to are also very welcome...
    Sincerely,
    Rogier Bos
    Rotterdam, The Netherlands

    Macnimation wrote:
    > Hi,
    >
    > I'm experimenting with creating a small site off a
    standard site, for mobile
    > phone/devices.
    >
    > Basically, I want to load a basic list page, which has
    links to pages that
    > will display and run flash movies.
    >
    > The flash movies, in FLV format are already at 640 x 480
    which run fine in the
    > main site.
    >
    > Is it simply to resize the movies to fit the mobile
    content size , or will
    > they "auto" resize?
    >
    > Do I have to chnage the webserver configuration in
    anyway, its a standard IIS
    > site at the moment, but MySQL with apache is also an
    option.
    >
    > Would standard html do or would the pages have to be
    done using xhtml or wml?
    >
    > I would like if possible to get this infomration first
    before starting it, so
    > I can possibly reduce delays.
    >
    > Any help or pointers to tutorials would be grateful
    >
    I'd like to check out the PDA scene some day soon, too. In
    the meantime,
    there's a recent discussion of this topic here:
    http://www.sitepoint.com/forums/showthread.php?p=3288343#post3288343
    www.geobop.org - Family Websites
    www.invisible-republic.org - Adult political websites (Mature
    adults only)

Maybe you are looking for

  • How can I save a PDF file sent to me in an attachment to my iPhone 5s

    How can I save a PDF file or word file sent to me as an attachment directly to my iPhone 5s so if I want to read it I don't have to dig into my ail every time?

  • Web services randomly fail to deploy properly in OC4J

    I have an ear with around 15 services, and sometimes (today, all the time, other times, not at all) some of the services fail to deploy correctly in that when I come to access them I get one of the following (the service that fails is generally diffe

  • Satellite Pro A200-1MV - Resolution Issue

    Hi, Brand new machine, with XP Pro pre-installed, and I am trying to adjust my screen resolution. Currently the maximum allowable is 1280x800, or else I can have 1024x768 with a centred screen. I would ideally like to have 1280x1024, as the 800 optio

  • HOW do I create a SIMPLE fading slideshow in dreamweaver CS5?????

    I would like to have a slow fading slideshow of a few images relating to the web page that the user is on. I have a seperate div tag, with the space 235 x 440 pixels allowed for the images. All I want is the slideshow to fade in and out of one anothe

  • JAVAFX with JDK 6

    Hi, I  created a javafx application in eclipse as java environment jdk 6. When i make as executable jar and running outside eclipse the jar throwing an error as Exception in thread "main" java.lang.RuntimeException: Application launch error         a