Ask a Question related to Macromedia Flex General Discussion, Design and Development.
-
Freestyle MD #1
URLRequest problem
The following statement :-
<mx:click>navigateToURL(new
URLRequest('http://web.artprice.com/classifieds/fineart/details.aspx?id=378866&i
mg=NDA5NTg0NTMyNTAyMjkyMi0=&source=store'), 'quote')</mx:click>
gives me the error - The reference to entity "img" must end with the ';'
delimiter .
The link does work, I've checked, and other links done the same way work, so
I'm hoping that someone could tell me why this one will not compile.
Freestyle MD Guest
-
URLRequest + URLLoader
How can you load a xml file using URLRequest and URLLoader? I tried to find it through the web, but there is very little documentation about this... -
How to use URLRequest to go to a mxml file rather then awebsite?
How to use URLRequest to go to a mxml file rather then a website? -
URLVariables and URLRequest problem
I get the following errors when I try using URLVariables and URLRequest. Can anyone tell me what I'm doing wrong ? The class or interface... -
#21611 [Opn]: Problem with version_compare() (Was: Problem with pear cli and release numbers)
ID: 21611 Updated by: et@php.net -Summary: Problem with pear cli and release numbers Reported By: jan at horde... -
Problem with Apache Web Server config file and PHP (please give advice on what problem may be me)
HI: Can anyone refer me to someone that can help with the problem below. I installed Apache Web Server on my laptop which has Windows XP. I... -
Greg Lafrance #2
Re: URLRequest problem
You need to escape the & with . After I did that I got an error about a
string needing to be terminated, so I did this:
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
xmlns:comp="components.*" width="100%" height="100%">
<mx:Script>
<![CDATA[
public var myvar:String =
'http://web.artprice.com/classifieds/fineart/details.aspx?id=378866 img=NDA5
NTg0NTMyNTAyMjkyMi0= source=store';
]]>
</mx:Script>
<mx:click>navigateToURL(new URLRequest(myvar), 'quote')</mx:click>
</mx:Application>
Greg Lafrance Guest
-



Reply With Quote

