[AI - CS5] How to convert the shape of the block of text in rectangle?

Hi all

could someone suggest me how can I convert the shape of text rectanglebox box and fill in any color desired in it? Any API can do?

Here are the steps that I followed in illustrator to convert the shape.

1. create a textframe.

2. Select and choose the menu item "effect-> convert to shape.

3. create a new filling of Armor Games Snowball palette (window-> appearance).

4. specify the desired color of the palette (window-> color).

I want to get the same result using the API.

Help, please.

Thank you

D.A.

Here are the details:

Name of direct effect: "effects of shape of Adobe.

The parameters are:

['Integer'] = 0 form

DisplayString ['String'] = "Rectangle".

Absolute ['real'] = 0

AbsWidth = 'true' 36

RelWidth = ['true'] 18

AbsHeight = 'true' 36

"Real" CornerRadius = 9

RelHeight = ['true'] 18

'Form' is likely to be 0-2 for the Rectangle, Ellipse, or a rounded Rectangle (perhaps the last two switched). For more information about how to create and apply a live effect see this thread:

http://forums.Adobe.com/thread/925871?TSTART=0

Tags: Illustrator

Similar Questions

  • Please how to convert the photo to the second

    2012-Kia-Rio-SX-side1.jpg11707850_10153403835594354_514303523436587694_n-1.jpg

    Please guys how to convert the kia rio pictures the second perfect like this, and with any program, I know that all steps in details please its very important

    That looks just like you would use the tool pen to redraw on the image and create shape layers (black areas). It could be done in Photoshop or Illustrator.

    Using Photoshop | Draw with the pen tools

  • How to convert the precision extended float to float in C++

    Hello

    Could someone me please how to convert the extended precision (floatExt) float normal float in C++?

    What is the difference in the float between Labview and C++ data type?

    When I tried to receive a range of float of a function of the DLL generated by Labview in C++, data are bad.

    Thank you

    Victor King

    You can search for numeric data types in LabVIEW help for more information on the different types of data. Before sending the data to the C++ application, you can use the function of Double precision on digital / range of Conversion to convert number to Double precision.

  • How to convert the date in milliseconds?

    Hi all

    Can I know how to convert the date in milliseconds?

    My current datetime like this Formate

    QDateTime::currentDateTime (m:System.NET.SocketAddress.ToString ("MMMM dd, yyyy HH"))

    Seconds since January 1, 1970

    http://Qt-project.org/doc/Qt-4.8/QDateTime.html#toTime_t

    Sinds milliseconds January 1, 1970

    http://Qt-project.org/doc/Qt-4.8/QDateTime.html#toMSecsSinceEpoch

  • Hello, I have a full desktop in Adobe Muse, site and I want to convert it into a version Tablet & phone, then, how would convert the site Office to Tablet & phone to copy the entire office content and site structure? Thanks for any help.

    Hello, I have a full desktop in Adobe Muse, site and I want to convert it into a version Tablet & phone, then, how would convert the site Office to Tablet & phone to copy the entire office content and site structure? Thanks for any help.

    You can not automatically convert. Click on the "tablet" or "Phone" at the top of your plan view to create these versions.

    You can then copy and paste on any content you want has more of your office.

  • How to convert specific images on my Clipboard to text once paste the picture on my .pdf document?

    Hey Adobe experts, I could really use your help.

    I have some screenshots of school I pasted on OneNote. These screenshots have a large amount of text that I could use. I created a large .pDF document where I saved my notes and text. Now - how to convert the SPECIFIC images that I stick to the text document? I use the word 'Specific' here because I know I can run OCR on a blank page without any text. But how to do OCR on an image

    It automatically happened a couple of times when I tried to save the document immediately after I pasted the image - when I was under "Edit PDF" I was able to edit and change the fonts of the text. But how can I do this at will? Is there a special button somewhere?

    P.S. I already tried to OCR - but it's only limited to pages without already "renderable text".

    I use Adobe Acrobat Pro DC; 8.1 Windows machine

    Hi SinNombre,

    If you are referring to perform OCR on a page with the image and the renderable text, it is not supported. However, you can use the following workaround for the same thing:

    1. print the PDF document to Microsoft XPS Document Writer or accessing the file-> export to...-> Image-> (an example of TIFF or PNG format)

    2 convert the output created in PDF format. This PDF file contains all the texts and images in the form of images.

    3. run the OCR on this PDF.

    This should solve your problem

  • How to convert the following code in as3?

    As the title says... How to convert the following code to as3?... Thanks in advance.

    import flash.display.BitmapData;

    linkageId = "landscape";
    myBitmapData = BitmapData.loadBitmap (linkageId);


    MC = this.createEmptyMovieClip ("mc", 1);
    mc.attachBitmap (myBitmapData, 1);

    onMouseMove = function() {}
    myNewColor = "0 x" + myBitmapData.getPixel(_xmouse,_ymouse).toString (16);
    newColor.setRGB (myNewColor);
    selectedColor.colorValue.text = myNewColor;
    }
    selectedColor.swapDepths (_root.getNextHighestDepth ());
    newColor = new Color (selectedColor.sample);

    :

    var myBitmapData:landscape = new landscape (0,0);

    var bmp:Bitmap = new Bitmap (myBitmapData);
    addChild (bmp);

    stage.addEventListener (MouseEvent.MOUSE_MOVE, f);

    function f(e:MouseEvent):void {}
    var myNewColor:String = "0 x" + myBitmapData.getPixel(mouseX,mouseY).toString (16);
    newColorTransform.color = uint (myNewColor);
    selectedColor.sample.transform.colorTransform = newColorTransform;
    selectedColor.colorValue.text = myNewColor;
    }
    addChild (selectedColor);
    var newColorTransform:ColorTransform = selectedColor.sample.transform.colorTransform;

  • How to convert the hierarchical query of SQL Server (CTE) to Oracle?

    How to convert the hierarchical query of SQL Server (CTE) to Oracle?

    WITH cte (col1, col2) AS
    (
    SELECT col1, col2
    FROM dbo. [tb1]
    WHERE col1 = 12
    UNION ALL
    SELECT c.col1, c.col2
    FROM dbo. [tb1] AS c INNER JOIN cte AS p ON c.col2 = p.col1
    )
    DELETE one
    FROM dbo. [tb1] AS an INNER JOIN b cte
    ON a.col1 = b.col1

    Hello
    Something like this maybe:

    DELETE FROM dbo.tb1 a
     WHERE EXISTS (
      SELECT 1
        FROM dbo.tb1 b
      WHERE a.co11 = b.col1
          AND a.col2 = b.col2
       START WITH b.col1 = 12
      CONNECT BY b.col2 = PRIOR b.col1)
    

    Although you need to do here is to check that CONNECT it BY SELECT, returns records you wait first, then the DELETION should work too.

  • How to deploy the blocker allowed parameters of sites on multiple computers?

    We run on Win 7 platform with ESR Firefox version 31.4.0. We want to disable the blocker for popups for specific sites. I tried to use FirefoxADM_0.5.9.4 to apply the Group Policy settings, but it does not work. When I look at the file firefox_login.vbs, there is a line mentioning registry parameter FirefoxPopupsWhitelistKey = WshShell.regread("HKCU\Software\Policies\Firefox\FirefoxPopupWhitelist") but I can not find this key on the computer.

    Is that what anyone has experience deploy this type of settings? If this isn't the case, I'm also open to hearing about how to disable the blocker for popups completely.

    If this can be done via Group Policy, please let me know another way I can do this. I read the topic: configuration config, but I found all the settings to disable the context menu.

    Thanks for your help.

    Firefox saves all exceptions to the permissions.sqlite file, so you need to use a SQLite Manager extension or program to modify this database.

    Disable the popup blocker in Firefox would be easier, as it would need only to switch a pref and can be done via a mozilla.cfg file.

    You can use a mozilla.cfg file in the Firefox program folder to lock the prefs or specify new values (default).

    Put a local file - settings.js in the folder defaults\pref also the file prefs.js - channel where to specify using mozilla.cfg.

    pref("general.config.filename", "mozilla.cfg");
    pref("general.config.obscure_value", 0);
    

    These functions can be used in the mozilla.cfg file:

    defaultPref();	// set new default value
    pref();		// set pref, allow changes in current session
    lockPref();	// lock pref, disallow changes
    

    See also:

  • How to prevent the scrambling of text as you type

    How to prevent the scrambling of text as you type

    Hello

    1. What do you exactly mean by interference?

    2 does this happen on all applications such as word, Notepad?

    I suggest you to follow these steps and check if that helps:

    Method 1:
    Start the computer in safe mode and check if the same problem occurs:
    http://Windows.Microsoft.com/en-us/Windows-Vista/start-your-computer-in-safe-mode

    Method 2:
    Try to perform the clean boot and check if it helps:
    http://support.Microsoft.com/kb/929135

    NOTE: When you are finished troubleshooting, make sure that restore you the computer mode normal startup such as suggested in step 7 of the above article.

    Check if that helps.

  • How to disable the blocker. There is no blocker in the Tools window

    When I click on the Tools icon, is there any indication of a blocker pop up... even not in Internet Options.  How to disable the blocker.

    Hello

    Have you looked into the Options on the privacy of the Internet?

  • How to get the description of text box with some HTML < P > tag

    Hi friends,

    I created two point, an element of box P1_RICH_TEXT_FIELD rich text field and a text item field area P1_TEXT_AREA. I created the calculation process to copy the value of P1_RICH_TEXT_FIELD in P1_TEXT_AREA. Calculation works well but contect copy in P1_TEXT_AREA are

    < p >

    Test Test description description < /p >

    < p >

    Test DescritionTest DescritionTest description < /p >

    < p >

    Test DescritionTest DescritionTest description Test Test DescritionTest Test Test Test Descritionhkjhkh < /p > description description description description


    I need to copy with the tag < p >.


    How to get the description of text box with the HTML < P > tag



    Thank you

    Hi Alex,

    Thank you very much. You want very criticle problem for me. Thank you very much.

    Now, there are several tags in the rich text field

    "span, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, big, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, b, u, I, Center, dl, dt, dd, ol, ul, li, label, table, caption, tbody, tfoot, thead, tr, th, td" etc.

    How can I move all these in REGEXP_REPLACE (: P1_RICH_TEXT_FIELD, ')

    |

    (", 1, 0, im ') code.

    Thank you

  • How to change the format of text ticker mode?

    Hi all

    How to change the format of text ticker mode?

    Thank you

    Hello

    If you want to format the ticker together with particular format then put in the start text
    before the tag Table
    put the fonts with necessary attributes tag

    In the end after the tag text table

    Close the tag are

    Thank you
    Vino

    Published by: Vinodh NK on March 18, 2010 04:36

    Published by: Vinodh NK on March 18, 2010 04:36

  • Heights of game for all the blocks of text in a document

    Looking to do something seemingly simple. I want all the blocks of text in my document to the same height.

    Here's where I am.

    app.activeDocument.textFrames.everyItem () .height = "2.3195 in."

    Note: I work in InDesign CS5.

    Any help on where to go from here would be greatly appreciated.

    Or, in the CS6 and later*:

    var NEW_HEIGHT = '2.3195 in';
    
    // MULTIPLE RESIZE() IN ONE STEP
    // =============================
    app.activeDocument.textFrames.everyItem().resize(
    
        // Target bounding box(es) -- Use OUTER_STROKE_BOUNDS if needed
        // ---
        [CoordinateSpaces.INNER_COORDINATES, BoundingBoxLimits.GEOMETRIC_PATH_BOUNDS],
    
        // Reference point -- Here resize is performed relative to the top edge
        // ---
        AnchorPoint.TOP_CENTER_ANCHOR,
    
        // Absolute replacement
        // ---
        ResizeMethods.REPLACING_CURRENT_DIMENSIONS_WITH,
    
        // [width, height] in points
        // ---
        [ResizeConstraints.KEEP_CURRENT_VALUE, +UnitValue(NEW_HEIGHT).as('pt')]
        );
    

    * Can operate CS5. x too, but I think remember that CS4 has a bug where resize() is a plural specifier whose receptors belong to several blocks spread.

    @+

    Marc

  • Select the block of text on each page of a sudden and resize them

    Hello, I want to do a 400 pages of text. How can I select the block of text on each page of a sudden and change their size at the same time? (each block of text is the same size per page)

    Make a backup copy of the file incase something goes wrong, then:

    Ensure that executives align on the margins on all sides - change margins of the master page applied to achieve, if necessary.

    Allow the adjustment of the layout (layout > setting layout...)

    On the master page, change the margins to be the size you want the new text frame dimensions to be.

    If, for some strange reason, you won't use these margin settings in the layout, turn off the setting of page layout and reset them on the master page again to what you want.

Maybe you are looking for

  • How to completely disable TABS?

    Firefox has just updated to version 23 and my top bar now has a tab despite the fact that I have disabled completely (functions - settings - Tabs-> unchecked all of the checkboxes). I hate tabs so how can I remove their 23 version?

  • Tecra A10 - 11L are only & not on the database serial number

    I bought a new Toshiba labtop (Tecra A10 - 11L). This model is not listed on toshiba - Europe.com and serial number not on the database. for:drivers search 12 register the product3 - upgrade to windows7 What does this meen? What should I do?

  • PROBLEMS WITH NETWORK CARD

    device: hp pavilion g6 Serial No.: g6t - 1 d 00 I have re installed windows 7 Home premium 64-bit and now, having problems connecting to the internet I tried Device Manager and its exclamatory markson showing yellow 1. ethernet controller 2. network

  • Can I migrate my existing mobile number to Skype?

    Hi all I've looked everywhere on the site, and I can't find an answer to this question:Can I cancel my current cell phone plan and take my number for Skype? If this is not the case, can you recommend a shipping service? Thank you! Adam

  • Upgrade to Vista, some games no longer works

    I have the game Call Of Duty 2. It worked fine with windows xp, but as soon as I upgraded, he no longer plays. Y at - it a update or driver I can install to make it work again?