Hello Guest it is March 29, 2024, 05:43:02 AM

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - elpablito

Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 »
41
Works in progress / Re: Flash RU Screen
« on: May 05, 2010, 07:44:40 PM »
Fabrice,

For some reason mach is not loading your gcode file. If you check at your screen captures where the file name should be it reads "No File Loaded"
The code is loaded by flash independant of mach, thats why you can see it, but you cant run it because mach did not load anything.
Check if the same happens with the sample code files that come with mach like Scorpion or roadrunner.
When in the load screen, when you press on a file you should see the toolpath preview.
Also please send me the gcode file you are trying to load so i can use it to correct the bug

Regards
Pablo

42
Works in progress / Re: Flash RU Screen
« on: May 05, 2010, 05:51:55 PM »
Hi Fabrice,

I have intentionally disabled the MDI button because that screen is not yet finished.

I will look into your problem to see if I can reproduce it here. I think it may be related to mach configuration.

Thanks

43
Works in progress / Re: Flash RU Screen
« on: May 05, 2010, 12:52:19 AM »
This is V1.31

44
General Mach Discussion / Re: X- Axis times out
« on: May 05, 2010, 12:25:32 AM »
If all drivers are the same. I would start by switching the X and Y driver board to know if it is a hardware problem.
If the problem persist with X I would think of something related to mach configuration.
If the error changes to Y axis i would suspect of the driver board.

Regards

45
Spanish / Re: El mach3 me corta pero no respeta las medidas
« on: May 05, 2010, 12:22:10 AM »
Lo mas probable es que tengas mal configurados los motores.
Entra en Motor Tuning y asegurate de que los steps/unit sean correctos.

Saludos

46
Works in progress / Re: Flash RU Screen
« on: May 05, 2010, 12:17:00 AM »
V1.31
This version corrects the problem of the C: being hardcoded.
I added drive selection capability. When you close mach, the last path used is remembered so you dont have to browse for your code folder everytime.
Also added the version textbox at the bottom right corner of the load screen.

Please report any bug you may found and I will correct them asap.

Thanks


47
Works in progress / Re: Flash RU Screen
« on: May 03, 2010, 07:25:58 PM »
Hi Fabrice, thanks for testing.
Youre right I have that C:\ setting hard coded. I will correct that and repost in this forum

Regards

48
Feature Requests / Re: Single Block while in a canned cycle
« on: April 29, 2010, 06:48:47 PM »
I asked about that problem twice and got no solution. Hope you have better results

49
Works in progress / Re: Flash RU Screen
« on: April 29, 2010, 12:31:23 PM »
Right zealous, thats what I do.
Except that I read all the macros that are listed in the RUCONFIG.INI file and store them. Then I can call them by their name when i need them.

Code: [Select]
var inifile:LoadVars = new LoadVars();
var macrofile:LoadVars = new LoadVars();
var varname:String = "";
var gcodelines:Array;
var mindex:Number;
var timreadmacro:Number;

inifile.load("RUCONFIG.INI");

macrofile.onData = function(macrotext:String) {
_root[varname] = macrotext;
ReadNextIniLine();
};

function ReadNextIniLine() {
var readstarted:Boolean;
do {
readstarted = false;
if (mindex<gcodelines.length) {
var linea:String = gcodelines[mindex++].toUpperCase();
if (linea.substr(0, 2) != "//") {
var igualpos:Number = linea.indexOf("=");
if (igualpos>0) {
var thisvar = linea.substr(0, igualpos);
var vcontent:String = linea.substr(igualpos+1);
if (linea.substr(0, 5) == "MACRO") {
readstarted = true;
varname = thisvar;
macrofile.load(_root["PATHMACROS"]+vcontent);
}
else {
_root[thisvar] = vcontent;
}
}
}
} else {
readstarted = true;
}
} while (readstarted == false);
}

inifile.onData = function(gcodetext:String) {
gcodelines = gcodetext.split("\r\n");
mindex = 0;
ReadNextIniLine();
};


function CallMacro(macro:String) {
var mt:String = _root[macro.toUpperCase()];
macrocode.text = mt;
fscommand("VBMacro", mt);
}

50
Works in progress / Re: Flash RU Screen
« on: April 28, 2010, 09:23:41 PM »
Hi FXG,

I was changing the code to allow for external macros. It took me some time cause im very new to flash and each thing I want to achieve I first have to learn how.
Its better a rant for not sharing than a rant for damaging your cnc...

Thanks for trying it

Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 »