RE: Problem with Alagad Image Component

2006-01-09 Thread Andy Matthews
The Alagad component is encrypted, unless you purchased the unencrypted
version (which costs more I believe).

!//--
andy matthews
web developer
ICGLink, Inc.
[EMAIL PROTECTED]
615.370.1530 x737
--//-

-Original Message-
From: Michael Clayton [mailto:[EMAIL PROTECTED]
Sent: Sunday, January 08, 2006 6:58 PM
To: CF-Talk
Subject: Re: Problem with Alagad Image Component


Oh, that's another thing I forgot to mention.  When I open the CFC, it's
completely garbled.  ø¶ç~z¢PM‚6ͨpWÐSÅX]Mi°Zšæ!r7æ`ÙJè0
that kind of
thing.  Could that have anything to do with it using java?

On 1/8/06, Matthew Walker [EMAIL PROTECTED] wrote:

 It's an error in the CFC.

 Search for this line:

 cfif arguments.y LT 0 OR arguments.x GTE getHeight()

 Replace with:

 cfif arguments.y LT 0 OR arguments.y GTE getHeight()


 -Original Message-
 From: Michael Clayton [mailto:[EMAIL PROTECTED]
 Sent: Monday, 9 January 2006 10:16 a.m.
 To: CF-Talk
 Subject: Problem with Alagad Image Component

 I've been testing out Alagad Image Component and it's been great.
 However, I'm having one peculiar problem.

 Here is my setup:
 http://www.twilighted.com/clayto/design/alagad/pixelcolor.cfm

 As you can see, when you click on the image, it returns the coordinates
 of the click in the URL, and Alagad turns those coordinates into RGB,
 and a handy script turns RGB into Hex.

 However, if you click too far to the right on the image, it returns this
 strange error:  Invalid y attribute.  The y attribute must be greater
 than or equal to 0 and less than the image height.

 Both of those conditions are met, but the error still crashes my party.
 Any ideas?  I've been working on this for hours and can't make any
 headway.










~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:228847
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Problem with Alagad Image Component

2006-01-08 Thread Matthew Walker
It's an error in the CFC.

Search for this line:

cfif arguments.y LT 0 OR arguments.x GTE getHeight()

Replace with:

cfif arguments.y LT 0 OR arguments.y GTE getHeight()


-Original Message-
From: Michael Clayton [mailto:[EMAIL PROTECTED] 
Sent: Monday, 9 January 2006 10:16 a.m.
To: CF-Talk
Subject: Problem with Alagad Image Component

I've been testing out Alagad Image Component and it's been great.
However, I'm having one peculiar problem.

Here is my setup:
http://www.twilighted.com/clayto/design/alagad/pixelcolor.cfm

As you can see, when you click on the image, it returns the coordinates
of the click in the URL, and Alagad turns those coordinates into RGB,
and a handy script turns RGB into Hex.

However, if you click too far to the right on the image, it returns this
strange error:  Invalid y attribute.  The y attribute must be greater
than or equal to 0 and less than the image height.

Both of those conditions are met, but the error still crashes my party.
Any ideas?  I've been working on this for hours and can't make any
headway.






~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:228780
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Problem with Alagad Image Component

2006-01-08 Thread Michael Clayton
Oh, that's another thing I forgot to mention.  When I open the CFC, it's
completely garbled.  ø¶ç~z¢PM‚6ͨpWÐSÅX]Mi°Zšæ!r7æ`ÙJè0 that 
kind of
thing.  Could that have anything to do with it using java?

On 1/8/06, Matthew Walker [EMAIL PROTECTED] wrote:

 It's an error in the CFC.

 Search for this line:

 cfif arguments.y LT 0 OR arguments.x GTE getHeight()

 Replace with:

 cfif arguments.y LT 0 OR arguments.y GTE getHeight()


 -Original Message-
 From: Michael Clayton [mailto:[EMAIL PROTECTED]
 Sent: Monday, 9 January 2006 10:16 a.m.
 To: CF-Talk
 Subject: Problem with Alagad Image Component

 I've been testing out Alagad Image Component and it's been great.
 However, I'm having one peculiar problem.

 Here is my setup:
 http://www.twilighted.com/clayto/design/alagad/pixelcolor.cfm

 As you can see, when you click on the image, it returns the coordinates
 of the click in the URL, and Alagad turns those coordinates into RGB,
 and a handy script turns RGB into Hex.

 However, if you click too far to the right on the image, it returns this
 strange error:  Invalid y attribute.  The y attribute must be greater
 than or equal to 0 and less than the image height.

 Both of those conditions are met, but the error still crashes my party.
 Any ideas?  I've been working on this for hours and can't make any
 headway.






 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:228785
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Problem with Alagad Image Component

2006-01-08 Thread Baz
If you have a CFC within another CFC you could save it as either:
   
   1. variables.InsideCFC OR
   2. this.InsideCFC

I am fully aware the differences between the 2 scopes and I'm sure most
people would say that it is better to save it in the variables scope.

However I see a lot of people doing this:

   - OutsideCFC.getInsideCFC().PerformMethod()

A method is defined in the OutsideCFC to return the entire InsideCFC thereby
exposing all its methods.  Is that not the same thing as just having it
directly accessible in the THIS scope? Not to mention that your calls would
look nicer:

   Nicer: OutsideCFC.InsideCFC.PerformMethod()
   Uglier: OutsideCFC.getInsideCFC().PerformMethod()

Cheers,
Baz




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:228788
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Problem with Alagad Image Component

2006-01-08 Thread Michael Clayton
Good information, but I don't make the connection between that and my
scrambled CFC.  Maybe I'm daft. :)

On 1/8/06, Baz [EMAIL PROTECTED] wrote:

 If you have a CFC within another CFC you could save it as either:

1. variables.InsideCFC OR
2. this.InsideCFC

 I am fully aware the differences between the 2 scopes and I'm sure most
 people would say that it is better to save it in the variables scope.

 However I see a lot of people doing this:

- OutsideCFC.getInsideCFC().PerformMethod()

 A method is defined in the OutsideCFC to return the entire InsideCFC
 thereby
 exposing all its methods.  Is that not the same thing as just having it
 directly accessible in the THIS scope? Not to mention that your calls
 would
 look nicer:

Nicer: OutsideCFC.InsideCFC.PerformMethod()
Uglier: OutsideCFC.getInsideCFC().PerformMethod()

 Cheers,
 Baz




 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:228793
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Problem with Alagad Image Component

2006-01-08 Thread Dave Watts
 Oh, that's another thing I forgot to mention.  When I open 
 the CFC, it's completely garbled.  ø¶ç~ 
 z¢PM‚6ͨpWÐSÅX]Mi°Zšæ!r7æ`ÙJè0 that 
 kind of 
 thing.  Could that have anything to do with it using java? 

I suspect that it's encrypted.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:228797
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54