Help creating scrollable content/ form

I am trying to create a scrollable from for a mobile phone,
but how can i get the form to scroll?
i also want to be able to have a large menu and form scroll
on the same screen.
does anyone know how to do this?

Hi soundsdead,
What is your experience of Flash development? If you are new
to Flash, then I suggest going through as many tutorials as you
can, because if someone tries to explain a scrollable menu and form
to you in one go you will become very confused very quickly.
There are lots of tutorials here:
http://www.adobe.com/devnet/devices/flashlite.html
and here:
http://www.adobe.com/devnet/flash/
If you have been using Flash for a while, then developing a
scrollable menu and form for mobile would be exactly the same as
you would do it for the web.
Regards

Similar Messages

  • Help create a start form.

    I am just started learning workflow. Please tell me how to create a Start Forms.
    I am create my first workflow and create a ABAP dictionary structure to hold the fields. Put the dictionary structure in a workflow container element. But when I try to create start forms in Basic Data i get a message saying "The container does not contain a suitable element for the form data".

    Hi Igor,
    Have you created the Workflow container with structure? Please try with any standard structure like ekpo.
    Or if you trying with any Custom structure, then make sure that the structure is active.
    If everything fine, but still not working then, in the workflow container tick the check box of import and export in Properties Tab.
    Thanks,
    Viji.

  • Creating Scrollable Content In a PDF

    HI
    I'm looking at creating a pdf to send to a client or potential employer (resume) with a scrollable frame so they can using their mouse to click on it and view multiple images by scrolling from left to right. This could for example be used to view 5 or 6 pictures of a photographers portfolio or a number of logo designs for a Graphic Designer. The idea would be to have a frame that contains a number of images that scroll from left to right using the mouse and cursor as the means of moving the images in the frame. I'm not looking for an animation or movie. It must be able to be viewed in Adobe Acrobat.
    I have searched but can only find solutions that are aimed towards EPUBS.
    What I really want to know is "can this be done". If it can't then I can look at producing something else.
    Any help would be greatly appreciated.

    Thanks Bob, unfortunate but at least now I know for sure.
    Thanks again.

  • Need help creating a simple form in Dreamweaver CS3!!

    I'm trying to create a form in Dreamweaver CS3, and while I have the form built I'm confused as to how to make it actually function.  What I'm trying to do is create a form that when the visitor clicks submit, the data is emailed to me.  Can someone help me figure out how to accomplish this?
    Thanks so much!

    Ute's answer is spot on - you need a FormMail script to process the form.  Check with your host (or via the control panel) and see if they supply such a form for free.
    If not, google for "formail script' and you'll find quite a few available - all free to use.
    You just need to add a couple of lines to your html code, change a few things in the formmail script and the form will process.  Sounds complicated but most scripts come with a help file to help you get off the ground.
    Nadia
    Adobe® Community Expert : Dreamweaver
    http://www.perrelink.com.au
    Unique CSS Templates |Tutorials |SEO Articles
    http://www.DreamweaverResources.com
    http://csstemplates.com.au/
    http://twitter.com/nadiap

  • Help creating a grid/form?

    Hello, I'm new to Illustrator here (I have an older version when needed, but I used to use Freehand)
    I'm used to setting up grids/forms by creating the first row, then duping it, aligning it, then dupe the aligned copy on down the page. (Cmd D)
    (takes just a few seconds).
    How do you do this in Illustrator?
    Copy/Paste or option drag 30-40 times .... seems rather ineffective?
    Also, I can't figure out how to get multiple items to align (left) and distribute(heights) with the paths touching without having to manually position them.
    (It's one thing to position the first dupe, and then have it auto-align all subsequent dupes, but it's making me grind my teeth to manually position each row all the way down the page).
    Can someone point me in the right direction here?
    Thanks for any help or pointers!

    Pictrix,
    1. If I'm going to make grids (with variable widths of cols, and random numbers of rows) is that better accomplished in InDesign? Probably, but you may DirectSelect and move gridlines; and at some stage you have to decide the number of rows/columns.
    2. Illustrator won't print to my printer (Photoshop does, however). I can get a PDF from AI to print though... do I use "Bridge" to tell it where to put the PDF's and what to do with them? (I'm a REAL newbie to Bridge, and everything but PS). I didn't see any options for that in the "print" dialog in AI. You should use a PostScript Driver (emulation) if printing from Illy, otherwise PDF is the way.
    3. Does Illustrator only allow for one page per document? Basically, especially in older versions (where you may use Page Tiling), but multiple pages are easier in InDesign in any case.
    4. Is there a pref setting that will just highlight the bounding box of the selected GROUP, rather than highlighting all the paths within the group when it is selected? No, unless introduced in later versions.
    (It's more than a little discouraging that the first 3 things I try, aren't happening  LOL-- although it did open up Freehand docs just fine, so there is that)
    Thank you for your time.
    --pictrix

  • Help creating .csv from forms 6i

    Hello all, I we are running forms 6i webforms. The webforms are located on Unix. What is the best way to take the data from the webforms and create a .csv file? The ultimate goal is to have a file the user can open in excel. It would be great if Pseudo or actual code could be provided. How can would I go about creating a file with the file||datetime and have the user open the file. I'm thinking about calling reports and then using web.show_document, but how could I rename the Oracle report file? Any help would be greatly appreciated. Thanks.

    Hello,
    You can take customize the code and put in the required trigger.
    Cheers,
    Suresh
    DECLARE
    AppID PLS_INTEGER;
    ConvID PLS_INTEGER;
    Buffer VARCHAR2(240);
    ROWCOL VARCHAR2(20);
    CNT NUMBER;
    BEGIN
    AppID := DDE.App_Begin('C:\Program Files\Microsoft Office\OFFICE11\excel.exe C:\test1.xls', DDE.App_Mode_Minimized);
    ConvID := DDE.Initiate('EXCEL','C:\test1.xls');
    GO_BLOCK('BLOCK2');
    FIRST_RECORD;
    FOR I IN 1 .. 500 LOOP
    CNT := 0;
    FOR J IN 1 ..6 LOOP
    BUFFER := '';
    CNT := CNT + 1;
    DDE.Request (ConvID, 'R'||I||'C'||J, Buffer, DDE.Cf_Text, 240);
    BUFFER := RTRIM(LTRIM(BUFFER));
    BUFFER := SUBSTR(BUFFER,0,LENGTH(BUFFER)-2);
    IF BUFFER IS NULL THEN
    EXIT;
    END IF;
    COPY(BUFFER,'BLOCK2.OUTPUT'||TO_CHAR(CNT));
    END LOOP;
    IF BUFFER IS NULL THEN
    EXIT;
    END IF;
    CREATE_RECORD;
    END LOOP;
    DDE.Terminate(ConvID);
    DDE.App_End(AppID);
    FIRST_RECORD;
    END;

  • Need Help Creating Manual Tabular Form

    Hello,
    I am trying to use Denes Kubicek example. [http://htmldb.oracle.com/pls/otn/f?p=31517:170:370485826041084::NO]
    I am not getting any errors; however, my table is not getting updated.
    Updatable Query:
    SELECT DISTINCT
    apex_item.HIDDEN(1,PE_BID) PE_BID,
    apex_item.HIDDEN(2,PE_TERM_CODE) PE_TERM_CODE,
    apex_item.HIDDEN(3,PE_CRN) PE_CRN,
    apex_item.HIDDEN(4,PE_INSTRUCTOR_ID) PE_INSTRUCTOR_ID,
    PE_BID PE_BID_DISPLAY,
    SUBSTR(PE_STUDENT_NAME, (INSTR(PE_STUDENT_NAME, ',') + 1),77)|| ' ' ||
    SUBSTR(PE_STUDENT_NAME, 1,(INSTR(PE_STUDENT_NAME, ',') - 1)) Stu_Name,
    PE_ATH_CODES Sport,
    PE_CRN PE_CRN_DISPLAY,
    PE_CRSE_SUBJECT || ' ' || PE_CRSE_NUMBER || '.'||PE_CRSE_SECTION COURSE,
    apex_item.SELECT_LIST(5,PE_SATTEND,'YES;YES,NO;NO') PE_SATTEND,
    apex_item.SELECT_LIST(6,PE_SPERFORM,'YES;YES,NO;NO') PE_SPERFORM,
    apex_item.SELECT_LIST(7,PE_MAKE_APPT,'YES;YES,NO;NO') PE_MAKE_APPT,
    apex_item.TEXTAREA(8,PE_COMMENTS,3,30) PE_COMMENTS,
    apex_item.TEXT(9,PE_ACTIVITY_DATE,15) PE_ACTIVITY_DATE
    FROM PC_ST_TB_INSTR_ATHL_PR_ENTRY
    WHERE PE_TERM_CODE = :P4_TERM
    AND (PE_INSTRUCTOR_ID = :P4_DISPLAY_INSTRUCTOR_ID
    OR PE_INSTRUCTOR_ID = :P4_DISPLAY_INSTRUCTOR_ID2)Page Process:
    DECLARE
    v_updatecount NUMBER := 0;
    BEGIN
    FOR i IN 1 .. apex_application.g_f01.COUNT
    LOOP
    UPDATE PC_ST_TB_INSTR_ATHL_PR_ENTRY
    SET pe_sattend = apex_application.g_f05(i),
    pe_sperform = apex_application.g_f06(i),
    pe_make_appt = apex_application.g_f07(i),
    pe_comments = apex_application.g_f08(i),
    pe_activity_date = apex_application.g_f09(i)
    WHERE pe_instructor_id = apex_application.g_f04(i)
    AND pe_bid = apex_application.g_f01(i)
    AND pe_term_code = apex_application.g_f02(i)
    AND pe_crn = apex_application.g_f03(i);
    v_updatecount := v_updatecount + 1;
    END LOOP;
    :P4_DISPLAY_COUNT := v_updatecount;
    END;I can't use the wizard because it appears to only allow for 2 primary keys. My table has 4.
    Regards,
    Kelly

    Hi,
    The first thing to do is concatenate the HIDDEN items in front of a displayed item:
    SELECT DISTINCT
    apex_item.HIDDEN(1,PE_BID) || apex_item.HIDDEN(2,PE_TERM_CODE) || apex_item.HIDDEN(3,PE_CRN) || apex_item.HIDDEN(4,PE_INSTRUCTOR_ID) || PE_BID PE_BID_DISPLAY,
    ..etc..That way, you don't have to worry about the first 4 columns in the report.
    Then you need to double-check that the process is actually being run. Immediately after the BEGIN line, enter:
    raise_application_error(apex_application.g_f01(1));When you submit the page, you should get an error showing the PE_BID value in the first row. If you don't get the error, then the process isn't being run - in which case, check the process to (A) make sure it is triggered by the Submit button and (B) is before any other sequence (especially if you have a "reset page" process). If you do get the error, but there is no value shown, then f01(1) isn't pointing to the PE_BID value - in which case, you should do a View Source on the loaded page and check for input items with a name attribute of "f01". If you get the error and the value is correct, then remove the above line and let the process run - it could be that concatenated the columns may resolve the issue. If, after all that, the process still won't save the data, let us know.
    Andy

  • I Need Dire Help Making a Flash Form

    Hello, I need some serious help creating a Flash Form.
    I Have used a template from another site with the following
    input boxes:
    Name: __________
    Email: __________
    Comments: ____________
    However, i had the script working fine, along with its php
    script,
    when i was trying to add more "text" boxes, i must have
    messed the script up somhow.
    When I submit that form, the name is send and email, but the
    email is blank.. ie, there is no "comments"
    here is the code:
    on submit button:
    on (release) {
    // send variables in form movieclip (the textfields)
    // to email PHP page which will send the mail
    form.loadVariables("email.php", "POST");
    sent email messege
    onClipEvent(data){
    // show welcome screen
    _root.nextFrame();
    and the php script (mailer.php)
    php form email.pho
    <?php
    * PHP 4.1.0+ version of email script. For more
    * information on the mail() function for PHP, see
    http://www.php.net/manual/en/function.mail.php
    // First, set up some variables to serve you in
    // getting an email. This includes the email this is
    // sent to (yours) and what the subject of this email
    // should be. It's a good idea to choose your own
    // subject instead of allowing the user to. This will
    // help prevent spam filters from snatching this email
    // out from under your nose when something unusual is put.
    $sendTo = "[email protected]";
    $subject = "My Flash site reply";
    // variables are sent to this PHP page through
    // the POST method. $_POST is a global associative array
    // of variables passed through this method. From that, we
    // can get the values sent to this page from Flash and
    // assign them to appropriate variables which can be used
    // in the PHP mail() function.
    // header information not including sendTo and Subject
    // these all go in one variable. First, include From:
    $headers = "From: " . $_POST["firstName"] ." ".
    $_POST["lastname"] . "<" . $_POST["email"] .">\r\n";
    // next include a replyto
    $headers .= "Reply-To: " . $_POST["email"] . "\r\n";
    // often email servers won't allow emails to be sent to
    // domains other than their own. The return path here will
    // often lift that restriction so, for instance, you could
    send
    // email to a hotmail account. (hosting provider settings may
    vary)
    // technically bounced email is supposed to go to the
    return-path email
    $headers .= "Return-path: " . $_POST["email"];
    // now we can add the content of the message to a body
    variable
    $message = $_POST["message"];
    // once the variables have been defined, they can be included
    // in the mail function call which will send you an email
    mail($sendTo, $subject, $message, $headers);
    ?>
    If anyone can see why the "comments" section is not being
    sent?
    Also: My original problem was how do you add more text boxes.
    I want something like this:
    Name:
    Address:
    Phone:
    Mobile:
    Email:
    Website:
    Comments:
    Ive spent days and days trying to work out how to first make
    a form that actually works, then add more text fields
    Ive looked at many basic form tutorials, but they all seem to
    only have 3 or 4 text fields.. Name, Email, Comments... etc
    I haven't a clue how to edit the script both in action script
    and php to add more fields easy.
    I really need some help with this, its turning into a
    nightmare for me.
    I can provide someone with my .fla project file if they care
    to take a look at what im doing wrong.
    Thanks
    Pan
    ps. Please note: "$sendTo = "[email protected]";" =
    this line i know i must put in my own email.

    This is all about timelines. It seems there is a movieclip
    named 'form' (or possibly an actionscript object, can't tell). Any
    variables created on that timeline are sent.
    So you could have your new textfields on another timeline.
    Or you could have textfields with no instance name in the
    form timeline.
    Those are the first two things to look at. Post the FLA and
    we can tell you more specifically.

  • Scrollable content

    Hello. may be is a stupid question.... but i'm using Adobe CS 5.5 and would like no now how can create scrollable content (text box + pictures) for the ipad...
    Any help?
    There's any tutorial or something?
    Thanks

    The help topic is here:
    http://help.adobe.com/en_US/digitalpubsuite/using/WS67cb9e293e2f1f605e8ea44412b13edc5ec-80 00.html
    You can also find a sample tutorial in the DPS Tips app:
    http://itunes.apple.com/us/app/digital-publishing-suite-tips/id436199090?mt=8

  • "could not save list changes to the server" while creating a new form in SharePoint Designer - custom content type

    i am getting "could not save list changes to the server" while creating a new form in SharePoint Designer.
    Actually the list was created with a custom content type. When i try to create a new form from the custom content type, it fails.
    However, when i try to create a form using item content type, it creates a form successfully.
    Could you please let me know hte workaroud for this.
    Tnx

    Hello,
    This link may be help you to create custom form using content types:
    http://blog.splibrarian.com/2011/03/21/using-content-types-to-modify-the-newform-aspx-and-editform-aspx-pages/
    Hemendra:Yesterday is just a memory,Tomorrow we may never see&lt;br/&gt; Please remember to mark the replies as answers if they help and unmark them if they provide no help &lt;br/&gt;(On vacation from 16th Oct to 28th Oct 2014)

  • Acrobat Help | Creating and distributing PDF forms

    This question was posted in response to the following article: http://helpx.adobe.com/acrobat/using/creating-distributing-pdf-forms.html

    Unless I am reading this incorrectly, in Acrobat Help, webpage http://helpx.adobe.com/content/help/en/acrobat/using/creating-distributing-pdf-forms.html, it looks like step 5 under header "Distribute (send) forms to recipients" is incomplete. Step 5 ends with "...do one of the following:" and that is simply followed by a notation, not two steps.

  • Is there a way to create a PDF form that ANYONE can fill out and SAVE with their content?

    Is there a way to create a PDF form that ANYONE can fill out and SAVE with their content? By anyone, I mean someone who can download and use the free Adobe Reader, on either a Mac or PC. I have Acrobat Pro, and would like to be able to create forms that can not only be filled out and printed, but saved and emailed, which is not an option with the forms I have created to date. They can be filled out, but not saved, with Adobe Reader.
    TIA,
    Nancy

    To do what Dave indicated you need to do, it depends on what version of Acrobat you have:
    Acrobat 8: Advanced > Enable Usage Rights in Adobe Reader
    Acrobat 9: Advanced > Extend Features in Adobe Reader
    Acrobat 10: File > Save As > Reader Extended PDF > Enable Additional Features
    Acrobat 11: File > Save as Other > Reader Extended PDF > Enable More Tools (includes form fill-in & save)
    I wonder what it will be next time?

  • My mail forms created by muse 2014.0.1.30 do not work. PHP 5.4 is enabled by hoster, so they should work. Can anyone help me, for these forms are crucial for my business.

    My mail forms created by muse 2014.0.1.30 do not work. PHP 5.4 is enabled by my hoster, so they should work. Can anyone help me, for these forms are crucial for my business. The forms confirm delivery, but the mails are not recieved. No spam filters enabled.
    Meanwhile, I was able to narrow the problem down: PHP seems not to accept a re-directed mail address as sender of the mail in some cases. So, it has nothing to do with the mail form itself.

    Hi Ingo,
    Please refer to this document, Troubleshooting Muse Form Widgets Used on Third-Party Servers
    Last section, "I've uploaded my new Muse form, and tried submitting it in the browser, but I never receive an email with the form data. What's wrong?"
    - Abhishek Maurya

  • Need help in creating multiple signature forms?

    need help in creating multiple signature forms that can be digitally signed in adobe reader

    Automator gets a bit unweildy when trying to vary things outside of what the actions provide.  Since you are already using an AppeScript in your workflow, might as well do the whole thing:
    set baseFolder to (path to desktop) -- the location to create the folder
    display dialog "Please provide a new folder name:" default answer "test"
    set folderName to text returned of the result
    repeat -- keep repeating until a number is returned
      display dialog "How many subfolders?" default answer "5"
      set theNumber to text returned of the result
        try -- test the result
          set theNumber to theNumber as integer
          exit repeat -- success
        end try
    end repeat
    tell application "Finder"
      try -- make new folder
        set newFolder to (make new folder at baseFolder with properties {name:folderName})
      on error number -48 -- skip errors if the folder is already there
        set newFolder to ((baseFolder as text) & folderName) as alias
      end try
      repeat with X from 1 to theNumber
        try -- make new subfolder
          make new folder at newFolder with properties {name:folderName & X}
        on error number -48 -- skip errors if the folder is already there
        end try
      end repeat
    end tell

  • Help creating a date of birth form in Acrobat 9 standart

    I am using Acrobat 9 standard so I don't have LiveCycle.  I am trying to create a birth date field in my questionnaire for new students.  I am stuck.  Does anyone know how to help me?  I am new to this so I am not sure what I am doing.

    Are you talking about something like Bates Numbering?
    http://help.adobe.com/en_US/Acrobat/8.0/Professional/help.html?content=WS6DE1E376-6A82-406 c-A711-6C5E5207A1F2.html

Maybe you are looking for

  • BT Home Hub resync rate?

    Hi I'm having a serious problem with what I think is to do with my Hub's resync rate. I have a BT Home Hub 1.0 I use it for a home computer, a laptop and Xbox Live. On Xbox Live, every ten minutes it disconnects and connects again. This doesn't affec

  • HT1420 a prompt appeared on my screen stating I need to authorize my mac computer(however my computer is already authorized) for my apps to appear on my iphone

    I synced my iphone today... the result was a request to restore...in the process all my apps were removed...through reseach info to reapply my apps requires me to authorize my mac book pro computer, however, it is already authorized...can you help me

  • Asset value

    Dear all, we have setteled a AUC to fixed asset in a project (PS) and when i go to that Asset and check for the asset values acquired, out of 5 books  we have maintained, i am able to see the value transfer and planned DEp for 4 books and one book ha

  • Not athorized to write to this folder

    I just transferred to Mac a few weeks ago from many years with a PC. So I am fairly new at this Mac stuff. I've been trying to install new camera software on my local hard drive. I know that I need to enter the administrators username and password, b

  • No thumbnail/icons for personal pictures in the finder..

    So, I bought an iMac recently and I'm really liking it - but one irritating issue. On my personal pictures (not default pictures like the iChat icons in the same folder, pictures I've saved onto there) in the Pictures folder in the Finder, the pictur