Digital Catalog for iOS Devices?

Hello I am trying to make an epub and/or an online catalog for my business  so people can open them up on an Ipad. If someone could possibly tell me the steps to how to do this, that would be really awesome. I have already made the pages in photoshop and Illustrator CS5 and arranged them in InDesign CS5 then exported them to Flash to create the buttons to switch pages, then converted to an html file using wallaby technologies, but when I try opening it up in the html file the buttons will not work or even show up. I even tried switching the buttons to ones I have made in Illustrator and it still didn't work. It works fine when I am opening it up the swf file on my computer but I cant send the swf file for some reason. And my objective is to send this online catalog out by mail and emails. If someone could please help me accomplish this, I would much appreciate this.
And no I do not have a couple hundred to buy Adobe Digital Publishing Suite.
I have Adobe Design Premium CS5 which includes: InDesign, Illustrator, Photoshop, Dreamweaver, flash, flash catalyst, fireworks, media encoder, bridge, device central,  & extension manager.
Can someone help me without telling me to buy something else?

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

Similar Messages

  • File.upload on Air SDK for iOS devices failed to send http request to server.

    I am trying to use ActionScript's File.upload to upload a file on Air SDK for iOS8 environment, but the File.upload does not work properly. No handler about the file upload is executed after File.upload is invoked, and no exception is caught. When I check the network traffic of the server side, I found that no http request even hit the server after File.upload is executed. The code snippet here is very simple.
      private var file:File;
      private var dir:File;
      //This method is executed to create a file and upload it when the Upload Button is pressed.
      protected function OnUploadButtonPressed(event:MouseEvent):void{
      var str:String = 'This is test';
      var imageBytes:ByteArray = new ByteArray();
      for ( var i:int = 0; i < str.length; i++ ) {
      imageBytes.writeByte( str.charCodeAt(i) );
      try{
      dir = File.applicationStorageDirectory
      var now:Date = new Date();
      var filename:String = "test" + now.seconds + now.milliseconds + ".txt";
      file = dir.resolvePath( filename );
      var stream:FileStream = new FileStream();
      stream.open( file, FileMode.WRITE );
      stream.writeBytes( imageBytes );
      stream.close();
      file.addEventListener( Event.COMPLETE, uploadComplete );
      file.addEventListener( IOErrorEvent.IO_ERROR, ioError );
      file.addEventListener( SecurityErrorEvent.SECURITY_ERROR, securityError );
      file.addEventListener(ErrorEvent.ERROR, someError);
      file.addEventListener(ProgressEvent.PROGRESS, onProgress);
      file.upload( new URLRequest("http://10.60.99.31/MyPath/fileUploadTest.do"));//This line does not work. No handler is executed. No http request hit the server side.
      } catch( e:Error ) {
      trace( e );
      //Complete Handler
      private function uploadComplete( event:Event ):void
      trace( "Upload successful." );
      //IOError handler
      private function ioError( error:IOErrorEvent ):void
      trace( "Upload failed: " + error.text );
      //SecurityError handler
      private function securityError(error:SecurityErrorEvent):void{
      trace( "Security error:" + error.text );
      //Other handler
      private function someError(error:ErrorEvent):void{
      trace("some error" + error.text);
      //Progress handler
      private function onProgress(event:ProgressEvent):void{
      trace("progressHandler");
    When executed on Air Simulator, it works fine as expected, and the file is successfully uploaded to the server. But When executed on iOS devices(in my case, iPad), as I explain early, no handler about the file upload is executed, and no the http request even hit the server. So I think the problem may be in the client side. It seems that the Air SDK for iOS just failed to send the http request for some reason.
    To make my problem more clear, I list my environment below:
    Development Environment:  Windows7 (64bit)  / Mac os 10.9.4 (Tested on  OS platforms.)
    IDE: Flash Builder 4.7
    Air SDK:  3.8 / 16.0.0 (After I updated to the lastest Air SDK 16.0.0 , the problem still exists.)
    Application Server:  Tomcat7 + Spring
    Target OS: iOS 8
    I have been struggling for this for days. So I really appreciate it if anyone has any idea about this.
    Thanks in advance.

    Hi bluewindice ,
    As you have quoted ( ActionScript's File.upload does not work on Air SDK for iOS devices ) , this issue has been replicated at our end, and our team will be working on it.
    Thanks,
    Tushar

  • How to integrate flash media server 4.0 live streaming for iOS devices ?

    Hi All,
    I have website which has live streaming module its working fine, same module i want to integrate for iOS devices. For live video streaming we are using FMS 4.0. So please let me know how we can integrate this for iOS devices using flash media server 4.0.
    Thanks in Adavnce
    Mohammad Sharique

    You need to place the crossdomain.xml in the webroot folder. Create a text file in the webroot folder using notepad, and call it crossdomain.xml. The text below will give you a wide open access policy, which is fine for testing.
    <?xml version="1.0"?>
    <!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd">
    <cross-domain-policy>
              <allow-access-from domain="*" />
    </cross-domain-policy>
    For debugging HTTP streaming I recommend you get hold of something like Charles or Fiddler. These will greatly assist in pinpointing any issues.

  • No,I recently buy an android device which is running ver 4.0 and has flash player.So please make Adobe Flash Player for IOS devices pls!pls  .

    No,I recently buy an android device which is running ver 4.0 and has flash player.So please make Adobe Flash Player for IOS devices pls!pls  .

    You need to contact the folks at the link below.
    http://www.adobe.com/aboutadobe/contact.html

  • F4V player for iOS devices ?

    Hi All, Is there any player to play .f4v file for iOS devices application. (We are using Flash Media Server 4.0).     Thanks In Advance Mohammad Sharique

    You need to contact the folks at the link below.
    http://www.adobe.com/aboutadobe/contact.html

  • Lag When Programming For iOS Device With Adobe Flash Professional.

    Hi, I'm trying to make an Application for iOS device, Everything is find, but when i installed it on my iphone 4 and my iPhone 4S my game start lagging, i don't what to do, i tried to simplifed the code but nothing is working i dont know if it's in the rendering or when i'm trying to export, but on my iPhone it's lagging.
    Any Help Please, Solution ?
    Thanks
    Francis

    Target gpu on the device you're testing .. you'll get much better results.
    You can do it on the xml configuration file on <renderMode> or if you're publishing in flash on the settings of renderMode select GPU.
    Also get rid as much as you can from vector graphics and use bitmaps instead.
    You can use Adobe's method of converting a vector in bitmap like this : myMC.cacheAsBitmap = true;
    And also if you're moving an object, scaling or changing it's transparency use myMC.cacheAsBitmapMatrix = new Matrix();
    These are some basic optimization tips.

  • Error coming while installing Berkeley database for IOS Device.

    Hi I want to install berkeley db in my MAC. My Xcode version is 4.5.2. I downloaded db-5.3.21(Berkeley) from oracle site.I installed command line tool for xcode. I installed berkeley db in my MAC for iPhoneSimulator. Where as for iPhone device I am unable to install. I am following below link for installing the berkeley db. http://docs.oracle.com/cd/E17076_02/html/installation/build_unix_iphone.html
    When I am installing berkeley db for IOS device it is showing following error.
    checking for arm-apple-darwin11.4.2-sh... no checking for sh... /bin/sh checking for a BSD-compatible install... /usr/bin/install -c checking for arm-apple-darwin11.4.2-cc... /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc checking whether the C compiler works... no configure: error: in /Users/celstra/rajaramesh/db-5.3.21/build_unix': configure: error: C compiler cannot create executables See config.log' for more details
    ............................... The error is telling that C compiler cannot create executables... But for iPhonesimulator it is not showing the error...
    Steps performed for installing Berkeley database for IOS device.
    export DEV_iOS=/Developer/Platforms/iPhoneOS.platform/Developer
    export SDK_iOS=${DEV_iOS}/SDKs/iPhoneOS6.0.sdk
    export COMPILER_iOS=${DEV_iOS}/usr/bin
    export CC=${COMPILER_iOS}/gcc
    export CXX=${COMPILER_iOS}/g++
    export CFLAGS="-arch armv6 -pipe -Os -gdwarf-2\
    -no-cpp-precomp -mthumb -isysroot $SDKROOT "
    export CXXFLAGS="-arch armv6 -pipe -Os -gdwarf-2\
    -no-cpp-precomp -mthumb -isysroot $SDKROOT "
    export CFLAGS=${LDFLAGS}
    export CXXFLAGS=${LDFLAGS}
    //export CPP=”/usr/bin/cpp ${CPPFLAGS}”
    export LD=${COMPILER_iOS}/ld
    export AR=${COMPILER_iOS}/ar
    export AS=${COMPILER_iOS}/as
    export NM=${COMPILER_iOS}/nm
    export RANLIB=${COMPILER_iOS}/ranlib
    ../dist/configure --host=arm-apple-darwin9\
    --prefix=$SDKROOT ...   
    Same steps i performed for iPHONESIMULATOR. But at that time c complier works fine. But while i am try to install for IOS device it is showing above error.
    Can we need any license software for this installation. Could any one please provide exact document regarding installation for IOS device.
    Any advice would be appreciated.
    Edited by: 1000547 on Apr 17, 2013 12:58 AM
    Edited by: 1000547 on Apr 17, 2013 1:03 AM
    Edited by: 1000547 on Apr 17, 2013 2:31 AM

    Thanks for the  reply komal i did that but not cleared..one thing when i create the build from my flash builder the error happens.but the same project i used in another flashbuilder and create build..That build works fine...is there any chance for flash builder compiler problem.
    cheers,
    venkat

  • Weird acting of Socket class while build for iOS device

    Hello,
    It's kind of weird and frustrating using Socket class to build package for iOS device (iPad in my case) - I do have the certificates files (P12, Provisioning) and I can build a package from FB4.5.1 too, but if I build the package as 'Fast' mode through 'Run Configuration' wizard the Socket works okay, but if I package with 'Standard' mode it never works - even I tested both the modes in same device! Any suggestions/idea - I couldn't able figure out why it's acting strange in different modes!
    Thank you.

    This is still become ridiculous - I've read in a document online that non-working socket has bug-fix with AIR 2.7, I was using 2.6 previously - so I downloaded the latest AIR 3.0 SDK and rebuild the project - yet its not working! This is ridiculous!

  • HT1338 Java for iOS devices

    I am currently out of country and unable to log onto my personal email account via Comcast.net.  It is requiring me to have JavaScript activated.  But I have looked almost everywhere for a download for either my iPad or 4s iPhone runnning most current iOs.   Is there a location to download or is it even available for iOs devices?

    Java and Javascript are two very different things so don't confuse them.
    If you're  asking about Java there are mentions of it on the web but I've never tried to get it on the iPhone see How to Use Java on An iPhone
    If you asking about Javascript  then that is possible. Open settings on the iPhone go to Safari and make sure javascript is enabled see How to enable JavaScript on the iPhone

  • Design for iOS devices

    I am a novice with web design but was able to make a fairly simple site that looks fine with Safari or Firefox on my desktop but on an IOS device the spacing and layout are all out of wack.
    Is there a special way to design for IOS devices?
    Thanks in advance

    This particular forum was created to help those transitioning from Photoshop.com to Adobe Revel. Your question does not pertain to that topic.
    We also have many other forums relating to other Adobe products at: http://forums.adobe.com

  • Should I create a separate network for iOS devices?

    My family and I are leaving the Windows platform and going Mac/Apple.  Here's what we have:
    3 iPhones, 2 iPads, new iMac (coming from Santa for the kids), new MacBook Pro 15.4 with retina, Roku 3, and possibly thinking of trying Apple TV (to compare to the Roku).
    I have wireless internet through ATT U-verse and their 2Wire router.  I am getting the Airport Time Capsule 2TB today.  My question is...should I setup the airport time capsule as a separate wifi network for all my iOS devices, or should I just extend the current 2WIRE ATT U-verse wireless network?  I think the easiest thing to do would be setup the Airport TC in bridge mode to extend the network.  But I recall reading a blog post where someone set up a separate network on the Airport TC for all his apple products.  This sounded like a great idea because from what I understand, the iOS devices can take advantage of the Airport TC offering a better speed.  Of course, I can't find the article anywhere (Murphy's Law).  My thought is to keep my work laptop (windows) and the Roku 3 on the 2Wire network and the iOS devices on a separate network.
    I'm new to apple products (except the phone haha) so what does the community recommend?
    Thanks in advance,
    AC

    Would the best solution be to extend my current by network running a cable from the LAN port of the uverse router to the WAN port of the airport time capsule?  This would create another wireless AP, correct?  I simply do what you said...use the same wireless name (SSID), security protocol, and password of the uverse router on the airport time capsule and I'm all set.  But I think the airport utility has an option to "Add to an existing network."  Is this the setup I should choose?  I believe you have reference this kb article in another discussion post.  Thanks again for your help.
    This is the way I would do it.. but there is no right and wrong here.. just options with different uses..
    The cable backbone is ideal.
    You are creating another AP.. yes.. and that is why it works.. extend by wireless is slow. You are using wireless in one hop connections.
    Everything else is running over fast ethernet or gigabit hopefully.
    I am not sure if the add to existing network will work correctly.. if you have the TC plugged in by ethernet it should.. but manual setup of this is trivial.
    Bridge the TC as per my previous post.. setup wireless exactly as normal but use same ssid and security setup.. simple to the point of trivial.
    Roaming I must add is perfect in theory.. in practice stuff doesn't always swap "towers" the way you idealize.. it stays stuck to the poorer signal when a better one is right next to it.
    That is the nature of wifi. A voodoo technology.. 80% black arts. and 50% science.. (in voodoo it has poor maths).

  • 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

  • Flash builder mobile app hangs on Realease Build after air 3.1 (3.2 - 3.8) for IOS devices

    The app stoped working after air 3.1 on IOS devices...Its is a Flex/actionscript mobile project...as of May 1st apple forced us to use newer sdk so i updated to air 3.8 and have tried every version since 3.1...the app only works perfectly in release build from air 3.1...on air 3.8 debug on device works perfectly non-debug run on device crashes with sigbus or sig 11 ...Ive used xcode console and device logs and they have not been helpful...since they reference post compiled native code which i dont have acces to i have tried every fix on the web. Ive been trying to figure this out for days..Does anyone have any insight on this issue.
    Curently Using:
    Flash Builder 4.7
    air 3.8 beta
    Compiler options:
    -locale en_US
    -swf-version=21
    -omit-trace-statements=false
    -keep-as3-metadata+=Inject

    The app stoped working after air 3.1 on IOS devices...Its is a Flex/actionscript mobile project...as of May 1st apple forced us to use newer sdk so i updated to air 3.8 and have tried every version since 3.1...the app only works perfectly in release build from air 3.1...on air 3.8 debug on device works perfectly non-debug run on device crashes with sigbus or sig 11 ...Ive used xcode console and device logs and they have not been helpful...since they reference post compiled native code which i dont have acces to i have tried every fix on the web. Ive been trying to figure this out for days..Does anyone have any insight on this issue.
    Curently Using:
    Flash Builder 4.7
    air 3.8 beta
    Compiler options:
    -locale en_US
    -swf-version=21
    -omit-trace-statements=false
    -keep-as3-metadata+=Inject

  • Syncing different libraries and tailoring content for iOS devices.

    Hi guys, got a couple of iTunes and iOS Questions.
    First a little background info:
    I have:
    - A 16gb iPhone 4s
    - A 32gb iPod Touch (Probably 1st gen. I got it 2nd hand).
    I am considering:
    - a 16gb or 32gb iPad (Wifi only)
    I used to be a PC user, but have recently switched to Mac.
    - My PC Library contains all the music and Apps I had up until that change. (This is before I worked out how to use iCloud.)
    - My Mac Library contains all the same music, plus everything I’ve acquired since. But NOT the playlists. For some reason when I copied my music to my Mac, those did not transfer.
    - My iPhone is now synced to my Mac Library. (Which is the better library, but it lacks the old cool playlists I lovingly made).
    - My iPod is synced to my PC library, so it’s missing music, but has those old playlists.
    So my questions are:
    Is there a way to transfer those old playlists to my new library, and sync them with my iPhone? (Most files should still be present, although the file locations may now vary.)
    I want to resync my iPod Touch with my Mac Library, but keep the awesome playlists I have made (Till now, I’ve been reluctant to do this, because my iPod is hooked up to my stereo, and I didn’t want to have to make entire new playlists.)
    Is there a way to bring my PC library up to speed and sync it? (It’s actually a different library, with similar files). I’d actually like to (if possible) delete that whole library and start again so it matches my Mac, and keep it all up to date with iCloud. The only thing I want to save are those old playlists. 
    My girlfriend has almost the same library as me (The PC Version) on her PC, - Plus a few extras I don’t have (Or want. J ). But between us, with home sharing, we have everything. Can we share playlists…
    - On iTunes in the Home
    - On iOS devices (I understand some songs may be missing)
    Also:
    - By the time I put apps on, and leave some space free for photos etc, My iTunes Library is way too big for my 16gb iPhone 4s, so I have manually unchecked a lot of my less listened to music.
    - My 32gb iPod is a great size for me, for storing music and the odd video. I rarely use apps on it now that I have an iPhone.
    - If I do get an iPad, it would basically be for apps. I’d want a bare minimum of my favorite music on it, just to get me through. It would however contain lots of photos, and some video.  In this way, I think a 16gb model would be plenty.
    Is there a way to set up iTunes and my IOS devices so that they sync to the same library, but with content tailored for each device?
    Also, with a setup like that, if a Playlist is missing a few songs because the source file isn’t on that device, will it still play the other songs?
    Thanks SO much.

    - My PC Library contains all the music and Apps I had up until that change. (This is before I worked out how to use iCloud.)
    How did you work this out with iCloud? It has little to do with iTunes.
    1 - playlists. On the old computer, open iTunes. File > Library > Export playlist.
    This will export a file. Copy this file to the new computer then File > Library > Import playlist. It will duplicate playlists (not files) if they are present in both libraries but you can simply delete the playlist you don't want.
    2 - Doing 1 above will add the playlists to the Mac.
    3 - To get the playlist from the Mac to the PC, do as 1 above but in reverse.
    Or if you want it an exact duplicate...
    Delete /Music/iTunes/ folder on the PC.
    Copy the entire /Music/iTunes/ folder on the Mac to /Music/ on the PC.
    This is all you need to do.
    and keep it all up to date with iCloud
    Do you mean iTunes Match ($24.99 a year)?

  • Jabber-config for IOS devices - Set_Status_Inactive_Timeout option \ chat problem

    Is there any possibility to change Set_Status_Inactive_Timeout for IOS clients to 60 min or to disable it with jabber-config.xml file? I've changed Set_Status_Inactive_Timeout option but int take no effect. After user log in to device the Set_Status_Inactive_Timeout is default 15 min (even after jabber reset).
    The main goal is to set this timeout by jabber-config but not users. And the main problem is that the user that goes inactive and is in active chat don't receive messages from other participants of chat any more (simply leaves it).
    maybe persistent chat can save the situation but our CUMP (v 9.1.1) can not implement this option.
    CUCM v. 9.1.2
    Jabber IOS Ipad v. 10.5.2

    After contacting Cisco TAC no solution to this problem was provided they said "" As of now we don’t have this timer, Set_Status_Inactive_Timeout, yet supported on IPad". So maybe later they will provide this function in updated app.

Maybe you are looking for

  • Windows vista Ultimate does not recognize ipod

    Hello, I have Windows Vista Ultimate and whe I plug my 30GB 5G Ipod it asks for the driver. It does not appear nor on explorer nor itunes. I have itunes 7.1.5 installed. i did try reseting the ipod but still the same problem. I did try my Ipod on an

  • How can I control a dc motor speed using an optical switch?

    I am trying to use LabVIEW to create a VI that controls the speed of a DC motor. The system needs to have an user set rpm and the DC motor needs to adjust the duty cycle to obtain the correct rpm dependant on the load. A disk with holes and an optica

  • MM-PUR-OPT-LB Load building without Retail solution

    Hi, has anyone tried to set up automatic load building (module MM-PUR-OPT-LB) in Release ECC 6.0 without using the retail solution? The optimization routines are available but do not work in a non-retail environment. It seems that some retail-related

  • Can i use session variable VALUEOF(NQ_SESSION.USER) in write back report?

    Hi All, I have created a write back report and successfully inserted records into a table. Now i want to capture the user who has inserted in to the table. Till now i have given edit option to the users on USERNAME column. But now i want to capture t

  • SPLIT for line break on ##

    Hi everybody I tried to create a message for an internal abap ticket system. The message is entered by an user on a bsp site. The Function module i have to use only takes the message as a table of char200 lines. So i have to put every 200 chars in an