Scroll bar color of Visual Composer : how to change it ?

Hello Comunity,
I am developing application using Visual Composer within EP7.01 SP6, and I can not manage to find how to change the original blue of Visual Composer application for scroll bar.
Does anyone knows where to change this color ? I believe it is a general color that is defined somewhere that needs to be change in the portal theme editor in the Visual Composer part, but I did not find it...
Any help appreciated !
Thanks a lot.
Fabien.

Hi
Its not inside Visual Composer application. You have to do it at Enterprise Portal level.
Also inside VC model you need to select 'Flash Runtime' from tools (Options).
Basically you need to change theme settings in content administration of VC.
Regards
Sandeep

Similar Messages

  • How to change front color in Visual composer

    Dear friend,
    i am taking numerical expression box into visual composer table view
    and try to change the front color in style tab for that field property
    but front color is  not changing in output(back ground color is changing ).
    how to change front color in visual composer?
    and can we change the symbol color too?
    thanks and regards,
    dushyant.

    Hi Vani!
    1. Unfortunately one of my requirements is that I can only get data from queries and not from Web Services or other sources, so no WS calling would be allowed in my deployed I-View, but thanks anyway for your suggestion.
    2. You are right, I was not clear enough in my first post. Let's say I have 3 rows and 12 columns, what I want is the following:
    ROW3 = ROW1 / ROW2
    obviously for each column. Do you have an idea about how it could be done??
    Thanks a lot,
    Andrea

  • Scroll bar color to set to same as the color specfied in .cfg color scheme

    Hi Nimphius
    I set the in .cfg file color scheme to Khaki and my manager likes the color for all forms across but I can not set same color to scroll bar, I tried to give the back ground property to r140g142b123 but forms not taking it.
    Can you please help me how to set get same color (Khaki) to scroll bar.
    Please reply if anybody face same kind of problem.
    Thanks in advance
    Murthy

    This is problem with Oracle forms, They design something and that might not work with other colors.
    When they put color scheme to Khaki, Dont they think to give same visual attribute to give in property pallte,
    Last time I had tought time integrating web utils built-in.
    I do not know what to do get out of this silly stupid color issue.
    I appreciate if any of forms designers thought of this issue.
    Any feed back is welcome.
    Thanks in advance.
    Murthy

  • Scroll Bar Color

    Is it possible to change the rather anemic lookin gray scroll bars in Lion back to the more visible blue color os Snow Leopard?

    Maybe! I wouldn't bank on it though, seems to be a design choice.
    I'm no fan of it myself (in fact I still mostly use Snow Leopard because its visually and functionally better designed, but there you go!).

  • Visual composer  How to create an e-mail

    Hi everybody
    Someone can help me with the ownership of user data I need to create an iview to send emails
    and saw that this property is within the user data that comes in email
    How I Can  create a mail from this property with visual composer
    Thanks

    Hi,
    Plz follow the below Blog
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/c09fd8a0-96ac-2910-a0ba-f00d2ab70949
    Regards,
    Govindu

  • Problem changing scroll bar color using UIManager

    I am using the following code to change the color of a JScrollBar just before instantiating a JScrollPane:
    [ code ]
    //set colors
    UIManager.put("ScrollBar.thumbLightShadow", ltGrn );
    UIManager.put("ScrollBar.thumb", grn );
    UIManager.put("ToolBar.thumb", ltGrn );
    UIManager.put("ScrollBar.thumbDarkShadow", darkGrn );
    UIManager.put("ScrollBar.thumbShadow", darkGrn );
    UIManager.put("ScrollBar.thumbHighlight", ltGrn );
    //instantiate
    JScrollPane scrollPane = new JScrollPane( table );
    //reset UIManager
    UIManager.put("ScrollBar.thumbLightShadow", null );
    UIManager.put("ScrollBar.thumb",null );
    UIManager.put("ToolBar.thumb", null );
    UIManager.put("ScrollBar.thumbDarkShadow", null );
    UIManager.put("ScrollBar.thumbShadow", null );
    UIManager.put("ScrollBar.thumbHighlight", null );
    [ /code ]
    where ltGrn, darkGrn, and grn are various shades of green.
    Everything works fine, UNTIL I open another JFrame that is part of the same program. After doing this, the original scroll bar above is still green, EXCEPT the border of it has changed to Metal Theme puple from green. In addition, if that second JFrame has any JScrollBars of it's own, they are Metal Theme purple with a green border! It seems to be a bug since only one part of the JScrollBar changes. If anyone has any suggestions on this I thank you in advance.
    AC

    When I execute the following I see identical modified scrollbars on the two frames that are created within this little app. I am relatively new to Java, so the design might not be great here, but the code will compile and run as is. You can use this to see if you still see the effect you have described. I am using version 1.4.1_03 on Red Hat Linux 8.0.
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.plaf.*;
    public class Frame extends JFrame implements ActionListener
         JButton btnOne = new JButton("First Frame");
         JButton btnTwo = new JButton("Second Frame");
         public static void main(String[] args)
              Frame f = new Frame();
              f.setSize(300, 300);
              f.show();
         public Frame()
              setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              redesignScroll();
              // This method resets the default colors for the scrollbars..
              btnOne.addActionListener(this);
              btnTwo.addActionListener(this);
              Container contentPane = getContentPane();
              contentPane.setLayout(new GridLayout(2, 1, 5, 5));
              contentPane.add(btnOne);
              contentPane.add(btnTwo);          
         public void actionPerformed(ActionEvent e)
              if (e.getSource() == btnOne)
                   new FirstPopUp();
              else new SecondPopUp();
         private void redesignScroll()
              final Color cBkd = new Color(97, 115, 87);
              UIDefaults defaults = UIManager.getDefaults();
              defaults.put("ScrollBar.thumbHighlight",
                        new ColorUIResource(Color.darkGray));
              defaults.put("ScrollBar.thumbShadow",
                        new ColorUIResource(Color.black));
              defaults.put("ScrollBar.shadow",
                        new ColorUIResource(Color.black));
              defaults.put("ScrollBar.background",
                        new ColorUIResource(cBkd));
              defaults.put("ScrollBar.darkShadow",
                        new ColorUIResource(Color.black));
              defaults.put("ScrollBar.thumb",
                        new ColorUIResource(cBkd));
              defaults.put("ScrollBar.highlight",
                        new ColorUIResource(Color.black));     
         private class FirstPopUp extends JFrame
              private JScrollPane sp;
              private String text = "Hello World!  First Pop Up!\n ";
              private JTextArea area;
              FirstPopUp()
                   area = new JTextArea();
                   int i = 0;
                   while (i < 20)
                        area.append(text);
                        i++;
                   sp = new JScrollPane(area);
                   getContentPane().add(sp);
                   setSize(200, 200);
                   show();
         private class SecondPopUp extends JFrame
              private JScrollPane sp;
              private String text = "Hello World!  Second Pop Up!\n ";
              private JTextArea area;
              SecondPopUp()
                   area = new JTextArea();
                   int i = 0;
                   while (i < 20)
                        area.append(text);
                        i++;
                   sp = new JScrollPane(area);
                   getContentPane().add(sp);
                   setSize(200, 200);
                   show();
    }

  • Scroll bar too narrow to handle- how do I adjust its size?

    Is there a way to adjust the size of the scroll bars WITHOUT effecting the dimensions of the arrange window?
    For some reason I have this one project where the scroll bars are smaller and impossible to grab and move around even though the dimensions of the arrange window are pretty average and in all the other projects the scroll bars are wide enough to grab and move. Is this a bug?? or is there somewhere where you can adjust their size in the preferences panel?
    Thanks!
    (using logic 9.1.7 on osx 10.6.8)

    popsierose
    I am assuming that you are on Windows 7, 8, or 8.1 64 bit.
    Not sure if there is another way, but the way that works for me
    a. right click the computer taskbar, and click on Cascade Windows
    b. in the Premiere Elements Expert workspace, go the the bottom right edge of the workspace view, place the mouse cursor at that point until its tip has a diagonal icon, and then drag upward right to left diagonally to give some view of the desktop where I have the file for the drag and drop into Premiere Elements....then drag and drop the supported file into the Timeline or Project Assets or a drag and drop location.
    Please let us know if that worked for you.
    Thank you.
    ATR

  • I have no scroll bar on the right side; how do I get it back?

    I followed Co-rel's instructions and got my mail back on the page--thank you-- but there is no scroll bar to scroll through the mail in the inbox. There is a scrollbar on the left to scroll through folders.

    The current build of iTunes may occasionally draw the scroll bar off the edge of the screen. It should be possible to resize the window to reveal the scroll bar.
    You can restore much of the look & feel of the previous version with these shortcuts:
    Ctrl-B to turn on the menu bar.
    Ctrl-S to turn on the sidebar.
    Ctrl-/ to turn on the status bar.
    Click the magnifying glass top right and untick Search Entire Library to restore the previous search behaviour.
    You can also open the menu bar temporarily by pressing Alt.
    tt2

  • I can't see the scroll bar too well (Colorblind). How do I change this?

    The version I am using is ver. 33.
    I know this seems like a dumb question, but I am getting really frustrated with not being able to see the scroll icon/bar when I am 2/3rds of the way through a report or etc.
    Basically, if I click and hold to scan through an item and I need to, roughly, know where I am at or even where it is on the screen it's so [ale I don't see it.
    Any help would be greatly appreciated.

    I see no difference between Firefox's scroll bar and that of Microsoft applications.
    Certain complete themes change the scroll bars, but they also alter the rest of the interface.
    * https://addons.mozilla.org/firefox/complete-themes/

  • Visual Composer 7.0-Change the Y-axis from decimal scale value to integer

    Hi Experts,
    I'm new in Visual Composer 7.0, my report is work fine, but when I want to show the data in bar-chart, the values on y-axis are 0.0, 0.4.0.8,1.2,1.6.2.0 but i want like 1,2,3,4.
    Normally, this happen when values on y-axis less than 5, if more than 5, it will turn to 1,2,3,4. (which i expected)
    Inside my function module, I set all the data as integer already..
    I read through some suggestions in the forum, they suggest using 'Fixed range' and set the interval size, but need to include min & max value. But, inside my program, min value & max value has to be automatically adjusted, ie i can not set the values for those.
    Please suggest solution for me, need it urgently..
    Thanks a lot!
    Best regards,
    Derrick

    Hi,
    first of all: please close this post. It is definitely the wrong forum. Your second thread regarding this is in the right forum.
    Secondly: SDN Moderators prefer to move threads from one forum to another instead of having duplicated posts. You as a user cannot move but moderators can do - so contact your forum moderator and he may move it.
    Regards
    Anja
    (Moderator of VC forum)

  • Visual Composer 7.0 - Change the Y-axis from decimal scale to integer

    Hi Experts,
    I'm new in Visual Composer 7.0, my report is work fine, but when I want to show the data in bar-chart, the values on y-axis are 0.0, 0.4.0.8,1.2,1.6.2.0 but i want like 1,2,3,4.
    Normally, this happen when values on y-axis less than 5, if more than 5, it will turn to 1,2,3,4. (which i expected)
    Inside my function module, I set all the data as integer already..
    I read through some suggestions in the forum, they suggest using 'Fixed range' and set the interval size, but need to include min & max value. But, inside my program, min value & max value has to be automatically adjusted, ie i can not set the values for those.
    Please suggest solution for me, need it urgently..
    Thanks a lot!
    Best regards,
    Derrick

    Hi All,
    I'm sorry but this seems to me impossible to do.
    In general - not necessarily for this case - there is the option to create your own Flash Components and integrate them into VC, so you could overcome such limitations.
    Using Flash Components in Visual Composer Models - SAP Documentation
    Flash Components for Visual Composer 7.0 - Flexibility is the name of the game
    Thanks,
    Udi

  • Visual composer how can i populate data in backend from front end.

    Hi Guru's
          I have designed a basic screen using zbapi_salesorder_getlist.  I have requirement in which i have to enter some details in the output screen, it then should come back to back end and update a Ztable.
    For this i have created and deployed till intial output screen(i will enter some values in the input and i get some result in the output----> i ma using a RFC to get the data from backend) in the output the user enters some values which needs to updated a ztable in the back end. Give ur inputs how can this be done any link if possible so that i can complete this concept.

    Thanks Marcel,
       I am working on your blog example.
    Nutan,
    3.> Then for updating backend. You just drag and drop the second bapi in your model and then create the forms as per your requirement. This will be helpful.
    can u please elaborate, what ever input i am giving is not coming to the back-end. Any sample example will help me to solve this. what ever you have mentioned in step 1 and step 2 are working properly, but i am not able to get past afer the two steps.

  • Recently Installed Lion (forced once again) scroll bars lost my color and mission control give me a break once again free snow in the winter

    Has any one figured out how to get the scroll bar color back all I am reading is the "mission control" TReed apples and orange response?

    If you want to also block ads in videos on "Vevo" & "Daily Motion" then following the guide given in my initial post & create some new Filters and Rules as follows for "Glimmer Blocker"...
    To Block Ads In Daily Motion Videos Add The Following 2 rules...
    To Block Ads in "VEVO" videos add the following 2 rules...

  • How to  install and configure visual composer

    hai experts,
                        any one help me to install and configure the visual composer. and also tell me the procedure for installation and configuration.plz help me.
    regards,
    puagzh.

    Hi raj,
    Installing Visual Composer.
    Enterprise Portal 6.0
    EP 6.0 SP2 (on Web AS 6.20): patch4 or higher
    EP 6.0 on Web AS 6.40: SP Stack 05
    Add-ons (integrated in EP 6.0 SP2 Patch 5 and higher and in EP 6.0 on Web AS 6.40 SP Stack 05 and higher)
    2 Portal Add-ons for design time portal
    2 Portal Add-ons for BI Kit (only in EP 6.0 on Web AS 6.40 SP Stack 05)
    Runtime Add-on for run time portal
    For VC BI Kit: Deploy BI UDI SP Stack 05 to the J2EE Engine of the Portal
    Visual Composer Server (can be on same server as portal)
    Windows 2000 Server
    MS SQL Server 2000 SP3 as Data Persistence
    MS IIS 5.0
    Microsoft XML Parser 4.0
    Visual Composer Client (design time)
    Microsoft Internet Explorer 6.0 SP1 or higher
    Microsoft XML Parser 4.0
    Adobe SVG Viewer 3.0
    Visual Composer Client (run time)
    Content created by VC 6.0 runs on any clients supported by portal version it is running on (see PAM for Details)
    The SAP NetWeaver Visual Composer for the EP 6.0 is installed in two steps:
    SAP NetWeaver Visual Composer Storyboard Install for SAP EP 6.0
    SAP NetWeaver Visual Composer Add-ons for SAP EP 6.0
    Install the story Board
    Assign IIS virtual Directories
    You can install addins
    The SAP NetWeaver Visual Composer Add-on for SAP EP 6.0 is installed on the Portal Server.
    Main activities performed during the install are:
    Installing a rar file (Resource Adaptor Archive) using EISConnector (Enterprise Information System Connector) in SAP J2EE
    Installing a NetWeaver kit for SAP EP 6.0
    Open the browser with the following url
    http://<machine_name>.<domain>:<port>/VCServer
    For more information How to eork check these links.
    What is Visual Composer? User Guide
    http://help.sap.com/saphelp_nw04/helpdata/en/01/4b7e40417c6d1de10000000a1550b0/frameset.htm
    SAP NetWeaver Visual Composer - How to Guides
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/16244247-0a01-0010-3294-d81c21e7e86e
    Creating Applications Using SAP NetWeaver Visual Composer
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/2456bf8a-0a01-0010-709a-ffc91ade9f42
    How to Model Portal Content Using SAP Visual Composer – No Programming Required!
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/ff65b5a2-0a01-0010-5b97-e747192a1d49
    Troubleshooting VC:
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/8ee70a47-0a01-0010-d198-f94c2d7d320c
    VC e-Learning:
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/5a35194b-0a01-0010-7598-a4bb10e0c5c9
    For installation, u have to download from service market place only.
    Check this thread,
    Visual Composer 7.0 installation
    I hope it will help you in understanding VC and its installation and How to work
    Regards,
    Rudradev Devulapalli.

  • How can i make the lightbox without a scroll bar?

    hello,
    when i press the "small picture" to open it in the lightbox the picture opens with a scroll bar. I wanna know how to make a lightbox without a scroll bar when it opens up (to make the picture fixed)
    thank you very much in advance
    Norman

    Yes I have, but when I resize the window smaller than the picture it happens again , I get a scroll bar, I've seen some webs made by muse that even if you resize the window to be smaller than the pic you don't get a scroll bar and u have to make the window bigger to be able to see the pic  all. I hope you can help me out with this cause its driving me crazy.
    Thank you very much,
    Norman

Maybe you are looking for

  • How to find index of row in dynamic table?

    Our form has a table to which the user can add rows.  We want to be able to edit the custom help text of each field in the row to add the row number for accessibility.  But need the index number of the row to reference the row of the fields. And we c

  • Error while using loadjava

    Hello, im trying to import some classes to my oracle 11g database. I`m loging as sys and calling this : SQL> call sys.dbms_java.loadjava('administrator/xxxxx -resolve c:\mgr\biojava3- core-3.0.3.jar'); call sys.dbms_java.loadjava('administrator/xxxxx

  • Error in registerOutParameter (JDBC)

    I all, i have a sybase stored proc with 14 parameters (the 14th is write mode) dbo.spu_crge_WriteGuarantee ( @port_xid varchar(30), @grt1_id int, @grt2_id int, @dt_start datetime, @dt_end datetime, @Rate float, @GuarAsset float, @InitAsset float, @Fl

  • When to use import and export directives?

    I'm very confused about what the import and export language extensions do and when one should use them. I have a Bridge application with multiple source files. As long as I don't call code in another file from the startup execution path (before all s

  • Authentication Window

    Hi I have installed Snow Leopard 4 times now and each time i get too a point that I cannot see the authentication window. First thing first. When i installed it everything was ok, i installed some software and after some time when i wanted to install