Solid drag objects

Problem: Objects turn half-transparent when dragged

ActivePresenter version: 8

OS: win 10

Notes:

Hi,

it seems to be the default that drag objects turn semi-transparent on drag-start. Can this be changed? I tried setting opacity to 255 in object-state ‘on dragstart’ but it does not seem to have any effect.

Thanks,

Rolf

Hi Rolf,

The opacity of the entire object changes while dragging, so setting the fill color opacity doesn’t help.
You can reset the opacity of the object by adding the following script to On Drag Start event:

this.node.style.opacity = '';

Regards

Thanks, Toan,

excellant, as usual.

Best, Rolf