Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I was hoping somebody could help me enable a macro when a document is viewed in AccessPoint. I currently have the below macro, which changes the color of the light green selections in the selection boxes to blue. This macro works perfectly fine when opened in Qlikview Personal Edition but when I view the document in AccessPoint this macro does not work. I am able to get other macros (those enabled by a button) to work when I view my document with the IE Plugin View but not this one.
To set up this macro I go to Settings - Document Properties - Triggers - OnOpen - Add Action - Run Macro.
Then General Tab - Color Scheme = Custom.
"
sub Color
set up = ActiveDocument.GetApplication.GetUserPreferences
up.CustomSelBgColor(1).PrimaryCol.Col = RGB (70,182,228)
ActiveDocument.GetApplication.SetUserPreferences up
end sub
"
Any help would be greatly appreciated. Thank you!
it seems OnOpen event isn't supported wit Ajax
The way to change selection colors in Ajax is with a Document Extension.
http://www.qlikfix.com/2012/05/18/any-colour-as-long-as-its-green/#more-3286
-Rob