![]() |
![]() |
kugelrund |
![]()
Post
#1
|
Newbie ![]() Group: Members Posts: 2 Joined: 26-July 06 Member No.: 110 ![]() |
Hi All,
first thanks for this nice tool - it works very good. I export the Songinfo in a "musicinfo.txt" file - it works well than i want to import the "musicinfo.txt" in a SWF file - it works too but makes problems with some text. For Example: in the musicinfo.txt = "Mike & Mechanics - Wonderfull" But the SWF just shows me "Mike " and nothing more Is it possible to replace all the "&" with "and" to bcome the right info in the swf like "Mike and Mechanics - Wonderfull" Thanks from Austria Robert |
![]() ![]() |
Serge |
![]()
Post
#2
|
![]() AMIP Developer ![]() ![]() ![]() Group: Root Admin Posts: 935 Joined: 12-March 06 Member No.: 1 ![]() |
Looks like the problem is caused not by &, but by space, you can try using urlencode function ($ue), refer to AMIP help for details.
If the problem is caused by &, then you can replace it with "and" using: CODE $strrep(search,replace,subject) Returns a string with all occurrences of search in subject replaced with the given replace value It's also described in AMIP help. |
kugelrund |
![]()
Post
#3
|
Newbie ![]() Group: Members Posts: 2 Joined: 26-July 06 Member No.: 110 ![]() |
Hi Serge, this one works
![]() CODE $strrep(&,and,%name) Thank you very much!!!! |
![]() ![]() |