ATTENTIONThis FlexSim Community Forum is read-only. Please post any new questions, ideas, or discussions to our new community (we call it Answers) at https://answers.flexsim.com/. Our new Question & Answer site brings a modern, mobile-friendly interface and more focus on getting answers quickly. There are a few differences between how our new Q&A community works vs. a classic, threaded-conversation-style forum like the one below, so be sure to read our Answers Best Practices. |
flexsim.com |
#1
|
|||
|
|||
FlexSim 7.7.0 Available
FlexSim 7.7.0 is now available. You can download through your account at FlexSim.com
https://www.flexsim.com/account/downloads or you can download it through the Online Content page within FlexSim (located in the Help Menu). For any bug reports, feature requests or other comments, please email [email protected]. For technical support please contact our support team at http://www.flexsim.com/support/ or by phone 801-224-6914. |
The Following 12 Users Say Thank You to Matt Long For This Useful Post: | ||
Sung Kim (12-14-2015) |
#2
|
||||
|
||||
Hi,
I´ve created a model with .png as Layout, turned on the "Embedded Media with Model" Option and gave the model to a customer. The customer couldn´t see the Picture. Do I have to change any other settings in 7.7 to make this work? On another (test-)Notebook it doesn´t work, too. Could it be that customer (and testnotebook) have any wrong Settings?
__________________
Hemmi |
#4
|
|||
|
|||
I'm not sure why the media wouldn't be embedding. Even if you don't save the model prior to importing an image it still embeds that image. Can you share your model file and image?
|
#5
|
||||
|
||||
Unfortunately I´m not allowed to share the customers layout/ model here.
Gave it a try with another Picture in a new model. But everything worked fine. Thanks for your help.
__________________
Hemmi |
#6
|
|||
|
|||
I opened a model I created in FlexSim 7.5.4 in FlexSim 7.7.0 and noticed that there is a difference in the Decision Points onMessage Trigger [Conveyor Module].
In FlexSim 7.5.4 current is not the decision point but the conveyor. In FlexSim 7.7.0 it is the other way around. (see attachment) |
The Following 2 Users Say Thank You to Anna Lisa Dierking For This Useful Post: | ||
Sebastian Hemmann (12-10-2015) |
#7
|
|||
|
|||
Here is what I get when comparing the On Message of both Decision Points and Decision Point Types in both versions.
v7.5.4: DP Type - current: /DP1 DP Type - conveyor: /StraightConveyor4>variables/conveyorPoints/2 DP2 - current: /StraightConveyor4>variables/conveyorPoints/3 DP2 - conveyor: not an option So, in my opinion v7.5.4 was broken unless you were using "current" on the DP Type. Not likely the average user was using the coupling nodes. v7.7 (new model): DP Type - current: /DP1 DP Type - conveyor: /StraightConveyor4 DP2 - current: /DP2 DP2 - conveyor: /StraightConveyor4 All fixed! It doesn't matter how FlexSim passes the values into the On Message, only what you get. Compatibility: If I bring the v7.5.4 model into v7.7: DP Type - current: /DP1 DP Type - conveyor: /StraightConveyor4 DP2 - current: /StraightConveyor4 In the conversion case, current on the DP direct represents the conveyor, however current was broken in v7.5.4 and not likely used. So all is good I think. Last edited by Kris Geisberger; 12-10-2015 at 10:47 AM. Reason: added detail |
The Following 5 Users Say Thank You to Kris Geisberger For This Useful Post: | ||
Steven Hamoen (12-10-2015) |
#8
|
||||
|
||||
In case it was not clear: this is a bug fix.
In 7.7, 'current' and 'conveyor' are what you expect them to be in both the decision point and decision point type OnMessage triggers. 'current' is the decision point and 'conveyor' is the conveyor. In a decision point OnMessage in 7.5, 'current' did not point to the decision point, but rather a node within the conveyor. In a decision point type OnMessage in 7.5, 'conveyor' did not point to the conveyor, but rather a node within the conveyor. When you update a 7.5 model to 7.7, these two cases change to point at the conveyor rather than the node within the conveyor. So if by some small chance, you were using ownerobject() in your code to get to the conveyor from the subnode, you will need to remove the ownerobject() call to get it to behave the same as 7.5. Otherwise, that code will continue to function the same as it did in 7.5. New decision point OnMessage code will have more useful headers that correctly define 'current' as the dp itself and 'conveyor' as the involved conveyor. |
The Following 2 Users Say Thank You to Phil BoBo For This Useful Post: | ||
Sebastian Hemmann (12-10-2015) |
#9
|
||||
|
||||
Add a Process Flow
Hi,
I´m looking for a way to get a open process flow window in every new model. Found the Option "Add a Process Flow object to new models" in global Settings under Environment. But it doesn´t have any effect for me! What am I doing wrong? Is there furthermore a way to make activitys/ blocks "no select"? I want to integrate a Picture as layout behind my activitys. Another feature I´m missing is to show the ranks and names of ports by holding "c" or "v" button and clicking on an object. Is this option erased?
__________________
Hemmi |
The Following User Says Thank You to Sebastian Hemmann For This Useful Post: | ||
Phil BoBo (12-16-2015) |
#10
|
|||
|
|||
Under the setting to add a process flow in new models there's the button to Set current Workspace as default. If you do that with the process flow window open then you'll have that with each new model.
You can make the image so() and then run switch_noselect(so(),1), but then you can't pan the PF by clicking the image/background, and the middle button/pan option isn't working in PF. To get around that run setvarnum(so(),"fill",0) and you can then pan by clicking on the background as usual. Also the image still acts as a gouping/container if you decide to drag new objects onto it. Last edited by Jason Lightfoot; 12-16-2015 at 08:24 AM. |
The Following 3 Users Say Thank You to Jason Lightfoot For This Useful Post: | ||
Sebastian Hemmann (12-16-2015) |
#11
|
||||
|
||||
Quote:
So drag an Image object into your ProcessFlow view and then clear the Fill checkbox in Quick Properties. If your image is a large background, you also might want to change the "Hide Contents at Magnification" setting of the image so that your activities on top of it don't disappear when you zoom out. This looks like a bug in the draw code of those names. They are showing up, but they are very small and rotated the wrong direction. |
The Following 2 Users Say Thank You to Phil BoBo For This Useful Post: | ||
Sebastian Hemmann (12-17-2015) |