forked from DynamoDS/Dynamo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMessageErrorOpeningFileGeneral.html
More file actions
48 lines (36 loc) · 1.77 KB
/
MessageErrorOpeningFileGeneral.html
File metadata and controls
48 lines (36 loc) · 1.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!--
There are two versions of this HTML file. One that is part of the Dynamo Dictionary
codebase and one that is part of the Dynamo codebase, used for displaying additional
error information in the Dynamo side panel.
These files need to kept in sync manually: if making edits to one version of the file,
make sure to update the other version as well.
Dynamo: https://github.com/DynamoDS/Dynamo
Dynamo Dictionary: https://github.com/DynamoDS/DynamoDictionary_React
-->
<head>
<meta charset="UTF-8" />
</head>
<style>
body {
color: white;
font-size: 14px;
font-family: "Artifakt Element";
src: url("fonts/ArtifaktElement-Regular.woff") format("woff");
padding: 1%;
}
a {
color: lightgray;
cursor: pointer;
background-color: transparent;
}
</style>
<!-- Use inline styles to keep Dynamo Dictionary styling in the dictionary -->
<!-- and custom styling in Dynamo sidepanel. -->
<body style="background-color: #353535; font-family: 'Artifakt Element', 'Open Sans';">
<h2>Error opening file</h2>
<p>This is a generic error message which indicates that the file you are working with cannot be opened by your version of Dynamo. </p>
<h4>How to fix</h4>
<p>Make sure the file you are trying to open was created using the same or a previous version of Dynamo than the version you are running on your computer (e.g., if the file was created in Dynamo 1.X, you can open it with Dynamo 1.X or 2.X, but if the file was created in Dynamo 2.X, you can only open it with Dynamo 2.X or greater). </p>
<h4>More information</h4>
<p>To find out more, please check <a href="https://forum.dynamobim.com/search?q=error%20opening%20file"><span> posts on the Dynamobim forum discussing "<strong>error opening file</strong>"</span></a>.</p>
</body>