Re: [Flashcoders] help: XfactorStudio XPATH

2006-05-24 Thread Joeri van Oostveen

The Xfactor XPath classes can even be compiled with mtasc (not in
strict setting), it was a newer release, so it could be you are using
an older release.
I did not encounter any problems with XPath when compiling with the Flash IDE.

--
Joeri

On 5/23/06, Merrill, Jason [EMAIL PROTECTED] wrote:

I found out a few weeks ago that the Xfactor Studio XPATH classes were
broken when compiling to Flash 8. Compiling to flash 6 and 7 was ok, but
not 8.

Works just for me.  Are you using an older version of the classes?


Jason Merrill
Bank of America  |  www.bankofamerica.com
Learning  Organization Effectiveness
Technology Solutions


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] help: XfactorStudio XPATH

2006-05-23 Thread Bernard Visscher
var  mySearchTerm:String = HeLlO;
var strXPATH:String = //Localidades/Localidad[contains(upper-case[label],'
+  mySearchTerm.toUpperCase () + ')];

This maybe?

 -Oorspronkelijk bericht-
 Van: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] Namens 
 julian atienza
 Verzonden: dinsdag 23 mei 2006 10:06
 Aan: [EMAIL PROTECTED]; 
 flashcoders@chattyfig.figleaf.com
 Onderwerp: [Flashcoders] help: XfactorStudio XPATH
 
 I'm using basic XPATH4AS2 of XFactor Studio.
 
 I have an XPATH Query like:
 
 var strXPATH:String = //Localidades/Localidad 
 [contains(label, '')];
 
 And it's Ok. Search for '' into the field 'label' and 
 founds several results.
 
 I have seen into class code that there is an upper-case 
 function that i can use to make more useful searchs...
 
 i tried:
 var strXPATH:String =
 //Localidades/Localidad[contains(upper-case[label],
 mySearchTerm.toUpperCase ())];
 
 NO RESULTS...
 
 somebody knows how to use the upper-case function in the example?
 
 I'm implementing in Flash 8 Pro and AS2.0.
 
 Thanks in advance
 

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] help: XfactorStudio XPATH

2006-05-23 Thread Joeri van Oostveen

In a recent project, I used the Macromedia implementation of XPath
instead of the Xfactor XPath.
I can't say which one is better (or faster)...
Although I did have to double check everything because of some small
(syntax) differences..

See the documentation:
http://download.macromedia.com/pub/documentation/en/flash/fl8/XpathAPI.pdf

I didn't miss any functionality not present in one of the
implementations, but that could be because I just do simple extraction
of the xml nodes.

greetings
Joeri

On 5/23/06, Bernard Visscher [EMAIL PROTECTED] wrote:

var  mySearchTerm:String = HeLlO;
var strXPATH:String = //Localidades/Localidad[contains(upper-case[label],'
+  mySearchTerm.toUpperCase () + ')];

This maybe?

 -Oorspronkelijk bericht-
 Van: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] Namens
 julian atienza
 Verzonden: dinsdag 23 mei 2006 10:06
 Aan: [EMAIL PROTECTED];
 flashcoders@chattyfig.figleaf.com
 Onderwerp: [Flashcoders] help: XfactorStudio XPATH

 I'm using basic XPATH4AS2 of XFactor Studio.

 I have an XPATH Query like:

 var strXPATH:String = //Localidades/Localidad
 [contains(label, '')];

 And it's Ok. Search for '' into the field 'label' and
 founds several results.

 I have seen into class code that there is an upper-case
 function that i can use to make more useful searchs...

 i tried:
 var strXPATH:String =
 //Localidades/Localidad[contains(upper-case[label],
 mySearchTerm.toUpperCase ())];

 NO RESULTS...

 somebody knows how to use the upper-case function in the example?

 I'm implementing in Flash 8 Pro and AS2.0.

 Thanks in advance


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] help: XfactorStudio XPATH

2006-05-23 Thread Merrill, Jason
In a recent project, I used the Macromedia implementation of XPath
instead of the Xfactor XPath.

If I could jump in with a side question, I thought I had heard something
about that - can that be published down to the Flash 7 player? I would
assume so if it's just As 2.0 classes, but just thought I would check.


Jason Merrill
Bank of America  |  www.bankofamerica.com
Learning  Organization Effectiveness 
Technology Solutions
 
 
 
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] help: XfactorStudio XPATH

2006-05-23 Thread julian atienza

:(

Sorry. About replies...

1) Bernard Visscher. I posted the sentence bad. I didn't toUpperCase
like literal.

take this literal example if u prefer:
var strXPATH:String =
//Localidades/Localidad[contains(upper-case(fichaLocalidad),' +
TESTING PHRASE + ')];

But no good results anyway...

2)Joeri van Oostveen. Macromedia implementation of XPath have less
functions and functionally. That's because
I'm using XFactor Studio implementation. No contains function. f.e.

3)Merrill, Jason. I didn't understood your mssage.

Thanks anyway :(

Nobody knows the upper-case of XPATH for Xfactor Studio and how can i
use it Thanks
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

Re: [Flashcoders] help: XfactorStudio XPATH

2006-05-23 Thread Mark Llobrera
Julian-

I found out a few weeks ago that the Xfactor Studio XPATH classes were
broken when compiling to Flash 8. Compiling to flash 6 and 7 was ok, but not
8.

-Mark

On 5/23/06 11:23 AM, julian atienza [EMAIL PROTECTED] wrote:

 :(

Sorry. About replies...

1) Bernard Visscher. I posted the sentence bad. I
 didn't toUpperCase
like literal.

take this literal example if u prefer:
  var
 strXPATH:String 
 =
//Localidades/Localidad[contains(upper-case(fichaLocalidad),' +
TESTING
 PHRASE + ')];

But no good results anyway...
  
2)Joeri van Oostveen.
 Macromedia implementation of XPath have less
functions and functionally.
 That's because
I'm using XFactor Studio implementation. No contains
 function. f.e.

3)Merrill, Jason. I didn't understood your mssage.

Thanks
 anyway :(

Nobody knows the upper-case of XPATH for Xfactor Studio and how can
 i
use it Thanks

 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
 
 Brought to you by Fig Leaf Software
 Premier Authorized Adobe Consulting and Training
 http://www.figleaf.com
 http://training.figleaf.com

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] help: XfactorStudio XPATH

2006-05-23 Thread Merrill, Jason
I found out a few weeks ago that the Xfactor Studio XPATH classes were
broken when compiling to Flash 8. Compiling to flash 6 and 7 was ok, but
not 8.

Works just for me.  Are you using an older version of the classes?


Jason Merrill
Bank of America  |  www.bankofamerica.com
Learning  Organization Effectiveness 
Technology Solutions
 
 
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com