3D rectangle placemat not working

I'm trying to create a 3D rectangle placemat using Illustrator in Effect>3D>Rotate but it keeps saying there's not enough memory (ram). It didn't work in college, my laptop or the IMac. I'm not sure if there's a bug that's preventing it from working.

Are you sure you're using the right tool?
What has Effect>3D>Rotate got to do with a rectangle placemat?
You know how 3D Rotate works?
Maybe you can send us a screenshot of what you are trying to do.

Similar Messages

  • Rectangle menu not working

    Hi! I am trying to draw a circle and I can't bring in the ellipse tool because for some reason the menu that is suppose to come up when you click and hold the rectangle tool is not working. What can I do to fix it?

    Unfortunately you do not say which version of spry you are using, so first make sure that you have the current version as this fixes many of the IE related problems.
    You can get the latest version by visiting:http://www.labs.adobe.com/technologies/spry/
    HTH
    PZ

  • Rectangle Tool Not Working Right

    I have looked around for a few days and have not been able to fix this stupid problem I have.
    When I try to use the rectangle tool, I can not make a shape the size I want.  As soon as I click, a rectangle pops up.  I can not click and drag to make the size I want.
    All of the other shape tools for fine.  I have been getting by by using the rounded rectangle tool with a 0 px radius.  This works fine but is really inconvenient.
    Anyone have any suggestions?

    That was exactly what I was looking for!
    Thank you very much.

  • Dynamic 'Rectangle' animation not working since CC update

    Hi,
    I've recently updated to Edge Animate CC and continued work on 3 projects that have nested rectangles that would change height as they pass through keyframes.
    sym.getSymbol("info").$("Rectangle").height(400);
    then the next keyframe
    sym.getSymbol("info").$("Rectangle").height(200);
    This now does not change except on the 1st keyframe, but worked fine before the update.
    Also (on a side note), how do you hide the textbox scroll bars in Firefox and IE? The text also fills out dynamically and mostly doesn't fill the whole textbox, so looks a bit garish.
    Thanks
    Sean

    you could use this format instead:
    sym.getSymbol("info").$("Rectangle").css('height',400);
    I am not sure I understand your second question. Do you want the text to be cut off???

  • Rectangle outcode() not working quite right

    I wrote the following to try to capture if the rect is top bottom right left, however it doesnt work right. If I replace the statements eg lets say for top to code==2 || code ==6 || code ==3 it works fine. Any idea what im doing wrong
    code = nodeRect.outcode(currentRect.getX(), currentRect.getY());
    if(code & Rectangle.OUT_TOP) != 0 ||
    (code & (Rectangle.OUT_RIGHT | Rectangle.OUT_TOP)) != 0 ||
    (code & (Rectangle.OUT_LEFT | Rectangle.OUT_TOP) ) != 0)
         //This means the point is above the rectangle
    else if(code & Rectangle.OUT_BOTTOM) != 0 ||
    (code & (Rectangle.OUT_RIGHT | Rectangle.OUT_BOTTOM) ) != 0 ||
    (code & (Rectangle.OUT_LEFT | Rectangle.OUT_BOTTOM) ) != 0 )
    //This means the point is below the rectangle
    else if(code & Rectangle.OUT_RIGHT) != 0 )
    //This means the point is to the right of the rectangle
    else if(code & Rectangle.OUT_LEFT) != 0 )
    //This means the point is to the left of the rectangle
    }

    >there is no tone upon startup.
    First of all, check whether the speaker is properly connected.
    >Perhaps it's time for the motherboard dishwasher trick.
    Before attempting to clean the logic board, it could be a good idea to closely examine it. Look for leaking electrolytic capacitors, other discoloured components, damaged printed circuits, et cetera.
    As you probably know already, repair work inside a compact Macintosh computer can be very dangerous due to high voltages, and must be carried out by someone with the necessary expertise only.
    Jan

  • Toolbar Drop-Down Box for rectangle etc not working

    Dropdown boxes for Toolbar (Pan, Transform, rectangle, Bezier, rectangle Mask) do not respond. The tools on right hand side of the bar (Add Generator, Behavior, Filter) are OK. I am using OSX 10.8.5 and motion 5.07.

    By the shear nature of a dropdown list, only one value may be returned as it is for one and only one field.
    If you need to return multiple values, you would need to create a modal screen with a table control on it and set options to allow the user multiple selected rows, which you would then recognize with an 'X' in the SEL field you add to the internal table and table control.

  • Rectangle Tool not working properly.

    I am having the issue when I am attempting to create a Rectangle. Please keep in mind that this is not a Rounded Rectangle.
    As I drag it out to make the object bigger, the corners automatically start rounding. I am using Windows 8 if that has anything to do with it.
    If more information is needed, I will, somehow, provide that information.
    Thanks!

    Weird! Have you checked the Roundness setting in the Properties panel (with a rectangle or the Rectangle tool selected)? If the units are set to %, any small amount of rounding will become more noticeable at larger sizes. (Likewise, a small pixel amount could become scaled upon transformation if the Scale Attributes option has been selected.) But it shouldn't start spontaneously rounding—which sounds like what you're describing. Are you at least able to adjust the roundness after the fact, using the Properties panel?

  • My cursor does not open many links.  If I get a message on Linkedin the "Accept" rectangle does not work when I put my cursor on it.

    M cursor changs from an arrow to the text (tall I) icon when I move it over links and "unsubscribes" and I can't respond to either Facebook or Likedin buttons.
    Often if I get a link in an e-mail message my cursor will not open the link.  The arrow changs back to the txt cursor and the link won't open.  Help!
    people send me important mesage telling me to hit a link to open something but my cursor won't open the link.???

    First check your trackpad settings to make sure all is correct.
    /Library/Preferences.  Trash the com.apple.finder.plist file. 
    Disconnect all peripherals from your computer.
    Boot from your install disc & run Repair Disk from the utility menu. To use the Install Mac OS X disc, insert the disc, and restart your computer while holding down the C key as it starts up.
    Select your language.
    Once on the desktop, select Utility in the menu bar.
    Select Disk Utility.
    Select the disk or volume in the list of disks and volumes, and then click First Aid.
    Click Repair Disk.
    Restart your computer when done.
    Repair permissions after you reach the desktop-http://support.apple.com/kb/HT2963 and restart your computer.
    Empty the trash.   

  • Color{red:255  green:0 blue:0} is not working?

    In the following code I tried to use Color{red green blue} to set the color of rectangle
    is not working for me. Is there any thing wrong with my code? But if I use Color.RED
    then it works. I can't figure out why setting color using Color{reg, green, blue} does not
    work.
    import javafx.ext.swing.*;
    import javafx.scene.geometry.*;
    import javafx.scene.*;
    import javafx.scene.paint.*;
    SwingFrame {
        background : Color.WHITE;
        width      : 600
        height     : 400                 
        visible    : true
        content: Canvas {
                   content: [
                     Rectangle{x:10 y:50 width: 580  height: 200 
                                    stroke: Color{red:255 blue:0 green:0}}
                  // Rectangle{x:10 y:50 width: 580  height: 200 stroke: Color.RED}
    }

    Thanks for qucik reply. And your suggestion worked.
    Could you please point me to the location of documentation for this?
    Thanks
    Edited by: swamyv on Oct 13, 2008 1:44 PM

  • Why is Rectangle Tool's matching dimension feature not working?

    With the Rectangle Tool's cursor is clicked in the document.
    The Rectangle Panel appears.
    A height dimension is entered.
    With the pointer, the Width field is clicked.
    Usually, the Height Value gets automatically entered in the Width field.
    In this case it does not.
    This same behavior is occuring in the Ellipse Tool.
    What has changed?
    Thanks
    iMac 3.4Ghz 32 GB
    OSX 10.8.2
    Illustrator CS6

    I may not have been clear on what is not working... the feature I am trying to create has been in Illustrator for several versions... another discusion on this site deals with the same problem...
    see http://forums.adobe.com/message/4910715... it is explained...
    'There has always been a one click solution, just like the help file says. Try it in CS5, click once with the tool, enter your width value, click on the word height, ill copies the width value into the height field, hit enter and you are done.'
    it is this function that I have used for years.

  • PS CS5 - rounded rectangle and move tool not working..?

    CS5 Photoshop
    I have just noticed that my rounded rectangle tool is not working properly. When I click and drag nothing is visible, when I release it floods my whole image with my selected color. I have tried all of the other tools and they work properly. I have tried restarting, compared settings with other tools, and checked for updates. Nothing is working and any help would be appreciated.
    Also, I have what appears to be a common problem with my move tool. I click, drag, and drop only to have the selected image snap back to its original position. I have an intuos 5 connected, is this the culprit?
    Thanks in advance...

    I can't help with the snap to edge problem, but if you select your rounded rectangle shape tool, and click on the Cog in the Options bar, I suspect you have a fixed size set, and that it is bigger than your canvas.

  • 100% Width rectangle not working

    I followed the instructions from this article, and it is not working. Any ideas?
    Creating a 100% width rectangle element that spans the entire width of a browser window.
    I did everything it says to do here, but it does not scan across the browser when I preview, and the "red lines" to detect when rectangle sides are flush with the page do not appear.
    I'm in CS6.

    Thank you for posting.
    I've created a small video to show how to create a 100% width rectangle element. Please refer to the following Link : http://screencasteu.worldsecuresystems.com/aish/2013-03-21_1414.swf
    Hope this helps.
    Regards,
    Aishvarya Raj Rastogi

  • Button not working in browser

    I am coding a video player in Netbeans 6.8. just find two problems:
    1. the browser button not working in browser when I run the project from Netbeans under "run in browser" mode. however under "standard execution" mode, everything is fine.
    2. can not run the jar file in the project's dist directory directly. in other word, I can not run the jar file outside of Netbeans.
    I appreciate any help. thanks.
    Main.fx:
    package gui;
    import javafx.stage.Stage;
    import javafx.scene.Scene;
    import javafx.scene.paint.Color.*;
    * @author Jethro
    var face=Face{};
    function run(){
        Stage{
            title: "player"
            resizable:false
            scene: Scene{
                width:800
                height:600
                fill:DARKBLUE
                content: [face]
    }Face.fx:
    package gui;
    import javafx.scene.CustomNode;
    import javafx.scene.Group;
    import javafx.scene.Node;
    import javafx.scene.control.Button;
    import javafx.scene.layout.VBox;
    import javafx.scene.media.Media;
    import javafx.scene.media.MediaPlayer;
    import javafx.scene.media.MediaError;
    import javafx.scene.input.MouseEvent;
    import javafx.scene.media.MediaView;
    import javafx.scene.control.ProgressBar;
    * @author Jethro
    public class Face extends CustomNode {
        public var lbf=LBF{};
        public var enable=true;
        public var mark="play";
        public var sourceOfMedia:String;
        public def player=MediaPlayer {
            repeatCount:MediaPlayer.REPEAT_FOREVER
            onError:function(e:MediaError){
                var er=e.message;
         media : bind Media {
              source: sourceOfMedia
        public def view=MediaView {
                mediaPlayer:bind player
                preserveRatio: true                    
        public def bar=ProgressBar {
                height:10
                width:bind scene.width
                progress: bind
                    if(player.media !=null){
                        player.currentTime.toMillis()
                            /player.media.duration.toMillis();
                    }else{
                        0.0
        public var play=Button {      
            onMousePressed:function(e:MouseEvent){
                if(enable and player.media != null){
                            mark="pause"; println("playing...");                       
                            sourceOfMedia=lbf.uri;
                            player.play();
                            enable=false;
                }else{
                    mark="play";
                    player.pause();println("paused...");
                    enable=true;
         text: bind mark       
        public override function create(): Node {
            return Group {
                content: [
                    VBox{
                        content: [
                            lbf,
                            bar,
                            play,
                            view,
    }LBF.fx:
    package gui;
    import javafx.scene.CustomNode;
    import javafx.scene.Group;
    import javafx.scene.control.TextBox;
    import javafx.scene.layout.HBox;
    import javafx.scene.paint.Color;
    import javafx.scene.shape.Rectangle;
    import javafx.scene.text.Font;
    import javafx.scene.text.Text;
    import javafx.scene.Node;
    import javafx.geometry.HPos;
    import javafx.geometry.VPos;
    import javafx.scene.control.Button;
    import javax.swing.JFileChooser;
    * @author Jethro
    public class LBF extends CustomNode{
        public var uri:String;
        public var whereis=Text {
            fill:Color.BLUE
         font : Font {
              size: 20
         x: 10, y: 30
         content: "location: "
        public var location=TextBox{
            text:"the song's location"
            columns:40
            selectOnFocus:true
        public var browser=Button {
         text: "Browser"
         action: function() {
                    var jfc=new JFileChooser();               
              jfc.setFileSelectionMode(JFileChooser.FILES_AND_DIRECTORIES);
                    var val = jfc.showOpenDialog(null);
                    if(val == JFileChooser.APPROVE_OPTION) {                   
                        location.text = jfc.getSelectedFile().getAbsolutePath();
                        uri=jfc.getSelectedFile().toURI().toString();
                        println(location.text);
        public var face=Group {
         content: [
              Rectangle {
                        x: 0, y: 0
                        width: 800, height: 50
                        fill: Color.SILVER
                     HBox{
                         width:800
                         height:50
                         hpos:HPos.CENTER
                         vpos:VPos.CENTER
                         spacing:5
                         content: [whereis,location,browser]
        public override function create():Node{
            return face;
    }

    thanks for your reply but I need more specific operation.
    maybe I am not very clear about the problem one. I mean when I run the code in standard mode, if I click the browse button, a window will pop out and I can choose a video file from my local harddisk. but if I run it in "web start execution" mode and "run in browser" mode. the browse button make no response when I click it.
    Edited by: Phoenix2006 on Feb 8, 2010 2:35 PM
    Edited by: Phoenix2006 on Feb 8, 2010 2:37 PM
    Edited by: Phoenix2006 on Feb 8, 2010 2:42 PM

  • Ctrl+tab is not working in editing mode

    I have JcheckBox and JTable in my JPanel. When user clicks or presses F2 to edit any cell value of the JTable a comboBox will appear with possible values. (This comboBox is coming from table CellEditor). When user presses ctrl+tab from the table focus should transfer to JComboBox all time. It is working only when the user presses ctrl+tab from the table cell which is not in editing mode. If the user presses ctrl+tab from the table cell which is in editing mode (i.e. focus is on the ComboBox of the cellEditor) it does not work. Please help me to find the solution.
    I give a sample code here for your reference.
    public class Frame1 extends JFrame {
    public Frame1()
    super();
    this.setLayout( null );
    this.setSize( new Dimension(400, 300) );
    JTextField ch = new JTextField();
    ch.setVisible(true);
    ch.setBounds(10, 10, 10, 10);
    this.add(ch, null);
    DefaultTableModel tmodel = new DefaultTableModel(3, 1);
    tmodel.setValueAt("0 0 1",0,0);
    tmodel.setValueAt("1 0 1",1,0);
    tmodel.setValueAt("2 0 1",2,0);
    JTable custLayersTable = new JTable(tmodel);
    custLayersTable.getColumnModel().getColumn(0).
    setCellEditor(new ComboEditor());
    custLayersTable.setBounds(new Rectangle(40, 40, 280, 145));
    custLayersTable.setSurrendersFocusOnKeystroke(true);
    this.add(custLayersTable, null);
    public static void main(String[] args)
    Frame1 a = new Frame1();
    a.setVisible(true);
    final class ComboEditor extends AbstractCellEditor
    implements TableCellEditor
    public Component getTableCellEditorComponent(JTable table,
    Object value,
    boolean isSelected,
    int row,
    int column)
    Vector<String> layerValSet = new Vector<String>();
    for(int i=0; i<3; i++)
    layerValSet.add(row+" "+column+" "+i);
    mComboModel = new DefaultComboBoxModel(layerValSet);
    mComboModel.setSelectedItem(value);
    mEditorComp = new JComboBox(mComboModel);
    return mEditorComp;
    public Object getCellEditorValue()
    return mEditorComp.getSelectedItem();
    private DefaultComboBoxModel mComboModel;
    private JComboBox mEditorComp;
    }

    Thanks a lot for your reply.
    Since the textField is in a different class i could not use the transferFocus API directly. I tried the following code in the keyreleased event of Combo Box but it was not working.
    KeyboardFocusManager.getCurrentKeyboardFocusManager().focusNextComponent(
    e.getComponent().getParent());
    I also tried the following code in stopCellEditing and is not working.
    KeyboardFocusManager.getCurrentKeyboardFocusManager().focusNextComponent();
    Is there any other way to achieve this?

  • Ctrl and shift alt shortcuts not working in Illustrator CS4

    Hi
    Can´t seem to get these keys to work properly.
    For instance while drawing with the rectangle tool then pressing shift to get a square does not give me a square, all I get is a tooltip balloon saying "shift" same goes with ctrl and alt and spacebar. This only happens while using my wacom graphire 3 not with the mouse. Trying to use the up and down arrows to shange the number of points in a star also not working. But if I FIRST click the shift key then start creating a square its working, but not if I first start creating the rectangle. Photoshop cs4 does not give me this problem. Using Vista 32 bit swedish language, latest Wacom driver 5.0.8-6, latest keyboard driver and a swedish microsoft natural pro keyboard, latest logitech mouse driver. Any help is appreciated.
    Thanks
    Strangeflow

    Fonts... there are probably the most guilty of that cases. Ask yourself: when you add (drop, be forced) new fonts in your system, by management spoftware (directly into font folder)? Notice when web browser "ask" you about access to your fonts on your HD in last time (so often last days). When you "dig" somthing in a system, at any way, you disturb his  "sacramental peace" (Ohmmmm...) and it flow in other case like sensitive Illustrator or others -  I think all other "movements" eg. reinstaling, deleting, etc just "cover" problem by something others (for a short time) or don't resove it at all.
    So, first try... rebuild you system maintenace privilages (do this every month or often! Try Atomicbird Macaroni or Titanium Onyx or so, than...
    try rebiuld/refresh/clean your font cach ( I use for this, and manage, FontExplorer X Pro) and should be fine.
    ..."should" I'm not guarantee 100%
    PS
    I have no idea what should be done on PC

Maybe you are looking for

  • That's not a face!

    With drag-select, it's easy to confirm/reject A3's face guesses. In many cases, however, it's picking up patterns in the background and calling it a face. Is there an easy way to tell A3 that something isn't a face at all so it stops trying to assign

  • Has anyone seen a virus that adds a file extension .zzz to all files?

    When upgrading the firmware, I received an error message "cant find kvm" althought it read the kvm --- the installation failed  firmware: KVM 3.02 TO KVM 3.03 Reason for upgrade is due to the KVM not being able to read some of the machines Please adv

  • Fax to/from MacBook Pro, OSX 10.7.5-???

    I would like to be able to send & receive faxes from my MacBook Pro and would appreciate any suggestions.   ie: USB fax modems? etc.

  • HCM - Dynamic table

    Has anyone created a dynamic table in HCM forms wherein we can add lines and delete lines. I tried using the below code in formcalc, Table3._Row1.addInstance(1) Table3._Row1.addInstance(1); in javascript, but its not working. do we need to do anythin

  • Trouble with  Videos App-

    I'm having a lot of trouble getting any digital copy to stream through the Videos app on my iPhone 6 Plus (yes, it's updated to the latest software). Some will start and then rebuffer every few minutes/seconds, some will not start at all. I've verifi