Author Topic: Some of my buttons don't work v5.1.0.3  (Read 10838 times)

0 Members and 1 Guest are viewing this topic.

It's Alive!

  • Retired
  • Needs a day job
  • Posts: 8700
  • AKA Daniel
Some of my buttons don't work v5.1.0.3
« on: April 14, 2009, 11:26:52 PM »
Some of my buttons don't work, I can't see what I'm doing wrong 
v5.1.0.3


ps I copied and pasted those three from the top one  :angel:

Kerry

  • Mesozoic relic
  • Seagull
  • Posts: 11654
  • class keyThumper<T>:ILazy<T>
Re: Some of my buttons don't work v5.1.0.3
« Reply #1 on: April 14, 2009, 11:43:15 PM »

I've been in bed with a weird head so I may not be seeing this correctly ...

Have you selected the Click event for each event in the editor you want to use ...
kdub, kdub_nz in other timelines.
Perfection is not optional.
Everything will work just as you expect it to, unless your expectations are incorrect.
Discipline: None at all.

MP

  • Seagull
  • Posts: 17750
  • Have thousands of dwgs to process? Contact me.
Re: Some of my buttons don't work v5.1.0.3
« Reply #2 on: April 14, 2009, 11:50:02 PM »

I've been in bed with a weird head ...

Does it respond to your voice?



































Hope you get better soon. :)
Engineering Technologist • CAD Automation Practitioner
Automation ▸ Design ▸ Drafting ▸ Document Control ▸ Client
cadanalyst@gmail.comhttp://cadanalyst.slack.comhttp://linkedin.com/in/cadanalyst

It's Alive!

  • Retired
  • Needs a day job
  • Posts: 8700
  • AKA Daniel
Re: Some of my buttons don't work v5.1.0.3
« Reply #3 on: April 14, 2009, 11:50:37 PM »
Yes, I did add the event, and copied the source to my lisp file.
I have tried replacing the three offending buttons, now one more seems to work.


It's Alive!

  • Retired
  • Needs a day job
  • Posts: 8700
  • AKA Daniel
Re: Some of my buttons don't work v5.1.0.3
« Reply #4 on: April 14, 2009, 11:52:17 PM »
Hey wait, was it not toggled when you opened my file?

Kerry

  • Mesozoic relic
  • Seagull
  • Posts: 11654
  • class keyThumper<T>:ILazy<T>
Re: Some of my buttons don't work v5.1.0.3
« Reply #5 on: April 14, 2009, 11:54:01 PM »

I've been in bed with a weird head ...

Does it respond to your voice?
< .. >

what a sick joke

 :-P
kdub, kdub_nz in other timelines.
Perfection is not optional.
Everything will work just as you expect it to, unless your expectations are incorrect.
Discipline: None at all.

Kerry

  • Mesozoic relic
  • Seagull
  • Posts: 11654
  • class keyThumper<T>:ILazy<T>
Re: Some of my buttons don't work v5.1.0.3
« Reply #6 on: April 14, 2009, 11:55:05 PM »
Hey wait, was it not toggled when you opened my file?

nope ...

may still be a buglet though ...
kdub, kdub_nz in other timelines.
Perfection is not optional.
Everything will work just as you expect it to, unless your expectations are incorrect.
Discipline: None at all.

It's Alive!

  • Retired
  • Needs a day job
  • Posts: 8700
  • AKA Daniel
Re: Some of my buttons don't work v5.1.0.3
« Reply #7 on: April 14, 2009, 11:56:34 PM »
hmm they are all checked on my machine.

It's Alive!

  • Retired
  • Needs a day job
  • Posts: 8700
  • AKA Daniel
Re: Some of my buttons don't work v5.1.0.3
« Reply #8 on: April 15, 2009, 12:05:17 AM »
I’ll see if I can get an older editor, are you using the same version a me?

Kerry

  • Mesozoic relic
  • Seagull
  • Posts: 11654
  • class keyThumper<T>:ILazy<T>
Re: Some of my buttons don't work v5.1.0.3
« Reply #9 on: April 15, 2009, 12:16:22 AM »
Drag/Drop Allow Begin

Toggle it OFF for the buttons ..
kdub, kdub_nz in other timelines.
Perfection is not optional.
Everything will work just as you expect it to, unless your expectations are incorrect.
Discipline: None at all.

Kerry

  • Mesozoic relic
  • Seagull
  • Posts: 11654
  • class keyThumper<T>:ILazy<T>
Re: Some of my buttons don't work v5.1.0.3
« Reply #10 on: April 15, 2009, 12:20:51 AM »

a tip ;
for development, change this
  ;; (LoadODCLProjDev "Fields.odcl") 

to this ...
  (dcl_PROJECT_LOAD "Fields.odcl" t)


so the ODCL will reload each time ( to refresh changes )
kdub, kdub_nz in other timelines.
Perfection is not optional.
Everything will work just as you expect it to, unless your expectations are incorrect.
Discipline: None at all.

Kerry

  • Mesozoic relic
  • Seagull
  • Posts: 11654
  • class keyThumper<T>:ILazy<T>
Re: Some of my buttons don't work v5.1.0.3
« Reply #11 on: April 15, 2009, 12:25:15 AM »

A Tip ;
On the Menu Bar=> Tools .. Select Clear Lisp Symbol Names

This will leave the VarName property field empty and the Editor will look after making sure the name is correctly concatenated.
kdub, kdub_nz in other timelines.
Perfection is not optional.
Everything will work just as you expect it to, unless your expectations are incorrect.
Discipline: None at all.

Kerry

  • Mesozoic relic
  • Seagull
  • Posts: 11654
  • class keyThumper<T>:ILazy<T>
Re: Some of my buttons don't work v5.1.0.3
« Reply #12 on: April 15, 2009, 12:28:22 AM »

In your code, and editor, check the Initialise event call

You had
(defun c:Fields_FormFieldset_OnInitialize (/)
in the code

and
(defun c:Fields_FormField_OnInitialize (/)
in the editor

Though this may have been a result of my resetting the events ..  :-(
kdub, kdub_nz in other timelines.
Perfection is not optional.
Everything will work just as you expect it to, unless your expectations are incorrect.
Discipline: None at all.

It's Alive!

  • Retired
  • Needs a day job
  • Posts: 8700
  • AKA Daniel
Re: Some of my buttons don't work v5.1.0.3
« Reply #13 on: April 15, 2009, 12:28:34 AM »
Drag/Drop Allow Begin

Toggle it OFF for the buttons ..


I don’t have that selected

It's Alive!

  • Retired
  • Needs a day job
  • Posts: 8700
  • AKA Daniel
Re: Some of my buttons don't work v5.1.0.3
« Reply #14 on: April 15, 2009, 12:32:01 AM »
Ok , let me try your tips