Welcome, Guest |
You have to register before you can post on our site.
|
Forum Statistics |
» Members: 4,999
» Latest member: TSAI
» Forum threads: 5,993
» Forum posts: 50,711
Full Statistics
|
Online Users |
There are currently 536 online users. » 0 Member(s) | 533 Guest(s) Baidu, Bing, Google
|
Latest Threads |
Duplo 31070
Forum: Parts Authoring
Last Post: Gerald Lasser
2 hours ago
» Replies: 2
» Views: 53
|
Make Part 45590 Flexible
Forum: Parts Authoring
Last Post: Gerald Lasser
11 hours ago
» Replies: 0
» Views: 47
|
Request for parts 2438pb0...
Forum: Part Requests
Last Post: Vito Tarantini
Yesterday, 18:56
» Replies: 0
» Views: 57
|
Friends Fawn 13393
Forum: Part Requests
Last Post: Takeshi Takahashi
Yesterday, 16:16
» Replies: 6
» Views: 710
|
Friends Animal Series
Forum: Official Models
Last Post: Takeshi Takahashi
Yesterday, 15:53
» Replies: 20
» Views: 5,365
|
MLCad.ini 2025-04 update ...
Forum: LDraw.org Announcements
Last Post: Willy Tschager
Yesterday, 12:48
» Replies: 0
» Views: 71
|
Inquiry about the new sof...
Forum: LDraw Editors and Viewers
Last Post: Gerald Lasser
2025-05-11, 20:42
» Replies: 3
» Views: 296
|
LDView 4.6 Released
Forum: LDraw Editors and Viewers
Last Post: Travis Cobbs
2025-05-11, 6:44
» Replies: 6
» Views: 428
|
Parts request
Forum: Part Requests
Last Post: Takeshi Takahashi
2025-05-11, 0:20
» Replies: 1
» Views: 343
|
LDraw Part Naming Stylegu...
Forum: Official File Specifications/Standards
Last Post: N. W. Perry
2025-05-09, 11:49
» Replies: 12
» Views: 1,096
|
|
|
Persistent forum logins gone? |
Posted by: Jean-Philippe Ouellet - 2011-12-10, 20:10 - Forum: Website Suggestions/Requests/Discussion
- Replies (9)
|
 |
Did someone recently change cookies from expiring on a certain date to lasting for one browser session?
I'm pretty sure its not just my browser because four browsers across two systems all report the forum login cookie being valid only for the current login session, whereas before they were set to expire at a set date far (I forget exactly when) in the future, while those same browsers also have cookies that were set a long time ago and will be valid for a long time, and I haven't changed settings on any of those four (different) browsers recently. So I'm pretty sure a setting was changed in the forum software.
If I am mistaken and I am the only one exhibiting this behavior, then please excuse me and ignore this post. If not, I would appreciate it if we could still have persistent logins back, even if the cookies expire sooner.
If it is a question of security (people stealing cookies from logins on public computers, and then impersonating us on the forums), then perhaps could we have an option when logging in to set the duration of the session?
|
|
|
Sticker dimension errors |
Posted by: Chris Dee - 2011-12-09, 20:59 - Forum: Parts Authoring
- Replies (9)
|
 |
In the final stages of putting together the 2011-01 Parts Update, I mistakenly transposed the dimensions of some of the sticker parts, using "Sticker X-dimension x Z-dimension ...", instead of putting the Z-dimension first.
I'd like to correct these, but does anyone feel they need to be cycled through the Parts Tracker to do this?
|
|
|
Underside stud group scaling |
Posted by: Travis Cobbs - 2011-12-09, 0:13 - Forum: Standards Board
- Replies (1)
|
 |
As Tore just pointed out, if stud groups are ever created for underside studs, then they should probably be allowed to be scaled in the Y axis so that the same stud groups can be used for both plates and bricks. I suggest that we add the text that just passed (4 YES votes as of now), then come up with a modification of the wording to allow for scaling in the Y axis for stud groups used on the underside of bricks/plates/tiles.
|
|
|
Applescript to "center" in Bricksmith |
Posted by: Ramón Figueroa-Centeno - 2011-12-08, 23:59 - Forum: LDraw Editors and Viewers
- Replies (2)
|
 |
Aloha,
Below is an Applescript to "center" parts in Bricksmith. It computes the averages, denoted x, y, and z, of the coordinates of the selected parts and then shifts -x, -y and -z (and snaps to grid).
It requires UI Scripting to be on (and does not check if it is).
Enjoy!
Ramón
Code: property wait : 2 -- seconds to wait for Bricksmith to react
set the clipboard to "0"
activate application "Bricksmith"
tell application "System Events"
tell process "Bricksmith"
-- Copy
keystroke "c" using {command down}
end tell
end tell
-- Wait for the clipboard to update "wait" seconds
repeat wait * 10 times
if (the clipboard) is "0" then
delay 0.1
else
exit repeat
end if
end repeat
if (the clipboard) is not "0" then
set parts to the clipboard as text
try
set oldDelims to AppleScript's text item delimiters -- save their current state
set AppleScript's text item delimiters to {" "} -- declare new delimiters
set n to 0
set x to 0
set y to 0
set z to 0
repeat with part in paragraphs of parts
try
if text item 1 of part is "1" then
set n to n + 1
set x to x + (text item 3 of part) as real
set y to y + (text item 4 of part) as real
set z to z + (text item 5 of part) as real
end if
end try
end repeat
if n > 0 then
-- Compute averages
set x to round (x / n)
set y to round (y / n)
set z to round (z / n)
activate application "Bricksmith"
tell application "System Events"
tell process "Bricksmith"
-- Open the "Move" window
click menu item "Move…" of menu 1 of menu bar item "Edit" of menu bar 1
-- Wait for the move window to open "wait" seconds
set flag to false
repeat wait * 10 times
try
get focused of window "Move"
set flag to true
exit repeat
end try
delay 0.1
end repeat
if not flag then
return
end if
-- Type the new x coordinate
if (value of text field 3 of window "Move") is not (-x as string) then
set focused of text field 3 of window "Move" to true
repeat with c in characters of (-x as string)
keystroke c
end repeat
end if
-- Type the new y coordinate
if (value of text field 2 of window "Move") is not (-y as string) then
set focused of text field 2 of window "Move" to true
repeat with c in characters of (-y as string)
keystroke c
end repeat
end if
-- Type the new z coordinate
if (value of text field 1 of window "Move") is not (-z as string) then
set focused of text field 1 of window "Move" to true
repeat with c in characters of (-z as string)
keystroke c
end repeat
end if
-- Move
click button "Move" of window "Move"
-- Close the move window
keystroke "w" using {command down}
-- Snap to grid
keystroke "g" using {command down}
end tell
end tell
end if
set AppleScript's text item delimiters to oldDelims -- restore them
on error
beep
set AppleScript's text item delimiters to oldDelims -- restore them in case something went wrong
end try
else
beep
end if
|
|
|
|