article

Phil BoBo avatar image
0 Likes"
Phil BoBo posted Phil BoBo edited

FlexSim 19.0.4 and 19.1.1 Are Available

FlexSim 19.0.4 and 19.1.1 are now available for download.


IMPORTANT NOTE 1:

The 19.0.3 installer has a bug that causes the current installer to hang during the Cleaning Up stage when upgrading from 19.0.3 to a newer version. We have resolved the issue for future installers, but to avoid the error now, uninstall 19.0.3 using Add/Remove Programs before installing the new version.

Alternatively, you can press the X in the upper-right corner of the empty window, click Yes to canceling the installation (this won't do anything), and the Cleaning Up... window will successfully finish installing the upgrade.


IMPORTANT NOTE 2:

19.0.4 and 19.1.1 include a bug fix to the JT importer. The JT importer now correctly accounts for the measurement units of the shape that are defined in the file. JT shapes in existing models may appear scaled incorrectly when you open them. You can resolve their scaling issue by executing the script below:

forobjecttreeunder(model()) {
    treenode focus = a;
    string path = gets(shape(focus));
    if(stringlen(path) > 3) {
        string extension = stringcopy(path, stringlen(path)-1, 2);
        if(comparetext(extension, "jt", 1)) {
            double x = xsize(focus);
            double y = ysize(focus);
            double z = zsize(focus);
            applyshapefactors(focus);
            setsize(focus, x, y, z);
        }
    }
}

Below is an example of the issue. Note that the shape is much smaller than its yellow box. Running the script above fixes the shape's scale factors so that it correctly fits in the yellow box again.

product announcementknown issues
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.

Article

Contributors

phil.bobo contributed to this article