Forum Replies Created

Page 2 of 9
  • Liz Larsen

    Member
    January 18, 2024 at 8:14 am in reply to: Highlighter Tool
    Points: 4,711
    Rank: UC2 Brainery Orange Belt IIII UC2 Brainery Orange Belt IIII

    Oooh! I got this one!

    https://www.youtube.com/watch?v=vrLxtG-sHSc&pp=ygUSYmx1ZWJlYW0gaGlnaGxpZ2h0

  • Liz Larsen

    Member
    December 7, 2023 at 5:17 pm in reply to: Replaced Choice fields with check boxes
    Points: 4,711
    Rank: UC2 Brainery Orange Belt IIII UC2 Brainery Orange Belt IIII

    Here’s another example.

    Source: https://www.reddit.com/r/Revu/comments/fdiwdo/dynamic_stamp_checkbox_script/

    Dynamic Stamp checkbox script
    byu/TheNardDawg89 inRevu
  • Liz Larsen

    Member
    May 24, 2023 at 12:46 pm in reply to: Convert to Arc Randomly Doesn’t Work
    Points: 4,711
    Rank: UC2 Brainery Orange Belt IIII UC2 Brainery Orange Belt IIII

    For some reason you cannot convert line segments to arcs if you were holding SHIFT to make that segment snap to 0° or 90° increments. If you snapped to 45° convert to arc should work just fine.

    I just move the node a tiny bit, convert to arc, then turn on “snap to content” to be able to put it back aligned with the other node.

  • Liz Larsen

    Member
    May 24, 2023 at 12:37 pm in reply to: Noob Trying to learn Javascript
    Points: 4,711
    Rank: UC2 Brainery Orange Belt IIII UC2 Brainery Orange Belt IIII

    I brought it into my favorite JavaScript syntax checker, https://jshint.com, and it showed me that there are indeed some syntax errors.

    Take a look and see if you can figure out where you’re missing brackets and whatnot. I suggest maybe download a free text editor meant specifically for coding, either Sublime Text or Notepad++. Either of these tools will let you see which brackets match, kind of like when you’re editing an Excel formula and it highlights the corresponding parenthesis.

    If you still can’t figure out, let me know and I’ll dig a little deeper. (I’m currently at work where I don’t have access to my coding software.)

    • Liz Larsen

      Member
      May 24, 2023 at 8:39 pm in reply to: Noob Trying to learn Javascript
      Points: 4,711
      Rank: UC2 Brainery Orange Belt IIII UC2 Brainery Orange Belt IIII

      It’s your quotation marks.

      When I copy your code into Sublime Text, I can see that they don’t look right:

      field: ”Date”,

      I tried a Find-Replace in Microsoft Word, but it still isn’t right:

      field: “Date”,

      Finally, I just manually typed the ” character into Sublime Text and you can see it formats properly:

      field: "Date",

      See the attached screenshot from Sublime Text. It automatically formats strings as green and the first two aren’t green because the quotation marks are the wrong character and therefore not recognized as strings.

      I know, I know, huge pain in the ass. In the future, I would recommend steering clear of text editors like Word when it comes to writing code. Like I mentioned previously, Sublime Text and Notepad++ are both free and will prevent this issue.

      Here’s the working code:

      var builder = {

      // These map to Text Fields in the Stamp

      textBoxes: [{

      field: "CheckedBy",

      description: "Checked by:",

      default: function () {

      return Collab.user;

      }

      }, {

      field: "Date",

      description: "Date:",

      default: function () {

      var curDate = new Date();

      return (curDate.getMonth() + 1) + "/" + curDate.getDate() + "/" + curDate.getFullYear();

      }

      }, {

      field: "Spec",

      description: "Spec #:",

      default: function () {

      return "";

      }

      }]

      }

  • Liz Larsen

    Member
    January 10, 2024 at 9:40 am in reply to: Welcome New Members!
    Points: 4,711
    Rank: UC2 Brainery Orange Belt IIII UC2 Brainery Orange Belt IIII

    Maybe he’s born with it, maybe it’s Bluebeam?

  • Liz Larsen

    Member
    November 7, 2023 at 8:31 pm in reply to: Large linked section extents
    Points: 4,711
    Rank: UC2 Brainery Orange Belt IIII UC2 Brainery Orange Belt IIII

    Yep. We’re kind of stumped over here.

    I’m wondering if there’s a setting somewhere? We don’t use the Bluebeam Revit plugin, so it’s not that (probably).

    We’re currently using Revu 21.

  • Liz Larsen

    Member
    November 7, 2023 at 5:47 pm in reply to: Large linked section extents
    Points: 4,711
    Rank: UC2 Brainery Orange Belt IIII UC2 Brainery Orange Belt IIII

    The links are created automatically by printing via CTRL+P, then choosing the Bluebeam option in the print dialog. We’ve never had to create them on an existing PDF, they’re always just there when Revit is done creating the file.

    We do not have the level of Bluebeam that has batch hyperlink.

  • Liz Larsen

    Member
    November 7, 2023 at 5:45 pm in reply to: Large linked section extents
    Points: 4,711
    Rank: UC2 Brainery Orange Belt IIII UC2 Brainery Orange Belt IIII

    The user was creating a PDF from Revit. The links are created automatically by printing via CTRL+P, then choosing the Bluebeam option in the print dialog.

    We do not have the level of Bluebeam that has batch hyperlink.

  • Liz Larsen

    Member
    May 25, 2023 at 1:36 pm in reply to: Line Position for Polylength Takeoff
    Points: 4,711
    Rank: UC2 Brainery Orange Belt IIII UC2 Brainery Orange Belt IIII

    Check out Vince’s YouTube channel. He has a couple videos from 3 months ago where he uses some custom line styles to do offsets.

    https://www.youtube.com/@vinicsurveying

    I’ll let the others chime in with any additional resources.

  • Liz Larsen

    Member
    April 28, 2023 at 6:01 pm in reply to: Looking for training/help to add a form field to a custom stamp
    Points: 4,711
    Rank: UC2 Brainery Orange Belt IIII UC2 Brainery Orange Belt IIII

    Maybe either a dynamic or an interactive stamp are what you want? I’m still not 100% sure of the workflow you wish to achieve.

    There are several videos on YouTube about how to create dynamic stamps. I think this one will get you started:

    Interactive stamps actually have a dialog box popup so the user can enter information. They’re a little more complicated to create. Below is a link to the Bluebeam website where you can see written instructions and download example files. The 2nd link is a YouTube video I did with ATG describing the ins and outs of creating these stamps.

    I hope that helps!

  • Liz Larsen

    Member
    April 28, 2023 at 11:21 am in reply to: Javascript for Digital Dashboards
    Points: 4,711
    Rank: UC2 Brainery Orange Belt IIII UC2 Brainery Orange Belt IIII

    I have also had no luck when trying to modify trust settings (in previous projects, I haven’t tried recently).

  • Liz Larsen

    Member
    April 27, 2023 at 3:36 pm in reply to: Javascript for Digital Dashboards
    Points: 4,711
    Rank: UC2 Brainery Orange Belt IIII UC2 Brainery Orange Belt IIII

    Hopefully that API expansion is coming soon and is not a let-down.

    Yeah….. My optimism on this has lowered over the past several weeks.

  • Liz Larsen

    Member
    April 27, 2023 at 7:41 am in reply to: Javascript for Digital Dashboards
    Points: 4,711
    Rank: UC2 Brainery Orange Belt IIII UC2 Brainery Orange Belt IIII

    I’ll have to take a look at this over the weekend.

    I do agree with you that manipulating hyperlinks is not a function that Bluebeam has allowed with their JavaScript API. I like your workaround to use buttons, but it’d be nice to just straight be able to insert hyperlinks.

  • Liz Larsen

    Member
    April 26, 2023 at 11:15 am in reply to: Looking for training/help to add a form field to a custom stamp
    Points: 4,711
    Rank: UC2 Brainery Orange Belt IIII UC2 Brainery Orange Belt IIII

    Agreed. Knowing where you’re starting from plus a very clear illustration of where you wish to end are key to giving you the best solution.

Page 2 of 9