Color size / proportion / relationships

A nice additional feature for kuler would be to assign a
"proportion" to a colour, or to be able to re-arrange the colours
into nested blocks of different sizes.
The purpose behind this is that a colour scheme isn't just
about "what colours" to use, but how to use those colours. It would
be beneficial to communicate how a colour is supposed to be used
(as a background, for text, used as a block element on top of
another, etc.).

Hello Jay,
That's a good idea and we'll add it to the Feature Wish List.
Thanks for the post.
Sami

Similar Messages

  • BC Photo Gallery thumbnails the same size proportionally

    Hi
    Is there a way to make all the tumbnails of a photo gallery the same size/proportion even if the original photos have different sizes/proportions without distorting them?
    Thanks!

    Yes, check the module information here:
    http://docs.businesscatalyst.com/dev-assets/reference#!/module-reference/photo-galleries/m odule_photogallery.html

  • Updated w/25.0 now all the articles on my browser shange colors, sizes and some time theey white our...help?

    I updated to 25.0 yesterday. now when I got to a web page, the font's change colors, size and some times even white out! I've tried reset it 3 times, all with the same results!

    '''Try Firefox Safe Mode''' to see if the problem goes away. Safe Mode is a troubleshooting mode, which disables most add-ons.
    ''(If you're not using it, switch to the Default theme.)''
    * On Windows you can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * On Mac you can open Firefox 4.0+ in Safe Mode by holding the '''option''' key while starting Firefox.
    * On Linux you can open Firefox 4.0+ in Safe Mode by quitting Firefox and then going to your Terminal and running: firefox -safe-mode (you may need to specify the Firefox installation path e.g. /usr/lib/firefox)
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    [[Image:FirefoxSafeMode|width=520]]
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    [[Image:Safe Mode Fx 15 - Win]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    Please report back soon.

  • Create confirmation by BAPI for color size

    Dear All,
    We can create confirmation by BAPI_PRODORDCONF_CREATE_TT.
    But there has no option for add the AFS grid value(color/size).
    Is there any other BAPI for this?
    Please advice me.
    thanks B/R
    Bishnu
    07/07/2010

    Dear
    I am not quite sure about BAPI  usegability .Check this BAPI if it comes to your work :
    BAPI_PRODORDCONF_CREATE_ACT Enter Activity Confirmation
    BAPI_PRODORDCONF_CREATE_HDR Enter Order Confirmations
    BAPI_PRODORDCONF_CREATE_TE Enter Time Event Confirmation
    BAPI_PRODORDCONF_CREATE_TT Enter Time Ticket Confirmation
    BAPI_PRODORDCONF_EXIST_CHK Existence Check for Confirming Production Order
    BAPI_PRODORDCONF_GETDETAIL Detailed Data for Production Order Confirmation
    BAPI_PRODORDCONF_GETLIST Confirmations List
    For production order different BAPIS are available
    BAPI_PRODORDCONF_CREATE_TE
    BAPI_PRODORDCONF_CREATE_TT
    for proposals
    BAPI_PRODORDCONF_GET_TE_PROP
    BAPI_PRODORDCONF_GET_TT_PROP
    For more details and documentation, please have a look at transaction BAPI.\
    Try with them to accomodate your rquirement and revert
    Regards
    JH

  • Color size info in AFS invoice idoc

    Hi,
    We are transmitting AFS Invoice idocs out of SAP AFS system to partners in 810 EDI. We have a requirement to pass material color and size info in this idoc. But the idoc seems to contain only grid value. Please let me know how to get the color/size info in this idoc.
    Thanks,
    Jassi

    closed

  • Illustrator change color, size & direction

    Please.  I am 45 and at ground level.  Can someone tell me how to change a vector image (flourish) I downloaded from istock photo.  I was able to open it with Ai but I don't know how to change the size, direction and color.  Please help.  Thanks!

    If it is a vector image:
    Size: Select what you need to size with the selection tool, then drag and hold the shift key to resize (holding shift keeps the proportions). OR Select the object and go to Object>Transform>Scale.
    Direction: Select the object, slightly outside of one the corner points you will get a double arrow and you can then click and rotate. OR select the obejct and go to Object>Transform>Rotate.
    Color: select with the Direct Selection arrow one portion of the color, go to Select>Same>*then select fill or stroke*. Then go to your color pallet and select the color you want to change to.

  • Copy and Paste image to clipboard-- color & size adjustments

    Hello,
    I wrote a small program (JDK 1.4.1) which enables the user to copy an image (gif or png) to the clipboard.
    - when this image is pasted into Microsoft Words, the size is not respected (much bigger),
    - when it is pasted into Lotus Notes, the colors are all sort of green (but the size is correct this time)..
    - when it is pasted into Excell: no problems! Copying it back in the clipboard from Excell, and pasting it into Words and Lotus Notes gives good results.
    I do not know where the problem comes from (Windows or Java?), but I would be very glad if someone could point me out some ways of debugging this.
    Thanks very much in advance for any help!
    Best regards,
    Yannick
    Relevant pieces of code:
    if (source.getText().equals("Copy to clipboard")) {
    try {
    cs = (ClipboardService)ServiceManager.lookup
    ("javax.jnlp.ClipboardService");
    } catch (UnavailableServiceException use) {
    cs = null;
    if (cs != null) {
    ImageSelection contents = new ImageSelection(image);
    cs.setContents(contents);
    public class ImageSelection implements Transferable, ClipboardOwner {
    static public DataFlavor imageFlavor;
    private DataFlavor [] supportedFlavors = {imageFlavor};
    private Image picture;
    public ImageSelection (Image parPicture) {
    picture = parPicture;
    imageFlavor = DataFlavor.imageFlavor;
    public synchronized DataFlavor [] getTransferDataFlavors () {
    return (supportedFlavors);
    public boolean isDataFlavorSupported (DataFlavor parFlavor) {
    return (parFlavor.equals (imageFlavor));
    public synchronized Object getTransferData (DataFlavor parFlavor)
    throws UnsupportedFlavorException {
    if (parFlavor.equals (imageFlavor))
    return (picture);
    else
    throw new UnsupportedFlavorException (imageFlavor);
    public void lostOwnership (Clipboard parClipboard, Transferable parTransferable) {
    System.out.println ("Lost ownership");

    Hi,
    try to read this SUN article.
    http://developer.java.sun.com/developer/technicalArticles/releases/data/
    Hope this help you.
    Bye
    Ste

  • Just Installed CS4; Need Help With Font Names/Colors/Sizes

    In past versions of Dreamweaver, I think I clicked on "Use HTML instead of CSS" in the Preferences. I need to be able to select the font names, colors, and sizes from the Property Inspector.
    How do I set it up the same way in CS4. I have clicked on the toggle button in the Property Inspector for HTML instead of CSS, but it doesn't give me the menus to select font names (Arial, Helvetica, etc.), font size (1, 2, 3, 4, etc.) and font color (imagine your own).
    Thanks!
    Mike

    DW CS4 makes you use the CSS properties inspector because CSS is  the defacto web standard now.  HTML formatting is deprecated (obsolete) according to W3C web standards.
    There are three ways to use CSS in your site pages.
    Inline: A one-time style applied within the code as an attribute of a given element (or tag). This is similar to the old HTML formatting method but the code itself is a little different.
    Embedded: A style sheet declaration in the head of the document that will only effect that single page on the site.
    External: A physical CSS file containing rules (styles) that is linked to from multiple pages within the site.
    It doesn't matter if you have dynamically generated or static web pages.  CSS is still the most efficient way to style your content.
    DW CS4 - What's new in the Properties Inspector?
    http://www.communitymx.com/content/article.cfm?page=2&cid=8AAE7
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • How to customize titles (font style, color, size)

    I am inserting subtitles, but imovie does not seem to be flexible when it comes to changing font size and color.  For instance, one title is in 58 pt font size and the next one has more words in it, so it defaults to 27 pt font size.  Is this the case with all fonts? Some fonts seem easier to change characteristics.

    Hi mkwtr,
    These articles have information on editing titles in iMovie that may help, depending on your version of iMovie:
    iMovie (2013): Edit a title
    http://support.apple.com/kb/PH14703
    iMovie '11: Edit the text and appearance of a title
    http://support.apple.com/kb/PH2212
    Cheers,
    - Ari

  • Using the control key to scale to a certain size proportionally without it being locked

    In illustrator CS5 if there is a particular size you want to enter, after entering the size in the width you could hold down the control key and it would scale everything proportionally without the lock button being on. I cant seem to get CS6 to do this feature. Is there a way to get this feature back?

    Update to Illustrator to get to 16.05. I assume you are on PC since you said CTRL and not Command.
    Adobe - Illustrator : For Windows  
    I leave the transform palette with the lock off
    So that I can use the hot key as you mentioned and that would scale proportionately as if the hot key was held down
    Uninstall any 3rd party Illustrator or Windows plug ins that may be interfering with this.
    Also wanted to make sure you are holding down the CTRL key while you hit enter to accept the value.
    Select item(s)
    change either width or height
    hold down CTRL on windows
    Hit return or enter
    Release CTRL

  • OBIEE Promts Customization and Color,Size (Just one file)

    By default, prompt button name will appear as follows:
    Now Button Name Go has to change to desired Name
    •     Navigate to {OracleBIDir}:\oraclebi\web\msgdb\l_en\messages
    •     Open globalfiltermessages.xml file (before opening this file, you better take backup of this file)
    •     Locate the following text
    <WebMessage name="kmsgGFPGo"><TEXT>Go</TEXT></WebMessage>
    •     Edit the text ‘Go’ to your desired text. ---Here I am editing it to ‘Search’
    <WebMessage name="kmsgGFPGo"><TEXT>Search</TEXT></WebMessage>
    For Color and Size for all promts
    •     Navigate to {OracleBIDir}:\oraclebi\web\msgdb\l_en\messages
    •     Open globalfiltermessages.xml file (before opening this file, you better take backup of this file) --Locate the following text
    <WebMessage name="kmsgGFPGo">
    - <text>
    FONT COLOR="blue" size="25" bgcolor="#003300">Search</FONT>
    </text>"
    </WebMessage>
    •     Save the changes to file
    •     Restart Presentation service
    Edited by: user9198108 on Feb 21, 2010 11:50 PM

    First of all use the CustomMessages folder when editing the MSGDB:
    http://obiee101.blogspot.com/2008/09/obiee-setting-up-custommessages-folders.html
    Secondly: Why edit the MSGDB when you are doing CSS Work?
    http://obiee101.blogspot.com/search/label/CSS
    Thirdly: And you question is?
    regards
    John
    http://obiee101.blogspot.com

  • [solved] Make content fit the TitleWindow's size proportionally

    Hi everyone,
    I have a component which has the super class TitleWindow. It's basically used as a popUp for my application. So it receives a file name and adds it to the popUp using the MXML tag Image.
    This content received is a SWF file, and I had no problems using the tag Image to import it (I'm new to Flex, but I guess there is nothing wrong with it).
    My problem is that my application has a sort of "PowerPoint" style, and is going to be used in some presentations, so I want to make sure it works on all screen resolutions, from 800x600 till 1280x1024. And that's where the problem begins.
    I could simply let Flex determinate the size of my popUp (depending on what is the size of the content, the SWF file), but I simply can't. That's because all of the SWF files are going to be 800x600, and so when you run this app in a 800x600 screen, things get messy. The popUp gets too big (in order to contain the content).
    So the solution was to manually set the size this popUp, based on the user's screen resolution. I did this simply by using:
    this.width = stageWidth * 0.9;
    this.height = stageHeight * 0.8;
    This works great and is exactly what I want.
    However, the content is not being fitted into the popUp correctly anymore. It seems after setting manually the width and height of my popUp, all of those wonderful properties, such as horizontalAlign="center" and verticalAlign="middle",  were lost also. The content is too big when seeing the app in a 800x600 computer, while the popUp is on a correct size.
    So I tried to resize the content also, based on the this.width and this.height. That solves some trouble, but then the problem is that X and Y positions are all messed, and so my content appears on wrong places, depending on the user's resolution.
    Straight to the point: after customizing the width and height of my popUp (TitleWindow) how can I set the content to keep the aspect ratio (don't get distorted, since it's a 800x600 file) and also to be resized according to the dimensions that popUp has? I'm here for like 6 hours just trying and failing to do it, and it must be an easier way to do it in Flex.
    Appreciate any advice.
    Thanks!
    Solved: I changed the Image tag for the SWFLoader tag. Also, added the property horizontalAlign="center". The rest was the same, and this solved my problem :D Weird.. I saw on some tutorials that Image could be used without problems to load SWF files... Well, works, and for sure it must be more correct also.

    Solved: I changed the Image tag for the SWFLoader tag. Also, added the property horizontalAlign="center". The rest was the same, and this solved my problem Weird.. I saw on some tutorials that Image could be used without problems to load SWF files... Well, works, and for sure it must be more correct also.

  • Why no built in support to change toolbar colors, sizes etc...?

    I would like to modify the colors and contrast of windows boarder. Especially in Safari the tabs are very dark and I don't want to turn the brightness up and kill my battery sooner. I find no built in support for modifying windows themes or colors. If there is a 3rd party app that I could use to tweak these things while not destabilizing a speedy and extremely stable OSX 10.7.3 on Intel i7?
    I'm not really board with the default Apple scheme, I've been a linux user for years and use a very similar scheme or theme and windows manager. But the dark tabs on Safari are a big annoyance.
    Thank's for any insight.

    Haven't installed a host file addition yet then?
    That blocks your computer from accessing the "crap" of the internet.
    You need these things:
    1: A free copy of TextWrangler from BareBones
    2: TextEdit open
    3: Select all copy everything on this page (bookmark it)
    http://winhelp2002.mvps.org/hosts.txt
    4: Paste into Text Edit and remove the lines
    127.0.0.1  localhost
    ::1  localhost #[IPv6]
    5: Do a find and replace for all instances of 127.0.0.1 and replace with 0.0.0.0
    6: Select all and copy
    7: Open TextWrangler and file by name /etc/hosts
    Do not touch what you see there, just add some spaces at the bottom and paste
    8: Save the file with your Admin password
    Done, you have just blocked the crap of the Internet
    9: update just that portion you added every couple of months from the same source.
    note: the file is designed for Windows, so all you want is the sites to block to work with Mac,
    like
    127.0.0.1  fr.a2dfp.net
    also because of a glitch you need to change 127.0.0.1 to 0.0.0.0 to work with OS X better.
    anything with a "#" in front means to "ignore this line" to the computer, so those lines are safe to copy and use.

  • Why can't I adjust the size/proportions of objects anymore?

    This problem has been happening intermittently today. The resizing squares around all of my objects have disappeared and I can no longer adjust their size or dimensions. I have tried resetting my tools as well as deactivating and reactivating my account (this worked once, but now the problem has appeared again).

    Hi. Because the forum you originally posted in is for beginners trying to learn the basics of Photoshop, I moved your question to the Photoshop General Discussion forum.

  • Can't change the font, color, size, text style, or alignment in iMovie 09..

    Hi there
    Just startet editing an mp4 file. I'm trying to do subtitles, and the only suitable option is the "Lower Third' titling option. According to the Help file "Select the title in the Project Browser, and then click Show Fonts in the viewer. The iMovie Font Panel opens." Well, it doesn't. 'Show Fonts' just disappears....am I missing something?
    Thanks in advance.

    I found out that you have to choose font, style & pt. size BEFORE you start typing your title, which is lame. If you type your title, you can't change the font etc. afterwards—you have to delete the title and start again. Very annoying, and, for Apple, a surprising bug.

Maybe you are looking for