- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Getting Host information
In the documentation I see that you can use
If( Host is( "Mac" ), ... );
To do something conditionally if the current Host is a Mac, however I do not see any way to get the value of Host and my blind guessing (Host doesn't seem to be accessible on its own and Host Is() without any arguments does not work) has not yet turned anything up. Is there a way for me to access this value?
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Getting Host information
You can set your own Host value
Names Default To Here( 1 );
If( Host is( "Mac" ),
Host="Mac",Host="Windows"
);
Jim
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Getting Host information
You can set your own Host value
Names Default To Here( 1 );
If( Host is( "Mac" ),
Host="Mac",Host="Windows"
);
Jim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Getting Host information
Oh I see thanks, I didn't realize there were only "Mac"/"Windows" and "Bits32"/"Bits64" to check here.