How can I make it fill 50%?

var tempFrameProperties =  
     {  
        name : frameName ,  
        contents : contentsOfFrame ,  
        fillTint : ("Yellow", 60.0), // How can i make this a 60%fill?
        geometricBounds : ["-0.75in","-4.45in",".5in","-.75"]   
        }  

Im trying to do a fill of 60% of yellow.  I tried on

Try it with two steps:

var tempFrameProps = {
    name: frameName,
    contents: contentsOfFrame,
    fillColor: "Yellow",
    fillTint: 60,
    geometricBounds: ["-0.75in","-4.45in",".5in","-.75"]
}

Kai

Tags: InDesign

Similar Questions

  • How can I make my impression of bigger aol

    Internet explore my aol mail fills the screen. but on firefox, is toosmall. How can I make it bigger?

    See this:
    https://support.Mozilla.com/en-us/KB/page+zoom

  • How can I make windows remember my email and password if I don't need to type it every time

    How can I make windows remember my email and password if I don't need to type it everytime I go to my email address

    Hello

    ·            What mail client do you use?

    ·            Or, you use Internet Explorer to access the emails?

    If you use Internet Explorer 7 or 8, then check out the following article:

    http://Windows.Microsoft.com/en-us/Windows-Vista/fill-in-website-forms-and-passwords-automatically

  • How can I make adobe reader prompt me to wonder if he can close to closing if multiple tabs are open?

    How can I make adobe reader prompt me to wonder if he can close to closing if multiple tabs are open? Firefox has this feature, Acrobat needs too. Sometimes I leave the program instead of close the scheduled tab. I understand it is a human error, but this feature could be toggable for those who don't want it and it would help the people who make the same mistake as me.

    Hi hummersaurus,

    I understand your concern and will forward your comments to the relevant team. I will propose you to fill out the feature request/Bug Report Form

    Thank you

    Abhishek

  • How can I make a field on a form always take into account what is entered in a field somewhere earlier on the form

    How can I make a field on a form always take into account what is entered in a field somewhere earlier on the form. Basically an auto-fill of the same info

    Assign eponymous for the fields of the form.

  • How can I make the image that is within the rectangle to move?

    Hi, I'm doing a Web page with muse and I found the Coffee pastries Katie page. There are some pictures in the home pages this movement inside the form when I scroll the page. Could someone please tell me that how can I make the image that is within the rectangle to move?  Thank you very much

    You can apply the scroll to fill the picture or the rectangle itself if you are referring to scrolling rectangle on the page.

    https://helpx.Adobe.com/Muse/using/scroll-effects.html

    https://helpx.Adobe.com/Muse/how-to/explore-new-scroll-effects.html

    https://helpx.Adobe.com/Muse/using/applying-scroll-effects-browser-fills.html

    Thank you

    Sanjit

  • Filling in Illustrator is a transparent object and displays it behind. How can I do a fill opaque Uni?

    Screen Shot 2013-10-21 at 11.18.39 PM.png

    The filling here continues to display the object behind (the stright line). How can I make it opaque and not show any object or lines behind it? Thank you!

    I can help to see the Panel layer and the appearance Panel. My guess is the line object has no fill and so you can see the red fill of the object behind it. In other words, if filling Red must be on top of this line, then this object should be moved either forward or at least a superior to the purpose of the line. The best way to do is to drag the object in the layers panel. Move the layers brought forward and down the layers he moves backward. So, the Red layer should be above the line layer.

    But that's a guess, since I can't see your layers or appearance panels.

  • How can I make a button "react?

    This is probably a dumb great question, but you know how it is, sometimes, we sit on the answer and still can not find... How can I make a button react to a click? I want just the simple effect of the button changing colors or resembling the user pushed him. Right now, it is all the same old simple button, no matter whether I click on it, you can't really make a difference. How can I give the effect "by pressing the key"? Thank you guys!

    You can choose the image button and then choose from the available image buttons or click on the folder icon when you click the button on the image and choose in the Gallery 6 Captivate.

    A few image buttons change color on hover or onclicked, these effects are predefined in them.

    Or you can change the button on which you work, Properties Panel.

    The message button and cancel on this thread it looks like a transparent button in Captivate with different fill and stroke color, and transparency is also less and with 0 corner radius.

    You will find these optionns, when you click on this button and then click on in the properties panel.

    Thank you.

  • How can I make effective * Dynamics * xml database queries?

    How can I make queries efficient dynamic xml based?

    Oracle database 11 GR 1 version material, I tried it on 11 GR 2 as well.

    I have a requirement where I went from 10 search gui settings. All parameters are optional, and the user is allowed to enter all the details in the fields in any combination they like. At least one parameter will be filled more every 10.

    I have millions of records in the table and have created a xmlIndex on the xmlType column.

    I dynamically build the necessary xQuery of the arguments and use bind variables, so there is only a hard analysis for each "type" of the request.

    But when I try this I get an error:

    ORA-32512: external 'xquery variable' type is unknown


    So, how to create a query based dynamic xml?

    I think that it is possible that I can create variable bind in sql * more and run a SELECT statement, modify the content of the variable and re - run the query and it performs as I expect, but I can't replicate this functionality within pl/sql.

    I tried to do it using the dbms_sql package I shall not know the number of bind to the run-time variables. When I try this, I get the error message:

    ORA-32512: external 'xquery variable' type is unknown

    If this isn't the right way, how to create dynamic xml queries (when running) founded, using bind variables within the database?

    I created a minimal example to demonstrate:
    CREATE TABLE xmlTest
    (
            id      NUMBER(10,0) PRIMARY KEY,
            theXml  xmlType
    )
    /
    
    DECLARE
            l_sql VARCHAR2(100) := q'<SELECT id FROM xmlTest WHERE xmlExists ('/a[b=$b]' PASSING theXml, :b as "b")>';
            l_b   VARCHAR2(10)  := '1';
    
            l_curId INTEGER;
    BEGIN
            l_curId := dbms_sql.open_cursor;
    
            dbms_sql.parse (c             => l_curId,
                            statement     => l_sql,
                            language_flag => dbms_sql.native);
    
            dbms_sql.bind_variable (c     => l_curId,
                                    name  => 'b',
                                    value => l_b);
    END;
    /
    When I run the present, I get:
    DECLARE
    *
    ERROR at line 1:
    ORA-32512: type 'xquery external variable' is unknown
    ORA-06512: at "SYS.DBMS_SQL", line 1053
    ORA-06512: at line 9
    Line 9 is the declaration of dbms_sql.parse.

    Thank you very much
    Gary.

    Published by: GPN & amp; GT; on February 18, 2011 10:57

    Hello

    Try with an explicit cast of the binding variable:

    SQL> CREATE TABLE xmlTest
      2  (
      3    id      NUMBER(10,0) PRIMARY KEY,
      4    theXml  xmlType
      5  )
      6  /
    
    Table created
    
    SQL> insert into xmltest values(1, xmltype('1'));
    
    1 row inserted
    
    SQL> insert into xmltest values(2, xmltype('2'));
    
    1 row inserted
    
    SQL> set serveroutput on
    SQL>
    SQL> DECLARE
      2
      3    l_sql   VARCHAR2(200) :=
      4    q'