question from a newbie

Hi everyone, as you can see, I'm a newbie to this forum and in mobile applications.
I would like to know and get help with some advice if I can find some instructions for beginners.
The scenario is: I'm developing my first Flash iOS app so I can compile to ipa. Up to this so good, but I have no idea how can I save the data of the application locally.
I Don t know the options and where can I find the instructions for this level of stupidity.
Thanks to you all!
Leal

Here are some useful (I hope) links:

http://help.Adobe.com/en_US/AS3/mobile/flashplatform_optimizing_content.PDF

http://download.Macromedia.com/pub/labs/packagerforiphone/packagerforiphone_devguide.PDF

http://forums.Adobe.com/community/Labs/packagerforiphone?view=discussions&start=0

http://floatlearning.com/2010/10/key-differences-in-air-for-Android-and-iOS/

Tags: Adobe Animate

Similar Questions

  • Quick question from a newbie

    I want to implement VOIP trunk between two fixed location. Location A is as B location is the work from home. There is a virtual private network between the two, they are on different subnets. I want to access the PSTN line to site B to Site A (home) (work) using VOIP. In other words, I want to use the PSTN to work for voice calls when I'm working from home.

    Can I install the SPA3102 to work and use SPA901 home. No SIP server comes directly from trunk between the two. In other Woods can I just "dial" the SPA3012 using the SPA901 and get the PSTN tone. No other device will not involve just point to point between these two.

    Is it possible, is it easy to implement?

    Thank you very much

    Peter

    I found the answer in the excellent "sandbox SPA3000 to save the document. It seems that this question was asked several times our apologies for those who discover VOIP it also well know what question to ask and what to actually look for!

    Anyway sort

  • a question from a newbie: create user failed.

    Hello.
    I'm a newbie on the oracle database, and now, I encounter a question. It is said in the book that you can use:

    create username
    identified by password;

    to create a user. But when I test:

    create user test1
    identified by test1;

    the system returns:

    ORA-01031: insufficient privileges

    How does this happen?

    It happens because the user with which you are currently connected has no privilege to create users

  • A few questions from a newbie...

    Hello

    I just spent following design Adobe and purchased LightRoom too. Since I worked for more than 25 years with Corel, I have a few questions:

    01. is or there will be facial recognition? (as in 'elements')

    02. When is it possible to add a GPS log information to photos to adding photos from a card?

    03 what is the noise reduction work with exif values (iso, model of camera etc) of the specific photo or is it a ' diminution '?

    04. is there a place I can download more templates HTML/web?

    05. when adding keywords and other meta-data, may they be used in other programs too? (They will appear in other graphic programs?) Or is it something specific 'LightRoom '?

    Thanks for any help,

    Theo

    01. is or there will be facial recognition? (as in 'elements')

    02. When is it possible to add a GPS log information to photos to adding photos from a card?

    03 what is the noise reduction work with exif values (iso, model of camera etc) of the specific photo or is it a ' diminution '?

    04. is there a place I can download more templates HTML/web?

    05. when adding keywords and other meta-data, may they be used in other programs too? (They will appear in other graphic programs?) Or is it something specific 'LightRoom '?

    Theo...

    1. not at the present time but maybe in the future - you can place a request to feature here: https://www.adobe.com/cfusion/mmform/index.cfm? name = wishform & promoid = EWQQL

    2 Jeffrey Friedel has a lot of plugins including geo-coding here: http://regex.info/blog/lightroom-goodies

    3. Yes, noise reduction applied is sensor and iso-dependent.

    4 Matthew has a few nice guns, etc here: http://theturninggate.net/

    5. metadata are stored in IPTC format must be used. The metadata should be saved in files or xmp side cars having Autowrite enabled in the settings of the catalogue or by saving to files with cmd/ctrl-s.

  • Questions from a newbie

    Hello

    I run several VM servers and some VM customers.

    Some of them get IP addresses based on my router/gateway that is 172.16.1.38 and sone of the EEG 192.168.xxx.xxx.

    Why are different sets of assigned addresses and how to get their evolution on the router?

    Also, I can ping virtual machines but the host IP addresses do not appear in the Windows project and I do not see the servers with my browdser. What should I do?

    Thanls!

    Looks like some of your virtual machines use bridged mode, while others use vmnet1 and vmnet8.

    You want to open for all if everyone must get their IP address from your router

    _________________________

    VMX-settings- WS FAQ -[MOAcd | http://sanbarrow.com/moa241.html]- VMDK-manual

  • Question from a newbie Square One

    Good so I just recently started playing with flash. For my music, I create a site entirely in flash. I have the layout and everything I want to do.

    Basically, I want to have the Viewer by clicking on a button (home, about me, music, ect...) and have the page above the bar "menu" change to the appropriate page. I know I know, use buttons and scenes.

    BUT the question I have, is I have actionscript (not sure one, again I'm fairly new,) already in the script, and I don't know how to change it so that both a button scene that kind of thing might work.

    This is what (I assume) the action of the scene button might look like. I know that it is actionscript 3:

    button_1.addEventListener (MouseEvent.CLICK, fl_ClickToGoToScene);

    function fl_ClickToGoToScene(event:MouseEvent):void
    {
    MovieClip (this.root) .gotoAndPlay (1, "Scene 3");
    }

    Here is the code I have in it the graphical thing slide:

    Script section One:

    If (_root._xmouse > _level0.circle._x) {}
    _level0. Circle._x = (_level0.circle._x + 20);
    } else {}
    _level0. Circle._x = (_level0.circle._x - 20);
    }

    Script section two:


    If (_root._xmouse > _level0.circle._x) {}
    _level0. Circle._x = (_level0.circle._x + 20);
    } else {}
    _level0. Circle._x = (_level0.circle._x - 20);
    }
    gotoAndPlay (1);

    http://karimusic.weebly.com/ < < <-I just put the SWF on a random weebly site, just watch the flash as it will be the entire site.

    Thanks for any help!

    1. you need a stop() attached to a frame where you want as your main stop scenario.  otherwise, your swf file will play through all your frames in all scenes and then wrap and repeat.

    2. you have a button named button_1 onstage and you have a "scene 3"?  If so, the following should work:

    button_1.addEventListener (MouseEvent.CLICK, fl_ClickToGoToScene);

    function fl_ClickToGoToScene(event:MouseEvent):void
    {
    MovieClip (this.root) .gotoAndPlay (1, "Scene 3");  Yet once the timeline will not stop unless there is a stop() somewhere (or gotoAndStop()).
    }

  • Quick question from a newbie... Can I use an API of the Adobe Reader to open and fill out a PDF form to my MFC application?

    Hello people.

    If I'm in the wrong forum, might well want to suggest a more appropriate forum?

    It is a pretty basic question.

    I downloaded the SDK and watched, but I'm still a little uncertain. Simply because there is a ton of information to this site, and it's all new to me.

    I have a Visual Studio MFC application. (Visual Studio 2008)

    I want to change the application to read a PDF form to fill out, and I want to programmatially fill in some of the data in the field as it appears on the screen. This could be considered writing a PDF file, but I think it's only complete, because I can do this with Acrobat Reader. I assume that there is an API available to do this.

    I saw something on IAC, then maybe that where I need to study.

    I'm the developer. I need to buy Adobe Acrobat? Or is the right drive for this?

    My customers will need to purchase Adobe Acrobat? Or the drive will be enough?

    It's one thing for me as a developer to buy the tool to improve enforcement, but another question, if I go to the end users and tell them that they need to buy and install Adobe Acrobat.

    I'm not afraid to have a discussion, I just want to know ahead what debate, I need to have.

    Are there different APIs available for different Windows OS? One for XP for Vista 32-bit, one for Vista 64-bit, for Windows 7... etc.

    Or is this the same way, regardless of the platform?

    I'm looking for advice.

    All would be appreciated.

    Thank you

    The only way to fill a form in Adobe Reader is to use the file in FDF or XFDF format.   They are text-based formats that you can put the form data and a link to the PDF document in and then ask the REader to open it (and the associated PDF file) upwards and fill automatically.

    You can't poll drive for more information, however.

  • BlackBerry Smartphones 1 easy question from a newbie

    I know this may sound silly but how come my # is not displayed on the "My Number" when you are on the phone screen?

    Oh 1 thing... How to remove downloaded files that are saved on the memory of the phone, but he can't find anywhere else? I think he said he was going to the 'home' folder but I see not all the files on the "home screen" jkust like when you something on the desktop of your PC.

    Thank you!

    Hello

    Call your carrier.

    Thank you

    Bifocals

  • Another lame real question from a newbie

    Hello

    Well I managed to install on a USB flash drive using the latest version of: VMware-VMvisor-big - 3.5.0_Update_3 - 123629.i386.dd

    http://www.VM-help.com/ESX/esx3i/boot%203i%20from%20USB%20flash%20DRIVE.html

    Also, I get a screen like this:

    "" Download tools to manage this crowd of ".

    ... and all I can do is 'customize the system' and stop restarting.

    Customization is simply keyboard/password/network settings parameters and not much.

    I guess what I have to do is a console of adequate management of a certain kind of startup in order to load the virtual images / manage devices etc.? Where's the guts of this thing? I'm at a loss where to begin.

    I watched a few PDF documentation without a lot of help. The FAQ here makes not much sense to me (sorry). He don'tt seem to be options through the current user interface.

    Thank you

    Alex

    lol you answered that I was typing this up. Good luck with your endevours of virtualization.

    See you soon

    Kevin

  • Questions from the media on the report columns

    Hello

    I'm experimenting with questions from the media on the APEX components such as the columns on the report.

    I have an example that works, but I wonder if it's the best way to go about it.

    APEX media query example

    I applied the following CSS

    @media (orientation:portrait) {
      .landscape_only {display:none;}
    }
    @media (orientation:landscape) {
      .portrait_only {display:none;}
    }
    

    For components such as regions, buttons etc - I can apply "CSS Classes" attribute class to the component level.

    for example: I have applied the .portrait_only in the area of 'Code' in my example

    but for the columns in a report, I had to apply this jQuery on the page loading.

    $('th#HIREDATE, td[headers=HIREDATE]').addClass("landscape_only");
    

    If I applied to the class in the detail of the column that the data has been hidden when Guide to portrait - not the entire column.

    Are there more effective methods of enforcement of the class to the column?

    Reading articles like this lead me to think that way, but I don't know if APEX could be other solutions.

    5 tips for better jQuery selectors - SitePoint

    It becomes a little pain if I wanted to list a number of columns.

    I look forward to jQuery gurus ;-)

    Scott

    Rather than specify the classes at the level of the components and using jQuery when running, why not simply specify the items directly in the stylesheet?

    @media (orientation:portrait) {
      #P2_BUTTON2,
      th#HIREDATE, td[headers=HIREDATE]  {display: none;}
    }
    @media (orientation:landscape) {
      #P2_BUTTON1 {display: none;}
    }
    

    This seems to be a more effective approach that all orientation-based rules are easily visible and easy to manage in one place, rather than be dispersed through the definitions component and dynamic action.

  • Three Questions from beginner to Captivate 3

    Adobe Captivate 3.

    I have three questions from beginner to Adobe Captivate 3.

    1. I noticed that CP3 only creates SWF files.  Why not offer the possibility to create an FLV file in the final product?  What is the difference between a SWF file and a FLV?

    2. I want my finished product for a single slide with a picture in the background and some areas of reversal.  It seems that no matter what I do, the blade is not fixed, but faints and disappears after the default time of 3.3 seconds.  How can I achieve making the slide remains in place, not disappear, and behave as I want?

    3. I want to do a slide that has a video autoplay Flash on it (this part I know how to do), but I want the slide to move to another slide specified when the video ends, without user action.  How can I do?

    Thanks to anyone who can help me on these issues.

    Hello

    Doug chaplain wrote:

    Adobe Captivate 3.

    I have three questions from beginner to Adobe Captivate 3.

    1. I noticed that CP3 only creates SWF files.  Why not offer the possibility to create an FLV file in the final product?  What is the difference between a SWF file and a FLV?

    CP3 does not FLV because it was not part of the specification for CP3. I don't know why it is like that. Maybe the Captivate development team knows for sure. In any case, Captivate 5 was recently released. If the point is little questionable, right?

    Regarding the second part of this question, SWF can have interactivity such as bearings or clickable areas or buttons that perform different actions. FLV is usually just a video, just like a DVD movie that you watch passively, and you do not participate.

    2. I want my finished product for a single slide with a picture in the background and some areas of reversal.  It seems that no matter what I do, the blade is not fixed, but faints and disappears after the default time of 3.3 seconds.  How can I achieve making the slide remains in place, not disappear, and behave as I want.

    You can get there. Just insert a click box and time it so it suspends the slide at the right time.

    3. I want to do a slide that has a video autoplay Flash on it (this part I know how to do), but I want the slide to move to another slide specified when the video ends, without user action.  How can I do?

    So now you change course on us? You said to question 2 you want the finished product is a single slide! This is perhaps another project, you're talking about.

    If you examine the properties of the slide, you will discover a labeled area of Navigation. Using this box, you can choose to navigate to another slide when it finishes playing.

    See you soon... Rick

    Useful and practical links

    Captivate wish form/Bug report form

    Certified Adobe Captivate training

    SorcererStone blog

    Captivate eBooks

  • Question from newb on Application.cfc vs .cfm

    Sorry for the newb question total which is probably covered a bazillion times, but I have some difficulty to get things to work.  I know this, because I got the CF9 advanced training, but when you have 60,000 pages worth of content back to the office waiting to be converted into a new design, there is not much time to practice what you have learned in class .

    A lot of my Office Web site is rest when we were running CF 6.1, so what use the Application.cfm files.  Now that we have run CF8 (and could soon move to something even more recently), I would get everything upgraded, including obtaining my Application.cfm stuff in an Application.cfc file.  One of the reasons why I want to do this is because I have a few apps I want to use the OnRequestStart() methods for.

    My problem comes from the fact that our Application.cfm file done many things such as global variables, queries, and other things that I can't get to work within an Application.cfc file.  Particularly strange is the fact that I've recently implemented a CF10 site to the Web sites of the company of my wife and got done Application.cfc work without much trouble, leading me to suspect a problem installing with my office.

    I tried following the guide on the Hostek forum, but nothing helped.  I can't include the content of our old Application.cfm file in the new cfc.

    Any tips?

    BreakawayPaul wrote:

    If you want these variables (included in the Application.cfc) is available to each requested page, then you must store them in the scope of the request instead.

  • Question from newbie GPIB on multiple devices

    Hello, I'll work on the reproduction of a test bench that communicates through GPIB. I've never worked with GPIB and I'm looking for a list of hardware to buy to reproduce this system and have a question. I'm having 2 GPIB devices, one on the address 9 address the other 22. One device is a voltmeter of HP and the other is a HP (3488 (A) switch unit. The old test bench has 2 GPIB cards for that but my question is should I really 2 GPIB cards to communicate with these 2 devices? From what I've read up to 15 devices can be connected on the same port, GPIB. Is how software should be written is different because of the Garland of devices?

    Hello

    GPIB addresses up to 15 devices and you don't need two gpib cards.

    Addresses of software always using an address, so the only thing you need to take care of is to assign different addresses to instruments and to ensure that all calls are sequential, not parallel because it's just a bus.

  • Questions from Newbie to Smartphones blackBerry re: BIS (but not a newbie to BB)

    I had BB phones since the 8320 came out.  Now have 9700.  I make use of BB intl e-mail when overseas.  (I think BB is in 90 countries - I have used it in at least 15).

    1. I'm not really well informed about all this.  All I know is that BB treats my email is transferred from gmail, Yahoo, etc.  I send my email in gmail (single company)...

    BB will continue this service for phones that work on OS 5, 6 and 7?  I think it has been discontinued on OS 10?

    2 suitable service BES a businessman solo who needs to manage the e-mail?  It would seem that maybe that's only for mega-companies.   Are there companies out there that would bundle small users together in order to access the BES?  (Is it possible.?)

    And finally, if small users will, in fact, to be cut utilities to BB - why should stay us (just 2 lines)?

    Suddenly cut Google Google Voice of all BB users last month.  Google Maps still work on everything but OS10 - but Google could cut that as well (although I doubt it because I think it's a money maker for them.)

    Except for the fact BB may be the last regulation. should w. a physical keyboard - only BB offer do not have Android or other systems of the OS?   Due to a slight hand tremor recently acquired - I need a physical keyboard.  I have trouble using a virtual keyboard.

    Thank you.

    miketha wrote:

    Just a follow-up question, if you don't mind.    TMobile (US), and I think that ATT offers unlimited e-mail for international travel to 67 cents per day.  This feature/option seems to disappear, we continue to use a phone with BIS.

    I have no idea... the companies control plans and the services that they have, and I found it quite impossible to make up the differences among the hundreds of carriers supporting the BB in the world. You ask them about it.

    miketha wrote:

    And thank you to confirm WHAT BES is suitable for large organizations.

    Is not at all what I said, and I do believe that it is true. Internal full BES, Yes, is oriented to companies that can achieve economies of scale. But there are services of BES-level (e.g., hosted) available pretty much anyone.

    Good luck!

  • Question from Newbie blackBerry Smartphone memory card

    I have recently entered the world of BB and am happy with my curve 8330 from Sprint. I am down encryption and have scoured all the online info, I can find as well as the manual. I'm barely scratching the surface of all uses and features, and while I am old guy when it comes to computers (50) and am not an expert, I'm not afraid of technology either and am eager to learn. I have a few simple questions (I hope) that I could use some help/advice for.

    (1) the BB came with a 1 GB card and I also bought a 2 GB card. If I want to change the 2 GB card, I have to do and what items/app will be affected by the swap? I'm not sure if the BB has an internal memory and the memory card, and what exactly is used to by the BB memory card. And what are the benefits to upgrade me to the 2 GB card;

    (2) If an email I rec'v has an attachment which is a video, I can't play (although no problems with photo attachments) is at - it an app I want to download on the BB for videos, and if so how can I do this and where to get the application? I've never downloaded an app on the BB before and am not sure exactly how do;

    (3) is at - he an advtage to connect to a Wifi hotspot from your mobile operator in some cases and my 8330 allows a wifi connection and how do I configure it if so.

    Thanks for anyadvice and help that you can lend... I'm new to this but am fascinated by the possibilities.

    Joel

    If media files are on your device memory, it just load Media Manager into the Desktop Manager and move on.

Maybe you are looking for