home
products
contribute
download
documentation
forum
Home
Forums
New posts
Search forums
What's new
New posts
All posts
Latest activity
Members
Registered members
Current visitors
Donate
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Search titles only
By:
Menu
Log in
Register
Navigation
Install the app
Install
More options
Contact us
Close Menu
Forums
MediaPortal 1
MediaPortal 1 Plugins
Popular Plugins
My Films
Update movie source in AMC?
Contact us
RSS
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="LaMaOne" data-source="post: 287650" data-attributes="member: 80091"><p>Alternatively, you could achieve this in AMC itself using scripting.</p><p>I did this myself not long ago, here's my script:</p><p></p><p>[CODE]program FindReplace;</p><p></p><p>//replace C:\ with E:\ in fieldSource string</p><p>const</p><p> WholeWord = False;</p><p> Search = 'C:\';</p><p> Replace = 'E:\';</p><p> Field = fieldSource;</p><p></p><p>var</p><p> s: string;</p><p>begin</p><p> s := GetField(Field);</p><p> if WholeWord then</p><p> begin</p><p> if s = Search then</p><p> SetField(Field, Replace);</p><p> end</p><p> else</p><p> SetField(Field, StringReplace(s, Search, Replace));</p><p>end.[/CODE]</p></blockquote><p></p>
[QUOTE="LaMaOne, post: 287650, member: 80091"] Alternatively, you could achieve this in AMC itself using scripting. I did this myself not long ago, here's my script: [CODE]program FindReplace; //replace C:\ with E:\ in fieldSource string const WholeWord = False; Search = 'C:\'; Replace = 'E:\'; Field = fieldSource; var s: string; begin s := GetField(Field); if WholeWord then begin if s = Search then SetField(Field, Replace); end else SetField(Field, StringReplace(s, Search, Replace)); end.[/CODE] [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
MediaPortal 1
MediaPortal 1 Plugins
Popular Plugins
My Films
Update movie source in AMC?
Contact us
RSS
Top
Bottom