Hello Guest it is March 29, 2024, 12:53:56 AM

Author Topic: New Flash Docs?  (Read 13014 times)

0 Members and 1 Guest are viewing this topic.

Offline ger21

*
  • *
  •  6,295 6,295
    • View Profile
    • The CNC Woodworker
New Flash Docs?
« on: June 30, 2008, 07:48:09 PM »
Any ETA on the new documentation?
Gerry

2010 Screenset
http://www.thecncwoodworker.com/2010.html

JointCAM Dovetail and Box Joint software
http://www.g-forcecnc.com/jointcam.html

Offline zealous

*
  •  489 489
  • HI!
    • View Profile
    • Artsoft Solutions
Re: New Flash Docs?
« Reply #1 on: July 28, 2008, 01:17:06 PM »
John Guenther
'Ye Olde Pen Maker'
Sterling, Virginia
 
will be doing the documantation I am not sure on the ETA.
« Last Edit: July 28, 2008, 08:41:25 PM by zealous »

Offline ger21

*
  • *
  •  6,295 6,295
    • View Profile
    • The CNC Woodworker
Re: New Flash Docs?
« Reply #2 on: July 28, 2008, 02:02:21 PM »
Thanks, Jason. I thought you were doing them. John posts on the Yahoo group, So I'll check there. Thanks again.
Gerry

2010 Screenset
http://www.thecncwoodworker.com/2010.html

JointCAM Dovetail and Box Joint software
http://www.g-forcecnc.com/jointcam.html
Re: New Flash Docs?
« Reply #3 on: July 28, 2008, 07:24:17 PM »
I am working on the Flash documentation, I have worked out a tentative schedule with Brian Barker to have them done by the end of the year.  I plan on producing a set of documents that are aimed at Mach3 Flash screens, they will not be a "how to program in Flash" tutorial, there plenty of books on Flash already.  The idea here is to provide examples of how to use flash with Mach3 to produce screens.

If any of you have examples that you think would be nice to have in the documentation, please contact me off list at j.guenther@verizon.net. 

Thanks,

John Guenther
'Ye Olde Pen Maker'
Sterling, Virginia.

Offline lemo

*
  •  135 135
    • View Profile
Re: New Flash Docs?
« Reply #4 on: November 09, 2008, 08:45:30 PM »
Why not simply a wiki... Fills continuously and doesn't (well... should not...) get out of sync with the releases and or product updates.
Lemo
Cut five times and still to short...

Offline poppabear

*
  • *
  •  2,235 2,235
  • Briceville, TN, USA
    • View Profile
Re: New Flash Docs?
« Reply #5 on: November 10, 2008, 09:46:05 AM »
John,

   Note to let users know to NOT use the "Refreash" functions on screens with a lot of LEDs, as of hard experience this WILL crash Mach3.  Jason said to individually control each LED so that only those that change will update, on the page or when landing on the page.

Here is an example for the X axis LED.

//////////////////////////////////////////////////////////////////////////////////LED XAXIS///
if (LED807 == 0) {
  gotoAndStop("green");
 } else {
  gotoAndStop("red");
 }

this.XAXISFunction = function(varName, oldVal, newVal) {
 if (newVal == 0) {
  gotoAndStop("green");
 } else {
  gotoAndStop("red");
 }
 return newVal;
};
_root.watch("LED807", this.XAXISFunction);
//END SCRIPT

//scott
fun times

Offline poppabear

*
  • *
  •  2,235 2,235
  • Briceville, TN, USA
    • View Profile
Re: New Flash Docs?
« Reply #6 on: November 13, 2008, 12:37:33 AM »
Jason informed me that the "Refreash" is not necessarily wrong, but, doing the individual LEDs as above is a Better, more effecient way to do it.

scott
fun times
Re: New Flash Docs?
« Reply #7 on: November 13, 2008, 07:11:52 AM »
Why not simply a wiki... Fills continuously and doesn't (well... should not...) get out of sync with the releases and or product updates.
Lemo


Thanks for your suggestion, I will discuss the wiki idea with Brian and see what he thinks.  I imagine it will be an initial document and perhaps a wiki as well.

John Guenther
'Ye Olde Pen Maker'
Sterling, Virginia

Offline lemo

*
  •  135 135
    • View Profile
Re: New Flash Docs?
« Reply #8 on: November 13, 2008, 02:33:47 PM »
Jason informed me that the "Refreash" is not necessarily wrong, but, doing the individual LEDs as above is a Better, more effecient way to do it.

scott


It's always correct to minimize system impact to save the cpu some time. I think your hint not to use the 'blanket' function but to address each LED on it's own is a good advice. Bad for lazy coders, good for the system 8)
L
Cut five times and still to short...