E4X is an extension to ECMAScript which allows for convenient handling of XML.

learn more… | top users | synonyms

0
votes
1answer
31 views

Filter XML with E4X

I have this XML: public var translations:XML = <translations> <firstName> <en>first name</en> ...
1
vote
1answer
23 views

E4X - Retrieve element without retrieving its children

Given a XML object, how could I retrieve only the root element without retrieving together its children? E.g.: var exampleXml = new XML("<parent ...
1
vote
2answers
29 views

Finding the value of an XML node in an array

Why is @assigned always 0? var gates:XML = <gates> <gate_id> 10991 </gate_id> <gate_id> 10999 </gate_id> <gate_id> 11000 ...
0
votes
2answers
25 views

How to access element by an object's field in Actionscript-3 E4X dot operation?

In Actionscript 3, we can access a XML object in a E4X style like: var a:XML = <book> <title>ABC</title> </book>; trace(a.title); But what if we get the tag ...
2
votes
1answer
244 views

Mirth java code to conditionally change a field

I'm using Mirth to read HL7 messages from our DB and send them out to a client's EMR. This particular EMR requires that the OBR and OBX for the embedded PDF are formatted a specific way. If OBR.4.1 ...
1
vote
1answer
40 views

How to dynamically add attribute and value to E4X object in Javascript(Compiled on Rhino)?

I want to create an e4x object. The I want to dynamically keep adding attributes for it and also add value later. e.g var node = <node />; //some code 1) add attribute to 'node' 2) add value to ...
1
vote
1answer
151 views

My Greasemonkey script stopped working after something updated

I had made a Greasemonkey script for StumbleUpon, and it worked. But suddenly, maybe after a Mozilla or Scriptish update, it stopped working on all protocols. Please review my script for a mistake. ...
3
votes
1answer
77 views

Alfresco scoped webscript configuration, can it be loaded into an E4X object?

I'm looking to use a scoped configuration file in an Alfresco javascript webscript. I started with this wiki page, and it got me mostly there. This jira page told me I needed to create a file ...
1
vote
1answer
264 views

Greasemonkey scripts worked in Firefox 16.0.2 but not in version 17.0.1 or later? [closed]

I have old userscripts with jQuery that work fine in Firefox 16, but stopped working with the Firefox 17 release. So, I was using version 16.0.2 until today when I tried to upgrade to 18 and the same ...
2
votes
2answers
70 views

Flex 4: XML Literals with conditions

Is there any way to do something like the following (pseudocode) in Flex: var x:XML = <xml> if(condition){ <tag>hello</tag> } </xml>; which would return ...
0
votes
0answers
37 views

Accessing CDATA content using e4x

I have a xml content like this, <definition> <dsXMLConfiguration><![CDATA[<configuration xmlns:xml="http://www.w3.org/XML/1998/namespace"><driverClassName> ...
1
vote
1answer
228 views

How do I import this Greasemonkey script, that uses CDATA, to Chrome?

I've got following code that works fine on Greasemonkey but not in Chrome: // ==UserScript== // @name SO // @namespace stackoverflow.com // @include *stackoverflow.com/* // @version ...
0
votes
0answers
21 views

How to select elements with nested namespaces and name of type <category1:category2>?

I have an XML with the following structure: <mainContainer> <list xmlns='namespace1'> <title>list title</title> <element> <title>Element 1 ...
1
vote
0answers
54 views

Performing image scrapping using YQL with lowest resources usage possible i.e. lowest number of queries

I am trying to perform some image scrapping tool which enables the user to scrap all the images contained within a given page using xpath process the scrapped images to find which have an alt tags and ...
0
votes
2answers
133 views

How I can use EX4 with an attribute containing dash character?

Having this code var images:XML = <elements> <el data-custom="abc"/> <el data-custom="def"/> <el data-custom="ghi"/> </elements> How ...
1
vote
2answers
47 views

Syntax error in E4X

I'm doing a Flash project, in it I'm trying to retrieve information from this xml tree, using a for loop: <game playGame="true" name="peopleNames" id="1"> <category publish="pubTrue" ...
0
votes
1answer
55 views

could not be able to get image from url and set to image view in flex

Any body help me I want to get image from yahoo weather rss and set the source of my flex component, I'm now able get other data from yahoo weather rss but still not able to get image please help me ...
0
votes
1answer
271 views

ReferenceError: Error #1065: Variable is not defined when searching for a node by attribute

I've done this lot of times, but now I'm missing something.... I'm searching for a node by looking for a value in an attribute. If I try to trace: ...
0
votes
1answer
96 views

Weird behavior with E4X filtering in Flash Builder 4.6

I am having a very weird behavior in my program, and after trying many things and searching here for a possible answer but without success, I decided I'll ask here as a new question. So here is my ...
1
vote
2answers
157 views

Javascript E4X - Return the text of node and its children?

I'm trying to parse some of html where there is are repeating lines of code such as: <a>This is <span>some text</span> but its <span>not grabbing the span</span> ...
0
votes
1answer
118 views

How do I remove a node with e4x based on a property?

I have a simple example var myXML:XML = <root> <element type="a">I am a</element> <element type="b">I am b</element> </root> ; I cant work out how I can ...
0
votes
1answer
75 views

Can I just use e4x or do I need regex also?

I have some XML that needs to be manipulated into a string to render some instructions. The text looks like this <?xml version="1.0" encoding="UTF-8"?> <instructions id="detection" ...
0
votes
1answer
178 views

AS3: Using E4X double-colon operator with namespace stored in object

Given the following sample XML (here I am showing hard-coded, but normally I load from an external file): var myXML:XML = new XML(' <xmlout xmlns:ns1="http://some.namespace.com/ns1" ...
1
vote
1answer
375 views

How to decode HTML entities

I have string variable with HTML entities: var str = 'Some text &#x26; text'; I want to convert (decode) it to original characters: Some text & text. JavaScript doesn't have built-in ...
1
vote
1answer
144 views

CouchDB & E4X for documents containing XML

I have a CouchDB database (v1.2.0) with documents like: { "_id": "pages/1", "_rev": "15-56ad5a5e879206edb04a7a62105dd25d", "content": "<html lang=\"en\"><head><title>Page ...
0
votes
2answers
105 views

AS3 E4X get tag properties independant of tag capitalisation

how can I retrieve the properties of an xml tag independant of whether the property name is written in capital letters or not? currently i do something like: myXML = new XML(...); ...
0
votes
2answers
599 views

Why is CDATA needed and not working everywhere the same way?

In Firefox's and Chrome's consoles, this works (alerts script content): var script = document.createElement("script"); script.textContent = ( function test() { var a = 1; } ); ...
0
votes
1answer
97 views

Dynamic E4X expressions

My last Q: E4X select Nodes where descendants can be either A OR B or A && B was concerning how to query for multiple attribute values in E4X expressions, which @Patrick answered with this: ...
4
votes
2answers
180 views

E4X select Nodes where descendants can be either A OR B or A && B

So I have this XML structure: <Items> <Item name="aaa"> <ProductRanges> <ProductRange id="1" /> </ProductRanges> </Item> <Item name="bbb"> ...
0
votes
2answers
829 views

Abstract way to get a XMLList of child nodes by name

I'm trying to build an abstract method to get all the nodes in an XML object by node name. I don't know the structure of the XML ahead of time. So with this code I would like to get a list of all ...
0
votes
1answer
45 views

How can I create lists with Parent items of child attributes using E4X?

I'm having trouble getting the results I want using E4X to dig into my XML document. For exampleWhat I want to do, using the XML below, is find all of the d_locations that have the d_type SW, and then ...
0
votes
1answer
197 views

E4x delete node where something in the node equals something

So I have some xml.... <parentnode> <childnode> <babynode id="1"> <parameter>goes here</parameter> <babynode /> <childnode /> <parentnode /> ...
1
vote
2answers
85 views

Get last appearance of a node

Given <nodeList> <crazyNode>Data to be overwrited</crazyNode> <simpleNode>Normal data</simpleNode> <crazyNode>Actual data</crazyNode> ...
0
votes
1answer
147 views

Flex XML E4X Checking for atribute==value

So I've got an xml like this stored in a variable in Flex AS3 var xm:XML=<licenses> <license id="7" name="No known copyright restrictions" ...
2
votes
1answer
740 views

Select json object based on key value pair

This might be a noob question, but I'm wondering if there's a way to select a json object without having to loop through key value pairs. I've done similar things with e4x, but I'm not sure how to do ...
1
vote
1answer
106 views

JavaScript + E4X: how to test if an element has text nodes?

In E4X, I know how to test if an element has a particular attribute, but how do I test if an element has text nodes? js>x = <foo><bar /><baz attr1="123" /><quux>some random ...
3
votes
1answer
88 views

Are there any syntactic differences between ECMA-262 and ECMA-357?

I'm writing a JavaScript parser based on ECMA-262. I'd be interested to know how much I'd need to change to make it ECMA-357 compatible. Are there any syntactic differences?
0
votes
3answers
1k views

Access XML Child Nodes Dynamically E4X ActionScript 3

I want to create a utility function that requires accessing XML children nodes dynamically. Sample XML: var xml:XML = <root> <section> <lt target='foo'/> ...
0
votes
1answer
254 views

javascript + e4x: how to test if an element is empty?

Is there a way to test whether an XML element is empty using e4x? e.g. if I have an element <foo />, I want to return true, but if I have another element that has any attributes, child ...
1
vote
2answers
106 views

XML Variables don't allow inspection in IntelliJ 11 Flex Debugger

I recently upgraded to IntelliJ 11 and the version 10 debugger used to allow for E4X / XML debugging. I was able to expand the children and inspect elements/attributes of XML but now I can't get that ...
0
votes
1answer
110 views

Dealing with namespaces in E4X

I'm trying to get data from a namespaced xml file in a flex app. There is a root namespace (xmlns="blah") and another namespace (xmlns:i="blah"), and I'm able to access most tags using the following: ...
0
votes
2answers
219 views

Using E4X to find distinct values in an XML list

Consider this XML snippet: <book id="5" /> <book id="15" /> <book id="5" /> <book id="25" /> <book id="35" /> <book id="5" /> How can I compose an E4X ...
1
vote
1answer
248 views

Getting xml:id attribute using XML object

I'm processing XML using Rhino 1.7R3 and have trouble accessing xml:id attribute. var bond = new XML('<person xml:id="007" profession="agent">James Bond</person>'); print(bond); // "James ...
1
vote
1answer
746 views

Rhino 1.7r2-3 E4X “XML” is not defined

I couldn't run following code using JDK 6. It throws an exception: Exception in thread "main" org.mozilla.javascript.EcmaError: ReferenceError: "XML" is not defined. My environment is following: ...
0
votes
1answer
214 views

Java ScriptEngine for Javascript: using XML

As I noticed on oracle.com that Java has no support for XML literal in E4X implementation. The question is: Is there any other way to process XML in JavaScript with Java Rhino ScriptEngine?
1
vote
2answers
321 views

XML, namespaces and E4X

Can someone explain me what exactly namespaces (xmlns="...") in XML are for and how they have to be used in navigating an XML using E4X (..preferrably in ActionScript 3)? I fail to fully understand ...
2
votes
1answer
623 views

object detection in flash using haar-like feature

In OpenCV, we can use a xml file to describe haar-like features of a specific object. I wanna use this idea to detect palm and fist, now I hava my own xml feature file, and it works well in C and ...
1
vote
1answer
299 views

how to programmatically remove an attribute completely in flex?

I am experimenting with e4x. I could programmatically add an attribute to an Xml by doing something like this : xml.@name = 'jerry'; now i have added a name attribute to it programmatically because ...
0
votes
0answers
255 views

E4X Parsing with HTTP Request Response XML

I put together a simple XML schema for a directory (address-book) markup system. The basic structure is as follows: <?xml version="1.0" encoding="UTF-8"> <directory ...
1
vote
1answer
236 views

Rhino E4X does not allow xml literal in {expression}

I am using rhino1_7R2. I have found that the following program causes syntax error(illegally formed XML syntax): function b(node) { return <span>{node}{node}</span>; } ...

1 2 3 4 5