Skip to content

Rasmus

My feedback

24 results found

  1. 4 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    Rasmus supported this idea  · 
  2. 498 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    Hello friends, 


    We are glad to inform you that we have started working on this request.  But before we start developing the solution we want to make sure that we understand your requirements correctly and build the right feature set that is going to address them. 


    And for this we are requesting few minutes of your time in which we want to get on a 1-1 call with you to understand your needs deeply. For this to happen, you just need to block an appointment through the below invite link which suits you and we will then have a meeting. See you soon!


    Please book an appointment by clicking on this link : https://calendar.app.google/8LDx6feZWch5qB2C9

    An error occurred while saving the comment
    Rasmus commented  · 

    Cool. Did you try my script? That's basically what we need, but in a drag-and-drop fashion.

    An error occurred while saving the comment
    Rasmus commented  · 

    @Saurav Agrewal; I'd like Archit's option 2. Because the feature is lacking, I've written a script that adds the selected swatches (or groups of swatches) to the artboard as rectangles. But I'm still missing the option to just drag and drop a swatch from the swatches panel to the artboard.

    ```jsx
    // Check if a document is open
    if (app.documents.length === 0) {
    alert("No document is open.");
    }

    // Reference the active document, swatches and artboard
    var doc = app.activeDocument;
    var swatches = doc.swatches.getSelected();
    var artboard = doc.artboards[doc.artboards.getActiveArtboardIndex()];

    var x = artboard.artboardRect[0];
    var y = artboard.artboardRect[1];

    if (swatches.length == 0){
    alert("No swatches are selected.");
    }else{
    // Add a layer for the generated swatches
    var colour_layer = doc.layers.add();
    colour_layer.name = "Swatches layer";
    for (var i=0, len=swatches.length; i < len ; i++) {
    // For each swatch, add it to the artboard
    if ( i > 1 && 5 % i == 0){ y -= 110; x = artboard.artboardRect[0]; }
    // Size and color of block
    var rect = colour_layer.pathItems.rectangle(y, x, 100, 100 );
    rect.fillColor = swatches[i].color;
    // No stroke
    rect.stroked = false;
    x += 110;
    };
    }
    ```

    Rasmus supported this idea  · 
  3. 3 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    Rasmus supported this idea  · 
  4. 8 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    An error occurred while saving the comment
    Rasmus commented  · 

    This is rather important, but the bug report is difficult to find. Pencil strokes can be converted to brush strokes, but brush strokes cannot be converted to pencil strokes. Illustrator 3.0.6 on iOS 17.4.1.

    Rasmus supported this idea  · 
  5. 41 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    Rasmus supported this idea  · 
  6. 3 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    An error occurred while saving the comment
    Rasmus commented  · 

    I've been using Illustrator on iPad for more than a year, and I've been perplexed by the pencil only having a width of 1 px. Because of this feature request, I've just realised, that it *is* possible to draw in different thicknesses. But the setting is not in the pencil tool!

    This comment is for people not realising, that tool settings are not anywhere near the tool.

    Rasmus supported this idea  · 
  7. 11 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    Rasmus supported this idea  · 
  8. 16 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    Rasmus supported this idea  · 
  9. 66 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    Rasmus supported this idea  · 
  10. 265 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    Rasmus supported this idea  · 
  11. 33 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    Rasmus supported this idea  · 
  12. 2 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    Rasmus supported this idea  · 
  13. 10 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    An error occurred while saving the comment
    Rasmus commented  · 

    This still happens on my iPad Pro (10,5") with the Apple Pencil Gen1, in Illustrator for iPad 3.0.6.

    Rasmus supported this idea  · 
  14. 20 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    Rasmus supported this idea  · 
  15. 5 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    Rasmus supported this idea  · 
  16. 25 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    Rasmus supported this idea  · 
  17. 11 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    Rasmus supported this idea  · 
  18. 23 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    Rasmus supported this idea  · 
  19. 141 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    Rasmus supported this idea  · 
  20. 158 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    Rasmus supported this idea  · 
← Previous 1

Feedback and Knowledge Base