Forms style templates

Hi all,
are there any tools or form templates
out there with a collection of styles (like XPstyle)
that would give our forms a great look
so we can chance the look according to customer-needs
allowing them to choose the most sexy look before going in to production
kind regards
Martin

Martin,
no, just the twoo look and feels: Oracle and Windows
Frank

Similar Messages

  • Select text based on format (free form style text)

    As suggested by Apple, I'm trying to create my first ePub using Pages as opposed to inDesign.
    I only have a PDF as a source file and don't want to re-type all the text.
    When I copy the text from the PDF and paste to Pages, the text comes in with the 'free form' style applied no matter what options I select during copy and paste.
    In order to produce an ePub, I need to set styles for the text. This is quite tedious.
    Is there any way to select text based on the way it is formatted when styles are not applied to the text?

    Here is a script which may be useful if your problem surface again.
    --{code}
    --[SCRIPT words_attributes_to_Style]
    Enregistrer le script en tant que Script : words_attributes_to_Style.scpt
    déplacer le fichier ainsi créé dans le dossier
    <VolumeDeDémarrage>:Users:<votreCompte>:Library:Scripts:Applications:Pages:
    Il vous faudra peut-être créer le dossier Pages et peut-être même le dossier Applications.
    Ouvrir un document Pages contenant des mots soulignés
    Aller au menu Scripts , choisir Pages puis choisir “words_attributes_to_Style”
    Le script appliquera :
    le style "Souligné" aux mots soulignés
    le style "Accentuation" aux mots en gras
    le style "Italic" (si vous l'avez créé) aux mots en italique.
    --=====
    L’aide du Finder explique:
    L’Utilitaire AppleScript permet d’activer le Menu des scripts :
    Ouvrez l’Utilitaire AppleScript situé dans le dossier Applications/AppleScript.
    Cochez la case “Afficher le menu des scripts dans la barre de menus”.
    Sous 10.6.x,
    aller dans le panneau “Général” du dialogue Préférences de l’Éditeur Applescript
    puis cocher la case “Afficher le menu des scripts dans la barre des menus”.
    --=====
    Save the script as a Script: words_attributes_to_Style.scpt
    Move the newly created file into the folder:
    <startup Volume>:Users:<yourAccount>:Library:Scripts:Applications:Pages:
    Maybe you would have to create the folder Pages and even the folder Applications by yourself.
    Select a Pages document embedding underlined words
    Go to the Scripts Menu, choose Pages, then choose “words_attributes_to_Style”
    The script will apply :
    the named style "Underlined" to the underlined words
    the named style "Emphasis" to bolded words
    the named style "Italic" (assuming that you defined it) to italicized words.
    --=====
    The Finder’s Help explains:
    To make the Script menu appear:
    Open the AppleScript utility located in Applications/AppleScript.
    Select the “Show Script Menu in menu bar” checkbox.
    Under 10.6.x,
    go to the General panel of AppleScript Editor’s Preferences dialog box
    and check the “Show Script menu in menu bar” option.
    --=====
    Yvan KOENIG (VALLAURIS, France)
    2011/11/13
    2011/11/13 enhanced by Nigel Garvey in : http://macscripter.net/viewtopic.php?pid=145883#p145883
    --=====
    on run
              set Underlined_loc to my getLocalizedStyleName("Pages", "Blank.template", "STYLE_Underline")
              set Emphasis_loc to my getLocalizedStyleName("Pages", "Blank.template", "STYLE_Emphasis")
              tell application "Pages" to tell document 1
                        set character style of words whose underline type is single underline or underline type is double underline to character style Underlined_loc
                        set character style of words whose bold is true to character style Emphasis_loc
    Assuming that you defined your own Italic style named "Italic", you may use : *)
                        try
                                  set character style of words whose italic is true to character style "Italic"
                        end try
              end tell
    end run
    --=====
    Example
    set Heading8_loc to my getLocalizedStyleName("Pages", "STYLE_Heading 8")
    Requires :
    getLocalizedName()
    on getLocalizedStyleName(theApp, tName, x)
      activate application theApp
              tell application "System Events"
                        (application file of application process theApp as text) & "Contents:Resources:Templates:" & tName & ":Contents:Resources:"
                        return my getLocalizedName(theApp, x, result)
              end tell
    end getLocalizedStyleName
    --=====
    on getLocalizedName(a, x, f)
              tell application a to return localized string x from table "Localizable" in bundle file f
    end getLocalizedName
    --=====
    List of default styles embedded in the Blank template :
    "STYLE_Body" = "Corps";
    "STYLE_Body Bullet" = "Puce du corps de texte";
    "STYLE_Bullet" = "Puce";
    "STYLE_Caption" = "Légende";
    "STYLE_Emphasis" = "Accentuation";
    "STYLE_Footnote Text" = "Texte de note de bas de page";
    "STYLE_Free Form" = "Format libre";
    "STYLE_Harvard" = "Harvard";
    "STYLE_Header & Footer" = "En-tête et bas de page";
    "STYLE_Heading 1" = "Sous-section 1";
    "STYLE_Heading 2" = "Sous-section 2";
    "STYLE_Heading 3" = "Sous-section 3";
    "STYLE_Heading 4" = "Sous-section 4";
    "STYLE_Heading 5" = "Sous-section 5";
    "STYLE_Heading 6" = "Sous-section 6";
    "STYLE_Heading 7" = "Sous-section 7";
    "STYLE_Heading 8" = "Sous-section 8";
    "STYLE_Heading 9" = "Sous-section 9";
    "STYLE_Legal" = "Légal";
    "STYLE_None" = "Aucun";
    "STYLE_Normal" = "Normal";
    "STYLE_Normal 22" = "Normal 22";
    "STYLE_Normal 4" = "Normal 4";
    "STYLE_Normal 8" = "Normal 8";
    "STYLE_Numbered List" = "Liste numérotée";
    "STYLE_Series_0" = "Series_0";
    "STYLE_Series_1" = "Series_1";
    "STYLE_Series_2" = "Series_2";
    "STYLE_Series_3" = "Series_3";
    "STYLE_Series_4" = "Series_4";
    "STYLE_Series_5" = "Series_5";
    "STYLE_Strikethrough" = "Barré";
    "STYLE_TOC" = "Table des matières";
    "STYLE_TOC Heading 1" = "Sous-section 1 de table des matières";
    "STYLE_TOC Heading 2" = "Sous-section 2 de table des matières";
    "STYLE_TOC Heading 3" = "Sous-section 3 de table des matières";
    "STYLE_TOC Heading 4" = "Sous-section 4 de table des matières";
    "STYLE_Title" = "Titre";
    "STYLE_Underline" = "Souligné";
    "STYLE_[Null]" = "[Nul]";
    You may use more sophisticated custom styles embedding several properties:
    baseline shift (real) : Raise or lower the target text.
    bold (boolean) : Whether the font style is bold.
    capitalization type (all caps/normal capitalization/small caps) : Whether a capitalization style is applied.
    character background color (color) : The color of the character's background.
    color (color) : The color of the font.
    font name (text) : The name of the font.
    font size (real) : The size of the font.
    italic (boolean) : Whether the font style is italic.
    ligatures (all ligatures/default ligatures/none) : Remove ligatures from the target text if the document is set to use ligatures.
    name (text) : The name of the style.
    outline (boolean) : Whether the font style is outline.
    shadow (boolean) : Whether the text box content casts a shadow or not.
    shadow angle (real) : The directional angle, in degrees, that the shadow is cast.
    shadow blur (integer) : The relative amount of blur of images seen through the shadow.
    shadow color (color) : The color of the shadow.
    shadow offset (real) : The offset from the text box content that the shadow extends to.
    shadow opacity (real) : The amount of opacity for the shadow, in percent.
    strikethrough color (color) : The color of the strikethrough line(s).
    strikethrough type (double strikethrough/none/single strikethrough) : Whether one or more lines are drawn through the characters.
    subscript (boolean) : Decrease the font size and lower the baseline of the text.
    superscript (boolean) : Decrease the font size and raise the baseline of the text.
    tracking (real) : The space between text characters, in percent.
    underline color (color) : The color of the underline(s).
    underline type (double underline/none/single underline) : Whether the font style is underline.
    --[/SCRIPT]
    --{code}
    Yvan KOENIG (VALLAURIS, France) lundi 2 janvier 2012
    iMac 21”5, i7, 2.8 GHz, 12 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.2
    My iDisk is : http://public.me.com/koenigyvan
    Please : Search for questions similar to your own before submitting them to the community
    For iWork's applications dedicated to iOS, go to :
    https://discussions.apple.com/community/app_store/iwork_for_ios

  • Issue with style templates & sectioned reports in BI Publisher

    Hello everyone,
    while building a report in BIP 11.1.1.6 I've encountered the next problem. I'm using a style template with defined header & footer, and the layout rtf template supposed to contain several sections (e.g., for 'No Data Found' message). The problem is that whenever I add sections to the report, the header & footer are applied only to the last one — no matter how many sections are there.
    I've looked through the xdo debugging logs and I still see no reason for the <region-header> & <region-footer> not to apply to all of the sections.
    Can anyone help me with this issue?

    Hi Kishore,
    I have a similiar request. We do not have LDAP enabled yet. I configured & linked OBIEE with BIP. I put a BIP report in one of our Dashboard pages.
    When logged in as Administrator / or the user who has admin rights, I could see the BIP report in dashboard but any other users can not view the report. Can you please share the doc you have with me and it might be useful.
    My mail id is - [email protected]
    Many Thanks
    Mahesh

  • Custom Interactive adobe form as template in PMS

    Hi Experts,
    In PMS i want to use custom interactive adobe form as template instead of standard.My issue is after creating Int.Adobe form how we can call custom form instead of standard form?
    Any BADI's i have to use?
    How we can map the fields?
    Please help me.
    Regards,
    Arun.

    Hi Arun
    Step 1: Go Tcode: OOHAP_BASIC
                Enchancement Area -  AP     Print Layout
                Define your Enhancement
                Example:
                ZPRINT     XXX print form
                PMP                          PMP PDF
                SMARTFORM     Print Appraisal Documents: Old (with Smart Forms)
                STANDARD     Standard
    Step 2: Go Tcode: PHAP_CATALOG
                On your Template under Layout Tab
                Further - Print Layout -> Plug in your Custom Print Form
    You should be all set.
    Thanks
    RAjdeep

  • 1099 Forms : PDF Template

    Hi,
    We want to use the oracle seeded report and create a custom template. In the template form I cannot delete the seeded template. Has anyone run into this issue? I do not want to have the seeded template as the default but I cannot modify it or create a new data definition with the same name. Any help would be great because I do not want to customize the concurrent program to have a different short name.
    Thank you,
    CC

    Hi,
    You will need to end date the seeded template (1099 Forms). You will then create a new template. Use anything you want for the template name (Custom 1099 Forms) and template code (CUSTAPXT7F99P). The data definition must be the same data definition name used with the seeded template (1099 Forms PDF Format). Add your custom .pdf file to associate it with your new template. This custom template will now be the default template that is used when the user runs the seeded 1099 Forms PDF Format concurrent request.

  • Quantity times price using Forms Central Template

    I am a new user to Forms Central.  I have created many forms using Word or Excel to create the "artwork" for the form, then saving as a pdf and assigning the form fields.  I have even used simple forumuas in the fields to calculate prices on purchase orders.  However, I am struggling with how to use the Clothing Order template from Forms Central Templates and add fields that allow pricing information and quantity x price to get a total dollar amount ordered.  Employees will be using the form to order uniforms and while they will not need to make a payment, they will need to know how close they are to their maximum amount allowed for uniforms.  Is it possible to add fields that do simple calculations in Forms Central?

    HTML forms in Formscentral don't support calculations. From your post it sounds like you may have started with a PDF workflow. Imported PDFs in Formscentral do support calculations. You should refer to Acrobat recourses for guidance on creating calculation fiends in PDF.
    Andrew

  • Style templates

    Hi,
    I tried to externalize the header and footer formatting of a report. I created a RTF style template with a new style as 'Header_Main' - Paragrah style and uploaded it as a style template.
    In my report, I applied the same style name and add this style sheet to this report. The header formatting is not applied but when I apply the same formatting to the body of the report, it is applied. Could you please let me know if there is any specific style for header which I need to create?
    Thanks!
    Ganesh

    Hey,
    Steps to create a style template:
    1. Create a word document (style template as .rtf) and define formats for dummy text using Home--> Styles. Say for example you name your table heading "My Table" format as "Table Heading" in style pane.
    2. In your report template define table heading "Table of Communities Recruited" format in the styles pane with the same name "Table Heading".(No need to set the fonts,size,color,bold. It will inherit from the style template)
    3. Repeat step 1 and 2 for as many formats you want.
    4. Follow the steps to upload the style template and apply style template to the report from BI publisher documentation.
    Note--> Learn to format word document using styles and not using toolbar.
    Hope you find it helpfull!!!

  • Oracle Form 10g Template

    Hi,
    Does anybody can tell me where I can get a copy of Oracle Forms 10g Template?
    Does the filename still Template.fmb?
    which directory I can find it?
    When I run the Form Builder 10g I notice that the standard Triggers in
    Form6i in Form Level are no longer available in Form10g. I just curious
    if I got the right install or not?
    Thanks.
    Regards,
    Jun

    Jun,
    A template is one form you created to base others on it.
    I may contains alert boxes, triggers, object groups, etc, every objects need in all the forms of your application.
    I do not think there is any template.fmb shipped with the installation.
    Francois

  • APA Style Template in Pages for Mac?

    Does anyone know how to create an APA style Template in Pages for Mac?

    Search for a Word APA template to your liking and open that in Pages.
    The problem you will encounter with Pages 5.5.1 is that the List styles are fairly broken and require far more work than they should need.
    If you have Pages '09, use that instaed.
    Peter

  • Fireworks form style in Dreamweaver

    I really like the form styles in Fireworks but how do I use them in Dreamweaver? Is there a way to import them? And I don't understand why there are forms in Fireworks if we can't use them. Or can we...?

    Here's an article on the topic:
    http://www.adobe.com/devnet/fireworks/articles/fireworks_web_design_css_05.html
    It seems to me that it would be easier to use Dreamweaver to create your forms.

  • Dynamic stamp form or template

    Hi,
    I need to create a custom dynamic stamp form for my document, with custom check boxes.
    I read that it might be eaiser to make my form a template and overlay the template on my page instead
    of doing the custom dynamic stamp because it would be no coding and easier?
    Can someone point me in the right direction?
    Thanks for your help!

    For the check boxes you might want to look at Dynamic Stamp Secrets by Thom Parker and PDF Stamps Gone Wild!!  at www.pdfscripting.com.

  • Video or step by step tutorial link for create forms using template.fmb

    Hi,
    Give me link which provides step by step tutorial or video tutorial for the following:
    1. where should i save the template.fmb and library files in my local machine
    2. how to create customize form using template.fmb
    3. how to do test run that form in local machine (i'm asking this because the template form having reference to app libraries)
    3. how to convert .fmb to .fmx
    4. how to register that form in apps
    i understood about how to do the above process through existing threads in this forum, but i getting lot of errors and confusion while i'm implementing. so please tell me steps or give link which provides details.

    What Forms version are you using? While you're at it, what is your database and OS versions also? Can you provide us with an example of the type of errors you are getting?
    (i'm asking this because the template form having reference to app libraries)Developing Forms for Oracle Enterprise Business Suite (EBS) is different from non-EBS applications because of the EBS Framework and standard processing that occurs.
    Your BEST resource for developing EBS Forms is the Oracle Applications Documentation library. Select your EBS version and then find scroll to the Standards section and review the following documents:
    <ul>
    <li>Oracle Applications Developer's Guide
    <li>Oracle Applications User Interface Standards for Forms-Based Products
    <li>Oracle Application Framework Personalization Guide
    </ul>
    For most of your questions, you'll find the answers in the aforementioned documents.
    1. where should i save the template.fmb and library files in my local machineMy guess is that many of the errors have to do with attached libraries. The APPSTAND.fmb, TEMPLATE.fmb and all of the Apps Libraries (.pll) must be in the FORMS_PATH. Which means you will need to modify the FORMS_PATH registry entry for your Forms version (6i or 10g) and EBS version (R11 or R12).
    3. how to do test run that form in local machine (i'm asking this because the template form having reference to app libraries)You can't - there are too many EBS Framework calls that will generate errors when the form runs outside of the EBS Framework. You have to test your form in a Test/Dev EBS system.
    3. how to convert .fmb to .fmxUse the Forms compiler executable. (frmcmp.exe - on Windows)
    4. how to register that form in appsThis process is too indepth to explain in the Forum - read the Administrator Guides ;-)
    I get the feeling you are trying to learn this on your own rather than attend a class. My advise is to attend some classes. They are well worth the investment! :)
    As to videos, you might want to try searching uTube. I've seen some Forms tutorial videos out there in the past.
    Lastly, your best source of 'Forum' help is the General EBS Discussion forum.
    Hope this helps,
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.
    Edited by: CraigB on Oct 14, 2010 9:23 AM

  • Mapping style templates and properties to Actual Style Sheet Classes

    I got this response to an email regarding creating a customized style sheet and thought others might find it useful following is my initial question and the response from David Phipps. If anyone else has input to this conversation please join in.
    Initial question: I'm trying to create a highly customized style sheet and could use a matrix that maps the various properties to the styles that each property affects. I have had some success determining the specific styles that I would like to change but am unable to use the style mill with any efficacy to make those changes. We are attempting to create a single language style sheet with a unique color scheme that matches our branding. One big problem we have run into is that certain styles are called in multiple places with different backgrounds (i.e. breadcrumbText). Any help along these lines that you could provide would be greatly appreciated.
    Response:The CSS style mapping is not terribly satisfying right now; many objects share common CSS styles, which means if you change one tiny thing the whole page changes. We don't have a matrix or spreadsheet or styleguide that lays out the page itself and defines the styles used in each point. However, the stylesheet mill should work for you, and it's possible that what you have going on is a problem with your mill or an incomplete copy of what it generates.
    There are 18 styles in the portal currently; you can actually create new styles and populate them, which sounds like the option you are interested in. The mill is just an ANT script that uses the template files in the templates directory and combines them with the property files in the prop-color and prop-text directories.
    The prop-text files are per language (10 languages); if you check you'll see the values are all the same right now; the idea is you could change the font names or sizes per-language if you wanted to.
    The prop-color files are per style (18 styles). If you want a new set of property values for, say, style 19, you'd add a file called color.19.properties, and the mill would pick that up and generate 190 files (19 styles x 10 languages). It would then add a new line to community-themes.txt, which has a name of each style for each language, based on data it picked up from your new color.19.properties file.
    The real secret is that you only add color style elements you want to override. If you want a specific set of styles to always be available, just add them directly to the appropriate template file (in your case, the portal50.template file) without using the @variable@ in place of actual values. Then you're just adding new style overrides that apply everywhere.
    Finally, you can add arbitrary new properties to your new prtoperties file and use those in the template:
    in portal50.template:
    ..actionbarPortletBg {background-color: @personal.and.interesting.setting@;}
    in color.19.properties:
    personal.and.interesting.setting=#ff9900
    So the CSS mill is just a glorified text replacement tool.
    Remember that the CSS mill works this way:
    - Run make_all.bat if you're not sure and want to insure you've remilled everything, otherwise use make_community_css.bat or make_menu.bat to remill only community styles or those for the jsportalmenus dropdown, respectively.
    - The resulting files are created in ptimages/tools/cssmill/css
    - You have to copy the resulting files by hand to the imageserver CSS location, which is
    ptimages/imageserver/plumtree/common/public/css
    - You have to forcibly stop and restart your imageserver, be it Apache, Tomcat, IIS, Websphere or whatever; no matter what anyone says the new content won't show up reliably until you restart your imageserver.
    You probably know all this and your real problem is the CSS is not specific enough, that is, you can't get individual items to change like you want. We have been working on this, and the new version of the portal will have much more addressable CSS styles, including the ability to specify styles for individual navigation elements, individual pages, and individual portlets. This basically meant rewriting the HTML we generate, of course.
    Since you can override and rewrite chunks of our HTML as well using View Overrides, if you're in a jam we can walk you through how to rewrite specific bits of the UI that are causing you trouble - for instance, the code that generates the breadcrumbs itself.
    David Phipps
    Senior Engineering Manager
    Plumtree Software

    One way to do this is to give the <body> tag an ID. In a template, you need to make the ID attribute of the <body> tag editable.
    You would then have something like this in your style sheet:
    #home.oneColFixCtrHdr #container #navigation li,
    #services.oneColFixCtrHdr #container #navigation li,
    #about.oneColFixCtrHdr #container #navigation li,
    #contact.oneColFixCtrHdr #container #navigation li,
    #testimonials.oneColFixCtrHdr #container #navigation li,
    #links.oneColFixCtrHdr #container #navigation li
    background-color:
    #66ccFF;
    border-bottom-width: 1px;
    border-bottom-style:
    solid;
    border-bottom-color: #FFFFFF;

  • How do I create a Form Field Template?

    Does this not exist in the new version of Document Cloud? I would like to be able to add form field layers for signing an Invoice where the account information is going to be different each time I use the form - so the standard template will not work.
    Thanks!

    First of all, it's still possible to add library documents for pro agreement. This discussion centers on creating and use  re-usable form layers.
    So instead of having a document plus fields, this feature let;s you create a template of just the fields, which can be stamped on uploaded document.
    The help article from earlier, only discusses the second part  on how to stamp these layers on an agreement.
    It doesn't explain how to create field layers. Creating form layers is done by going to the dashboard>add Template to library.
    In an account that support it, it's here you get the option to create a reusable form layer.
    now as far as I'm aware this field layer feature only ever has  been a feature in multi user accounts. (So old echosign team accounts and higher) In the Document cloud that would be Document Cloud Enterprise premium.
    I even checked with an old pro account which hasn't been updated to the Document Cloud, and that doesn't this feature either.
    if you did indeed used to have reusable form layers as an option, were you using an Echosign pro, or a different type of account?
    However I'll check with our Product management to see if perhaps this feature can be made part of the Pro account.

  • TOC style template for epubs - where is it stored?

    Hello,
    some years ago I saved 3 different toc styles for my epubs. Now I added some more (for 2 levels etc.). This new ones also I saved.
    But when I start to build the epub in the first option windows at the point TOC style navigation there are still the old three templates to select. I'm not able to choose the new ones.
    Now I deleted in every dokument file the three old TOC styles by using the usual TOC tool. But in the epub-generator these templates are still there. With the result: the epub toc wich will be generated is wrong.
    Where are these templates stored?
    I use ID CC 2014.
    Thanks
    Detlef

    Hi Anshul,
    Thanks for your help. I export to epub 2.01 reflowable.
    For dokuments that might be so. But I do it with books and I deleted the TOC styles in ALL documents but it was still there in the list. Also I created a new book with all new dokuments, generates on TOC style in the first document and in the export option list there were the Default style only. It is not to figure out, where ID ist looking for that?
    Cheers
    Detlef

Maybe you are looking for

  • 2 Different Partition Map Scheme's for one external hard drive

    Is it possible to have one external hard drive with 2 different Partition Map Scheme's? One of them will be used to externally boot tiger on a powerpc, and the other for use on my macbook pro?

  • OSB Load balancing issue

    We have a situation in our project. We have weblogic8 sp5 server having a MDB deployed which consumes messages from distributed queues created on WLS8. OSB business services post messages on these distributed destinations. Set up: Non production envi

  • Best approach to write a custom TableCell ?,Boolean

    Hi! I'm trying to write a custom TableCell that will display a checkbox both in render and edit mode.My class is shown below: package work.with.ui.controls; import javafx.event.EventHandler; import javafx.scene.control.CheckBox; import javafx.scene.c

  • Need to format the partition for Boot Camping to NTFS.  How do I do this?

    So yes, I have searched online to find a way to format the partitioned to NTFS so I can Boot Camp my Mac Mini and have found nothing that I can use.  Instead, all I have found are horror stories of others messing up their Macs when doing this.  I wan

  • Error -200279

    Hi friends, I am getting the error -200279 during acquisition. I have developed the application in a PXI located at my place. The application is running fine in that PXI. But when I ran it on PXI which is located at a remote site. It is giving this e