Can change us static text to the interactive course?

Hi Experts,

Is it still to change static text to the interactive course?. During the execution of my lot my display is as follows,

From.jpg

I want to change that during the lanterns as follows,

To.jpg

Can this be possible to change/add static text to the interactive courses, if so please suggest me the approach to achieve this.


Note: I want to change the static contents of the static form.

Thank you

Raman C.

Hello

Exit 12.1, the 'Interactive edition' parameter has been added to text box objects.

When this option is enabled, you can change the text in interactive or data entry failure Studio box

Tags: Oracle Applications

Similar Questions

  • Hello, we want to know if we can change our creative cloud for the only diet plan (for Adobe Photoshop and Illustrator, only), because when we read it, we but that we can only take one of them. Thanks in advance.

    Hello, we want to know if we can change our creative cloud for the only diet plan (for Adobe Photoshop and Illustrator, only), because when we read it, we but that we can only take one of them. Thanks in advance.

    Yes, you can change your plan.

    Also, IF the change is not possible, you can cancel and buy again.

    Please contact support by calling/chat for cancellation requests and billing queries:

    Contact the customer service

    * Be sure to stay connected with your Adobe ID before accessing the link above *.

    You can also check the help below document:

    https://helpx.Adobe.com/x-productkb/policy-pricing/cancel-membership-subscription.html

    Please go through the Adobe - General conditions of subscription as well.

  • You can change a song somewhere in the Middle rather than start from the beginning?

    You can change a song somewhere in the Middle rather than start from the beginning?

    Hello Gene,

    Currently, there isn't a way to do. It's a great idea and we will certainly look at it later!

    Thank you

    Bronwyn

    Community Manager for first Clip

  • How can I improve the resolution of the text in the interactions?

    By making the interaction in publications, I noticed that the resolution of the text is less. I want to know how to solve this problem.

    What are the interactive elements? If you scroll image make sure to set your folio version v24 or later, the article in PDF format and the value of the render method (in the overlay Panel) to the vector.

    If you use buttons, you should not put the text in buttons. Instead let the text as text only and draw a transparent top button.

    Neil

  • Problem CS5 with the static text in the Index

    When I increased the font size in the paragraph style for my Index entries, static text (see, also, etc.) does not increase to match. How can I change the style of the static text?

    If you check under your character styles, you should have an option for external benchmark. Set it to the same size as the rest of the text for your index.

  • changing value of text with the cursor

    Hi you all

    I need a help from your side

    I have created a slider and change the size of the listview text with the cursor

    Here is my code

     Slider {
                           id: slider
                            fromValue: 8.0
                            toValue: 16.0
                            value: 8.0
                            layoutProperties: StackLayoutProperties {
                                spaceQuota: 0.1
                            }
                            preferredWidth: 200.0
                            maxWidth: 250.0
                            preferredHeight: 20.0
                            visible: true
                            enabled: false
                            horizontalAlignment: HorizontalAlignment.Center
                   onImmediateValueChanged: {
    
    // descriptionText is the id of label
              descriptionText.textStyle.fontSize = FontSize.PointValue
               descriptionText.textStyle.fontSizeValue = immediateValue
                            }
    
                        }
    
    /***********************************************************************//
    i am adding data to listview using remote source
    
      Container {
                id: listviewContainer
    
                layout: StackLayout {
    
                }
                ListView {
                    id: myListView1
                    dataModel: dataModel1
                    //{
                    //  source: "asset:///models/xmldata.xml"
                    //      }
    
                    // Use a ListItemComponent to determine which property in the
                    // data model is displayed for each list item
                    listItemComponents: [
                        ListItemComponent {
                            type: "item"
                            Container {
                                rightPadding: 20
                                leftPadding: 20
                                horizontalAlignment: HorizontalAlignment.Center
                                verticalAlignment: VerticalAlignment.Center
                                layout: StackLayout {
                                    orientation: LayoutOrientation.TopToBottom
    
                                }
    
                                Container {
                                    topPadding: 40
    
                                    horizontalAlignment: HorizontalAlignment.Fill
    
                                    layout: DockLayout {
    
                                    }
                                    // The Item content container
                                    Container {
    
                                        verticalAlignment: VerticalAlignment.Top
                                        horizontalAlignment: HorizontalAlignment.Right
                                        layout: StackLayout {
                                            orientation: LayoutOrientation.RightToLeft
    
                                        }
    
                                    }
    
                                }
    
                                // Description text label
                                Label {
                                    id: descriptionText
                                 //
                               //     objectName: descriptionText
                                    //  leftMargin: 20
                                    horizontalAlignment: HorizontalAlignment.Right
                                    verticalAlignment: VerticalAlignment.Top
                                    text : ListItemData.des
                                    textStyle.color: Color.create("#868686")
                                    textStyle.textAlign: TextAlign.Justify
                                    multiline: true
                                    textFormat: TextFormat.Plain
                                    textStyle.fontSizeValue: 8.0
                                }
    
                        }
    
                    }
            ]
    
        }
    
        attachedObjects: [
            GroupDataModel {
                id: dataModel1
    
                // Sort the data in the data model by the "pubDate" field, in
                // descending order, without any automatic grouping
                sortingKeys: [ "date" ] //[ "pubDate" ]
                sortedAscending: false
                grouping: ItemGrouping.None
            },
            DataSource {
                id: dataSource1
                objectName: ""
                // Load the XML data from a remote data source, specifying that the
                // "item" data items should be loaded
                source:"http://10.121.10.139/simplehtmldom/getdescnews.php?newsid="+dataSource1.objectName
    
                query: "/news/property/"
                type: DataSourceType.Xml
    
                onDataLoaded: {
                    // After the data is loaded, clear any existing items in the data
                    // model and populate it with the new data
                    dataModel1.clear();
                    dataModel1.insert(data)
                    myIndicator12321.setRunning(false);
                    myIndicator12321.setVisible(false);
                    //      dataModel.insert(data)
    
                }
    
                    }
        ]
    }
    
    // in the end i am calling on creating complete
    
    onCreationCompleted: {
            // When the top-level Page is created, direct the data source to start
            // loading data
            dataSource1.load();
        }
    

    problem I am facing is, it does not find the descriptionText variable, which is the id of the label

    can someone help?

    OK, the problem is that listItemComponents attached to a control, such as ListView have their own context. ListItemComponent documentation refers to what I think. If you must do the following:

    1. do you have a property that is defined as an attribute of the ListView

    2 bind your fontSizeValue to listItemComponent tag to the ListView. Note, however, to do this, you need to get a reference to the ListView using your label ListItem.view is found in the container. Not obvious, I know.

    3. do you have your cursor to update the property you have defined for the ListView.

    Cursor---> p_font_size ListView property<---------->

    Like this:

    {To ListView
    ID: myListView1
    property real p_font_size: 10

     

    listItemComponents:]
    {ListItemComponent}
    type: 'point '.
    ID: sample

    {Of container
    ID: mainListViewContainer

    {Label
    ID: descriptionText

    ..........
    textStyle.fontSize: FontSize.PointValue
    textStyle.fontSizeValue: mainListViewContainer.ListItem.view.p_font_size

    }

    and elsewhere on your page

    Slider {}
    ID: slider

    fromValue: 8.0
    toValue: 16.0
    value: 8.0
    layoutProperties: {StackLayoutProperties}
    spaceQuota: 0.1
    }
    preferredWidth: 200.0
    maxWidth: 250,0
    preferredHeight: 20.0
    visible: true
    enabled: true
    horizontalAlignment: P

    onImmediateValueChanged: {}
    myListView1.p_font_size = immediateValue
    }
    }

    I test it and it works. Please make this response as the solution if it works for you too :-)

  • Displaying a value hidden with static text in the field "show text".

    Hello
    I've sifted through a lot of search results and could not find an answer, so I hope someone might be able to help.

    I have a hidden value that contains a date that I extracted from my database. I also have a "Show text" field shows that under certain conditions. I want to show the hidden value in my screen as text with another text field.

    For example, if the value of the hidden field is "10/11/09" I want to show a message that says "database was updated on 10/11/09".

    Advice on how to proceed would be appreciated!

    Thank you

    You can change the "Source" to "SQL query" Type and specify a query similar to

    Select "database update on | : The double HIDDENFIELDNAME

    CITY

  • BlackBerry smartphones can not send new text of the messages folder

    I have a Bold 9650.  I have, unfortunately, updated for the new OS and now I am unable to send texts from the news of my Messages folder.  I can send an email and response to text, but when I open the menu and click on 'Another new message' there is nothing there.  It's a dead link.  I have to go in my contacts folder, compose and send text, then close to everything in my Contacts folder.  Is this a bug or something put in place bad?

    This new OS is horrible.  He got all these bells and whistles, with none of the previous operating system usability.

    Don't give up quite yet, Stacie.

    OS 6 is a solid operating system with many advantages over the OS 5.  If you have recently upgraded to it, your phone can not be used to it and she can act a little.  This is normal and with a few tweaks here and there, we can get it just how you want.

    A battery pull will probably solve this problem.  Remove the battery while your phone is on, then replace it.  Return to your Messages folder and see if the option appears.

    If Yes... Yay!  If not... let know us and we will try something else.

  • Why can't I highlight text? (the text is a scan of a book) I use: PC, Win 8, XI player

    Hi it :-)

    I read a lot of text scanned from my teacher in my study. According to the manuals, I should be able to highlight text - but it does not work.

    Is it because the text is a scan? It only works with text document files that are converted to pdf files?

    Other people in my class meet the same problem. The twist is: it does not work Mac. my co - student (same shared file, original file)

    I use Win 8, XI player

    Please notify :-)

    Is it because the text is a scan?

    Yes. To highlight text, it must be 'true' text, IE the text can be selected, not just an image.

    To convert an image in real text, you need to Acrobat or a subscription to the PDF package.

    You can use the square or other tools to markup design, to create a kind of point culminating on the desired text, though.

  • You can change order of pictures in the Contact sheet in the LR4 print Module?

    You can change the order of images in a contact sheet in the print from Lightroom 4 module?

    Frans is OK, but it must also be in a collection or folder of the lowest level of the tree of user access. If you just file located above this level, you will not be able to sort.

  • Is there a way to extract all the text from the captivate course?

    Hi all, someone can tell me if there is a way to extract all the text from a captivate file? We need to convert all the texts on the audio screen and insert audio into each slide... Thank you for all the input.

    Hello

    Try clicking on file > export > project captions and subtitles. Who should produce a Microsoft Word document.

    See you soon... Rick

    Useful and practical links

    Captivate wish form/Bug report form

    Certified Adobe Captivate training

    SorcerStone blog

    Captivate eBooks

  • Interactive forms - can autosize forms of text when the student types in the PDF?

    I worked on this problem for a good week and I can't understand it. I need to have the students write essay answers in PDF form for the text field of the form must be completed by the student. The form must indicate the text box increase when typing moves to the next line, so that the student can still see the answer full. I want to push the issues in the lower text boxes down as types of students.

    Please let me know how to do this with InDesign and Acrobat XI. I have Adobe CC so if I need to use another program, please let me know that too. Thank you very much for your help!

    There is no way to resize the text box in a PDF form. Mulitline and scrollable is the best you will get.

  • problem with href in the text of the interactive report column

    One of my IR column contains the href tag, and when I try to do any operation (filter, sort, etc.) by clicking on the column header in IR it throws javascript error (unknown runtime error). I think that since the value of the column has a link text in it, something goes wrong with the built-in IR feature.

    It works with firefox but not in IE 6 or IE 7.
    http://Apex.Oracle.com/pls/OTN/f?p=50942:30

    Any help would be appreciated. Thank you.

    Kind regards
    Manish

    Manish,

    I don't know if your needs would allow for it, but I've made the following changes:
    1 added two columns to store the data of the manufacturer more standardized: title and url
    2 displays the title column in the IR, but the column is a link using the URL.
    3. enter in the URL as URL column and added a target = "_blank" attribute as well.

    You can always hide the URL column.

    Kind regards
    Dan

    http://danielmcghan.us
    http://sourceforge.NET/projects/tapigen

    You can reward this answer by marking as being useful or correct ;-)

  • Slice the first few paragraphs of a string so that you can use to replace text in the other textframe

    Hi all

    What I'm trying to do is to replace the text image 1 with text in text image 2, but before I do,.

    I need to extract a few paragraphs of text image 2 and remove the rest that I don't need.

    I came across String.slice method, but I know that charges refers to the characters.

    I wonder if I want only the first 3 paragraphs, what is the best way to do it?

    Thank you very much!

    You can try this:

    textFrame1.insertionPoints [0].parentStory.paragraphs.itemByRange (0.2) .duplicate (LocationOptions.AFTER, textFrame2.insertionPoints [0]);

    textFrame1.remove ();

    Let me know if you need more assistance.

    Michael

  • My fixed cell width can change when adding text

    Hi, I'm new to dreamweaver so this may be an easy question (I hope). In Dreamweaver CS3, I use tables and text position with specific locations cells (it is not a classic 'table' with the data, but rather some strange mix of tables and cells for layout purposes). In any case, my tab properties displays all my cells are 'fixed' width, but when I enter text and format her IE changes the width of the cell when I saw it (Firefox does not work). When I ran to check the Dreamweaver browser compatibility, it says everything is OK. Any idea? I'm pulling my hair out... Thank you very much! -gary

    Thank you all. You have answered my questions completely.

Maybe you are looking for