Customized Skin missing Nav controls

Has anyone seen a problem with customizing a skin there are no navigation controls (left-right).  This is out of the box, even a basic test skin.  I am seeing the icon.gif in the skin itself when I look at the code.  This is in RH8.

Hi there
See if the link below helps you answer the question.
Click here to view
Cheers... Rick
Helpful and Handy Links
RoboHelp Wish Form/Bug Reporting Form
Begin learning RoboHelp HTML 7 or 8 moments from now - $24.95!
Adobe Certified RoboHelp HTML Training
SorcererStone Blog
RoboHelp eBooks

Similar Messages

  • Resizing controls with custom skin

    Hi,
    Can someone tell me how to make a spark control with a custom skin made in Catalyst to behave like a standard unskinned control when resized in design view of Flash Builder or during runtime? In other words I want it to behave like it's 9-sliced. For example, I've made a simple and ugly rounded skin for TextInput in Catalyst like this:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Skin xmlns:s="library://ns.adobe.com/flex/spark" xmlns:fx="http://ns.adobe.com/mxml/2009">
         <fx:Metadata>[HostComponent("spark.components.TextInput")]</fx:Metadata>
         <s:states>
              <s:State name="normal"/>
              <s:State name="disabled"/>
         </s:states>
         <s:Group x="0" y="0">
              <s:Rect height="31" radiusX="5" width="182" x="0.5" y="0.5">
                   <s:stroke>
                        <s:SolidColorStroke caps="none" color="#000000" joints="miter" miterLimit="4" weight="1"/>
                   </s:stroke>
                   <s:fill>
                        <s:SolidColor color="#FF90CD"/>
                   </s:fill>
              </s:Rect>
              <s:RichEditableText color="#2B4381" fontFamily="Arial" fontSize="12" tabStops="S0 S50 S100" x="11" y="11" width="161" heightInLines="1" id="textDisplay"/>
         </s:Group>
    </s:Skin>
    How to do that in this example?
    I have searched everywhere on the net, and in a 1000 page book I have about Flash Builder and Flex and couldn't find even a single example. And I need this if I want to make something like resizable web form with a resize grip or resizable options panel.
    Thanks in advance,
    Petar

    I've got an answer but on other forum. Here is link if someone finds answer to this question useful: http://stackoverflow.com/questions/3299385/resizing-flex-spark-control-with-a-custom-skin

  • Customized Skins in Non-English Projects

    I have a customized skin that when used non-English projects,
    it omits special characters in the buttons for Contents and Index.
    I didn't create the skin so I don't have Flash. Any suggestions on
    how to fix the buttons to display the missing characters?

    If she's no longer with the company and she was using Flash,
    could it by chance be a company license for Flash that you could
    take over...?
    Rick referred to the LNG file, which exists in both the
    source files and the output files. Do the copying and pasting with
    the source versions. (The output version will be overwritten from
    the source version every time.)
    If Rick's suggestion doesn't work, the only other thing I can
    think of would be to check the .fla files themselves in Flash. The
    person who tweaked the files may have done something to the dynamic
    text fields for the button labels. If you can get a copy of Flash,
    you could check two things on the button label text field
    (double-click the Label object twice to get to this point):
    1. See if "Use device fonts" is selected in a dropdown on the
    left side of the Properties panel. This selection won't let you
    embed fonts. If it's selected, try #2 below instead. If it isn't,
    select it, export the movie, and put it in your output files.
    2. Change "Use device fonts" to "Anti-alias for animation."
    Click the Embed button. Select every option with Latin in it, and
    click OK. Export to a movie, and put it in your output files.
    Note that you'd have to do this for each button that isn't
    displaying the characters properly.
    Hope this helps,
    Ben

  • ADF Faces: How to position define table navigation in custom skin?

    Hi,
    I played a bit with custom skins. I'am just wondering how you can choose the location of the navigation button ( << Previous | 1-10 of 32 | Next >> )
    For example, if I use the oracle skin, it appears both at the top and at the bottom. In an other skin I used, the navigation was only at the top and not at the bottom. I just can't figure out how this is determined in the css stylesheet, or is it simply not possible because the custom skin is derived from the Simple skin?

    Add the following to the css for your skin:
    af|table::control-bar-bottom
    visibility:hidden;
    This will hide the bottom control bar, which contains the navigation at the bottom of the table, from view.
    Regards,
    Ric

  • How to implement custom skin in JavaFX 2.0?

    To implement custom skin, I extend TextFieldSkin (in com.sun.javafx.scene.control.skin.*) class, but I don't know which methods to overwrite, anyone can provide some sample codes? Thanks!

    Hi,
    You can implement Skin interface or extend SkinBase class. I made some controls on my blog http://jojorabbitjavafxblog.wordpress.com/ but i still have not updated code to build 40. In my opinion the easiest way is to make first skin for Button class for example add text and Rectangle.

  • Need help on creating custom skins like chrome

    Hi,
    I want to create my custom skin like chrome with my own play, pause and seek buttons. Can anybody point me to any documents that can help me to achieve this? Thanks in advance.
    Regards,
    Amit

    Thats a very open ended question. We have built a sample OSMF player and a skinning solution you can take a look at.  http://code.google.com/p/reops/
    There are templates and a PDF that describes the capabilities and process. Also walkthrough style samples.
    Otherwise the generic answer is desgn as you see fit, and implement the controls as display objects or part of the MediaContainer which could be done as custom MediaElements, then link them to the MediaPlayer or MediaPlayerSprite and call the approp API methods (play/pause/stop/seek/etc.)

  • Mouse events ignored in custom skin

    I created a custom skin for my spinner. While I managed to get the layout this time, it seems that all mouse click events are ignored.
    package ch.sahits.game.javafx.control.skin;
    import java.io.InputStream;
    import javafx.beans.value.ChangeListener;
    import javafx.beans.value.ObservableValue;
    import javafx.collections.ObservableList;
    import javafx.event.EventHandler;
    import javafx.geometry.Dimension2D;
    import javafx.scene.Group;
    import javafx.scene.control.TextField;
    import javafx.scene.image.Image;
    import javafx.scene.image.ImageView;
    import javafx.scene.input.MouseEvent;
    import javafx.scene.layout.HBox;
    import javafx.scene.layout.VBox;
    import ch.sahits.game.javafx.control.OpenPatricianSpinner;
    import ch.sahits.game.javafx.control.TextSizingUtility;
    import com.sun.javafx.scene.control.skin.SkinBase;
    public class OpenPatricianSpinnerSkin extends
            SkinBase<OpenPatricianSpinner, OpenPatricianSpinnerBehavior> {
        private TextSizingUtility sizing = new TextSizingUtility();
        public OpenPatricianSpinnerSkin(final OpenPatricianSpinner spinner) {
            super(spinner, new OpenPatricianSpinnerBehavior(spinner));
            Dimension2D dim4heigth = sizing.calculate(1, spinner.getFont());
            double width = 0;
            for (String word : spinner.getOptions()) {
                Dimension2D dim4width = sizing.calculate(word, spinner.getFont());
                if (dim4width.getWidth() > width) {
                    width = dim4width.getWidth();
            Dimension2D dim = new Dimension2D(width, dim4heigth.getHeight());
            String firstValue = "";
            if (!spinner.getOptions().isEmpty()) {
                firstValue = spinner.getOptions().get(0);
                spinner.selectedIndexProperty().set(0);
            HBox hbox = new HBox();
            final TextField textField = new TextField(firstValue);
            textField.getStyleClass().add("openPatricianSpinner");
            textField.setMaxSize(dim.getWidth(), dim.getHeight());
            textField.setEditable(false);
            InputStream is = getClass().getResourceAsStream("SlabUp.png");
            Image img = new Image(is);
            double imgWidth = img.getWidth();
            final ImageView imgViewUp = new ImageView(img);
            is = getClass().getResourceAsStream("SlabDown.png");
            img = new Image(is);
            final ImageView imgViewDown = new ImageView(img);
            double additionalWidth = Math.max(img.getWidth(), imgWidth);
            is = getClass().getResourceAsStream("InputPlank.jpg");
            img = new Image(is,dim.getWidth()+additionalWidth, dim.getHeight(), false, true);
            final ImageView imgViewPlank = new ImageView(img);
            imgViewPlank.onMouseReleasedProperty().addListener(new ChangeListener<EventHandler<? super MouseEvent>>(){
                @Override
                public void changed(ObservableValue<? extends EventHandler<? super MouseEvent>> ov,
                        EventHandler<? super MouseEvent> oldValue,
                        EventHandler<? super MouseEvent> newValue) {
                    System.out.println("Clicked on plank");
            Group textGroup = new Group(textField);
            VBox vbox = new VBox();
            vbox.getChildren().addAll(imgViewUp, imgViewDown);
            hbox.getChildren().addAll(textGroup, vbox);
            Group background = new Group(imgViewPlank,hbox);
            imgViewUp.onMouseReleasedProperty().addListener(new ChangeListener<EventHandler<? super MouseEvent>>(){
                @Override
                public void changed(ObservableValue<? extends EventHandler<? super MouseEvent>> ov,
                        EventHandler<? super MouseEvent> oldValue,
                        EventHandler<? super MouseEvent> newValue) {
                    ObservableList<String> options = spinner.getOptions();
    System.out.println("Clicked on slabUp");
                    if (!options.isEmpty()) {
                        if (spinner.getSelectedIndex() > 0) {
                            spinner.selectedIndexProperty().subtract(1);
                            String newDisplayValue = options.get(spinner.getSelectedIndex());
                            textField.setText(newDisplayValue);
                        } else {
                            System.out.println("Selected index <= 0");
                    } else {
                        System.out.println("Empty options list");
            }); // end up change listener
            imgViewDown.onMouseReleasedProperty().addListener(new ChangeListener<EventHandler<? super MouseEvent>>(){
                @Override
                public void changed(ObservableValue<? extends EventHandler<? super MouseEvent>> ov,
                        EventHandler<? super MouseEvent> oldValue,
                        EventHandler<? super MouseEvent> newValue) {
                    ObservableList<String> options = spinner.getOptions();
    System.out.println("Clicked on slabDown");
                    if (!options.isEmpty()) {
                        if (spinner.getSelectedIndex() < options.size()) {
                            spinner.selectedIndexProperty().add(1);
                            String newDisplayValue = options.get(spinner.getSelectedIndex());
                            textField.setText(newDisplayValue);
                        } else {
                            System.out.println("Selected index >= options.length");
                    } else {
                        System.out.println("Empty options list");
            }); // end up change listener
            onMouseReleasedProperty().addListener(new ChangeListener<EventHandler<? super MouseEvent>>(){
                @Override
                public void changed(ObservableValue<? extends EventHandler<? super MouseEvent>> ov,
                        EventHandler<? super MouseEvent> oldValue,
                        EventHandler<? super MouseEvent> newValue) {
                    System.out.println("Clicked on Skin");
            getChildren().add(background);
    I would at least expect to see the line 134 printed out. I call this spinner from a simple test application, without any event listeners added there.
    Has anyone an idea what might happen here?

    Hello, you don't register an event handler, you register a listener on the event handler property. So you don't listen for clicks, you listen for changing the registered click handler. You need to register the handler like this:
    imgViewDown.setOnMouseReleased(new EventHandler<MouseEvent>() {
         @Override public void handle(MouseEvent event) {
              // your handler
    This way you set the mouse release event handler which will be called on click. This code, by the way, would fire your listeners (the onMouseReleased property has changed).

  • Custom Infotype - Using Table control in the screen.  IN OM

    Hi,
    I am having a requriement where in I need to create a custom infotype using table control in the screen. I have to create this in OM and I am using PPCI transaction to create the info type. I am able to create the infotype with fields but not table control. Please let me know if any one of you came across and help me with the process I need to follow.
    Thanks in advance.
    Venkat.

    Hello,
    After you create the info type throug PPCi, you can directly go to the Sceen module program created automatically while creating Info type and edit the screen.
    activate it after your changes.
    Regards,
    Srujan.

  • Creation of Custom IDoc with Message control for sales Order

    Hi all,
    I am trying to create custom Outbound IDoc with message control.
    I wrote the code in a function module and i want to register that function module. (as in inbound registration of function module as in BD51).I am not knowing if that registration is necessary for outbound Idoc, if so in which transacition?
    Please list me the steps to create a custom IDoc for Message control.
    Thanks in advance,
    Regards,
    John.

    Hi,
    You need to use FM : MASTER_IDOC_DISTRIBUTE to create outbound idoc.fill the data in the tables EDIDC,EDIDD and generate the IDOC.
    check this link:
    Re: Master_IDoc_Distribute
    and use transaction : WEDI for IDOC configurations.
    here you will have all the transactions(step by step) to set the outbound IDOC configurations.
    Regards
    Appana

  • Use of customer hirearchy in credit control

    Dear Friends,
    Good evening.
    I would like to know whether we can use customer hirearchy for credit control purpose.
    If answer is yes how it can be done ?
    Scenrio:
    One company code,4 sales areas.
    The objective is define seperate credit limit and risk profile for each sales area in which customer is extended.
    May Kindly suggest solution keeping in view following entries hiting customer account:
    1.Invoices
    2.Payments (specialy advance payments)
    3.Credit & debit note passed through FI (tcode FB70)
    4.Validation to ensuer that Invoice/Debit note of one credit control area shall not be knocked off through payment/credit note of different control area.
    Regards
    Sanjay

    Hi chandershaker,
    Thanks for your suggestions.
    I had thinking on same line though have configured system accordingly.
    I need an alternate solution to evaluate and expert advice of the forum.
    The objective is in one line that we need single customer code with AR & credit control division wise.
    May pls advise.
    Regards
    Sanjay

  • Can you call a public method in a custom skin?

    I made a custom skin for a button. In the skin there's a method to change some text. Can I call this method from my application?
    I get an error message when I try to call it like a normal object:
    uploadNewBtn.setNewPhotosLabel("test");
    Error 1061: Call to a possibly undefined method setNewPhotosLabel through a reference with static type spark.components:Button.

    You said it yourself, the method is inside skin not the HostComponent (button in your case). Obviously you cannot call it.
    There is a skin protperty inside SkinnableComponent, but it is typed as UIComponent so you still cannot cal it on the skin without casting. I don't know your use case, so in theory you either push the text/label from the host towards the skin, or you listen or bind from the skin on the hostcomponent.
    C

  • How to develop custom skin in JDeveloper 11g?

    Hi All
    I am using JDeveloper 11g(11.1.1.3.0). Could anyone please tell me how to create custom skins.
    Regards
    Venkat.S

    Thank you very much Navaneeth.. now I am able to create custom skin.
    Now one more help, currently I am using "fusion" as default skin how to extend it with our custom skin. So that i can use few features of "Fusion" skin and few from my custom skin.
    If I disable inputtext it will be in "Grey color" i need it in white color. how to do it?

  • Can Custom skin download font if not installed?

    Hi
    I have an ADF BC application written in JDev 10.1.3. It uses a customer skin so our various customers can implement their own look and feel. One of our customers requested the Futura font which worked fine on my PC because I have the futura font installed but when I deployed it to the custoemr the skin reverted to a different font because Futura was not installed on their PC.
    Is it possible to have an ADF page download a font if it cannot find it installed?
    I found this html code which is supposed to achieve that
    <STYLE TYPE="text-css">
    @font-face (
    font-family:familyName;
    font-style:normal;
    font-weight:normal;
    src:url("someFont.eot") )
    </STYLE>
    Is it possible to integrate the above code into an ADF page?
    thanks
    paul

    Hi
    Thanks for the replies.
    I read the link that Frank posted and read a little bit around the subject of web fonts. It seems that this feature is not widely supported by browsers and indeed I am using FF2 and could not get John's suggestion to work. Our customer uses primarily IE and FF and it seems that this feature is not currently supported by either of those browsers. IE only allows use of the EOT font format and FF3.5 supports web fonts but is still in beta.
    It doesn't look like we are going to be able to implement this feature for our customer so I might have to ask them to select a [web safe font|http://en.wikipedia.org/wiki/Web_safe_fonts]
    thanks
    paul

  • Save Custom Skin

    i have a custom skin made- how do i save it to the skin
    selections so i can connect it to the flv's?
    tks!!

    Hang on - I think I just stumbled across the solution. I wan't pressing Enter after typing in the hex code. That seems to be the trick ;>)

  • Trying to re-create our 10g custom skin in 11g

    Hi Everyone:
    We had a detailed custom skin and also utilized customized velocity templates that created a specific look and feel to our application in 10g. We used a header.jspx & leftside.jspx that were in the region-metadata.xml file. The JHeadstart team assisted a previous employee with setting all of this up.
    We are trying to convert our applications over from 10g to 11g and think that enhancements such as the "tree" layout will replace needing a leftside.jspx page that listed the menu links along the left side instead of folders across the top. We have gone through the 11g Tutorial and read chapter 19 "Applying Custom Skins to Applications" of the "Web User Interface Developer's Guide for Oracle Application Development Framework". While working on a simple webpage to start with in our application, we registered the custom skin as specified in "Applying Custom Skins to Applications", but things look very different, and I'm trying to get a handle on how to re-apply the look and feel now that this section of our application has been converted to 11g and properly utilize the new features of 11g that weren't available in 10g. To start with, we had a custom Logo on our Application that I would like to show up on the Header of the Application in the same spot where the "Oracle JHeadstart Demo" title is displayed. I am trying to study the custom_labels.vm velocity template, but am not sure where to apply this. The logo is in the form of a .gif file.
    Can someone tell me how to put our custom logo .gif file in the Header where the Oracle JHeadstart Demo title is displayed and have it generated through JHeadstart?
    Starting there can hopefully open up ideas on how to apply the rest of our look and feel utilizing all of the new features of 11g, not just replicating things as they were done in 10g.
    Thanks very much in advance.
    Mary
    UofW

    Hi Steven:
    Great to hear from you, I was hoping you'd reply :)
    I followed your instructions, and also changed the header and footer size attributes (headerGlobalSize & footerGlobalSize) to accommodate our larger .gif Logo. So far, so good. I made these changes in the default layout velocity template - jhsPageTemplate.vm which generates the JhsPageTemplate.jspx page. Starting to work toward the look and feel our users want. However, I was hoping to use the tree layout. I want to institute these changes in the JhsTreeMenuPageTemplate.jspx, but I am unable to find the velocity template that generates the JhsTreeMenuPageTemplate.jspx.
    Could you please tell me where it is?
    Thanks again, and Merry Christmas to you and yours.
    Mary
    UofW

Maybe you are looking for

  • Faces crashes when entered in iPhoto

    I've been having a problem with Faces in iPhoto '11. Every time I click on the Faces button, iPhoto crashes. Clicking on Places, Albums, Events or Photo's works fine. But Faces crashes the whole program. Any thoughts?

  • Image Control in ADF

    Hi, I am using the Jdev 11g. is there any component which will take array of images path and rotate it. my problem is -- I have n number of images and i want to show it in rotating fashion. please tell how will i do it using the ADF component. Thnaks

  • I get an error:"Unable to sync. Your sync key has changed" But I simply type in the old key and it starts woring again

    When Firefox starts I get an error : Sync encountered an error. An unknown error has occurred. when I go to sync preferences it says your sync key has changed. When in the update key dialog I simply type the old key it accepts it ans again starts syn

  • Adobe Pro 9.0 Compare functionality

    Does a PDF have to have tags for the compare functionality to work?

  • My wait() thread never wakes up with notify()

    In the code below, I'm trying to wake up the DispatchThread whenever the add method is called in the PriorityQueue. For some reason the notify() method is not unblocking the thread. All I can figure is that the reference to the thread in notify() is