[advanced search]
 

Go Back   NamePros.com > Discussion > Web Design & Development > Programming

Programming PHP, Perl, Ruby on Rails, AJAX, HTML, XHTML, CSS, JavaScript, MySQL and any other coding topics.


Closed Thread
 
LinkBack Thread Tools
Old 04-18-2004, 12:31 PM   #1 (permalink)
New Member
 
Join Date: Mar 2004
Location: Milwaukee, WI
Posts: 2
3.00 NP$ (Donate)

Cryptic is an unknown quantity at this point


flash & XML problem

I'm using this Bounce Menu from http://www.faithornstudios.com/

I am having a little problem with trying to use anchor tags inside the XML. My XML skills are slim to none since this is the first time I’ve used it at all. I can not seem to get XML, or maybe it’s Flash, to pass the “#” symbol to the browser.

The first line (Liquid Rheostats) will just pass “products.html” to browser. The “#rheostats” just gets dropped.

So I tried using the
Code:
& # 0 3 5 ;  (minus the spaces, it was getting parsed to the # sign)
which is the unicode (I think that’s what you would call it) for the # sign. That did the same thing as above.



Code:
	<button name = "Products">
		<subitem name = "Liquid Rheostats" location="products.html#rheostats"></subitem>
		<subitem name = "Controls" location="products.html#controls"></subitem>
		<subitem name = "Switch Gear" location="products.html&#xA3;switchgear"></subitem>
	</button>
I tried using other characters which do seem to work. Example would be
Code:
products.html&#163controls
or
Code:
products.html&#xA3;controls


Which both will render “products.html£controls” to the browser. So why doesn’t the # sign get passed through?



Any help would be greatly appreciated
__________________
my spoon is too big
Cryptic is offline  
Closed Thread


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Site Sponsors
Advertise your business at NamePros

All times are GMT -7. The time now is 08:00 PM.


Powered by: vBulletin® Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.3.0
Template-Modifications by TMS
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85