Jump to content
View in the app

A better way to browse. Learn more.

FMForums.com

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

line breaks handled incorrectly

Featured Replies

ScriptMaster 4.205 seems to handle line breaks incorrectly. If you send a ScriptMaster module a standard line break char(13), it is converted to char(10) before the ScriptMaster module get's it.

 

For example, if you run the following ScriptMaster module with ¶ as a parameter, it will return 10.

RegisterGroovy( "testparam( param )" ; "param.codePointAt(0)" )

The impact this has is the "Call Script Immediately" module is not sending the exact parameter to the script that I passed to the module. My script is doing a substitute based on ¶ in the script parameter, but since ¶ is converted into code(10) by ScriptMaster, the script doesn't work.

 

My workaround is to use this code for the Call Script Immediately function:

if (param) {
	param = param.replace("n","r")
}
fmpro.performScript(fileName, scriptName, param);
return true;

FYI: basic info on line breaks:

code(13) = ¶ = Carriage return = CR
code(10) = Line feed = LF

note: I only tested this on Windows

Create an account or sign in to comment

Important Information

By using this site, you agree to our Terms of Use.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.