Zone Stamps , Data I/O add-on , script execution.
Anonymous
Not applicable
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2008-11-26 10:32 AM
2008-11-26
10:32 AM
I have a zone stamp that is reading a information {room finishes} from a text file using the DATA I/O add-on and populates custom parameters with that information.
When I select one Zone - open the properties dialog and press OK the information is properly read, the issue is that I have 300-600 rooms/zones per floor [on 6 levels] and selecting all and pressing o.k does not do this.
I have tried to use the rebuild , and also tried to change the pen number for all zones but none of the above works.
The portion of the script which is doing that work is in the master script.
Any ideas would be great - I would hope that one should not select 3400 zones individually and press OK just to update them..
Thanks , Jonathan.
________________________________________
AC11,AC12, WinXp SP3
4 REPLIES 4
Anonymous
Not applicable
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2008-11-26 02:44 PM
2008-11-26
02:44 PM
Hi Jonathan,
Does 'Update Zones' on the Design menu work? I know this updates the figures it reads from the zone, but whether it also updates I/O data or not I have no idea.
If that doesn't work have you tried selecting the zone tool, then Ctrl+A to select all the zones on that storey, then click the properties/settings button and 'OK' it without making any changes?
Does 'Update Zones' on the Design menu work? I know this updates the figures it reads from the zone, but whether it also updates I/O data or not I have no idea.
If that doesn't work have you tried selecting the zone tool, then Ctrl+A to select all the zones on that storey, then click the properties/settings button and 'OK' it without making any changes?
Anonymous
Not applicable
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2008-11-27 10:54 AM
2008-11-27
10:54 AM
Peter wrote:Much to my surprise - it does not
Hi Jonathan,
Does 'Update Zones' on the Design menu work? I know this updates the figures it reads from the zone, but whether it also updates I/O data or not I have no idea.
Peter wrote:Peter , as I wrote - that's the first thing I tried - does not work.
If that doesn't work have you tried selecting the zone tool, then Ctrl+A to select all the zones on that storey, then click the properties/settings button and 'OK' it without making any changes?
Anonymous
Not applicable
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2008-11-27 09:57 PM
2008-11-27
09:57 PM
Hello,
Are you declaring the values before using the "parameters"-command?
Sometimes the values do not change unless declared first;
myValue = inputValue
parameters myValue = myValue
--
Regards, Juha
Are you declaring the values before using the "parameters"-command?
Sometimes the values do not change unless declared first;
myValue = inputValue
parameters myValue = myValue
--
Regards, Juha
Anonymous
Not applicable
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2008-11-27 11:02 PM
2008-11-27
11:02 PM
Juha wrote:Juha - I had that issue , but i did initialise the variables with some value before reading the data and using the parameters.
Hello,
Are you declaring the values before using the "parameters"-command?
Sometimes the values do not change unless declared first;
myValue = inputValue
parameters myValue = myValue
--
Regards, Juha
Thanks , Jonathan