|
|
|
Forum Guru
      
Group: Forum Members
Last Login: 2 days ago @ 5:23:48 PM
Posts: 137,
Visits: 380
|
|
Using EP2 Pro 2.0.1.119, image stretch no longer works for ImageDisplay objects (although it does work for SlideImage sub objects). To be sure, I made a simple demo program in EP1, which stretches .bmps just fine, then when I convert this to EP2 the program no longer stretches the image.
Is this an intentional change, or will this be fixed in an upcoming release? Thanks.
-- David McFarlane, Professional Faultfinder
|
|
|
|
|
Forum MVP
      
Group: Administrators
Last Login: 2 days ago @ 8:36:44 AM
Posts: 480,
Visits: 1,064
|
|
| This has been replicated and confirmed that the GUI properties are not being past to the runtime. Until this can be corrected in a future build, a workaround would be to drop an InLine and set the property via script. Examples below... MyImageDisplay.Stretch = True MyImageDisplay.Stretch = CLogical("Yes") MyImageDisplay.Stretch = CLogcial(c.GetAttrib("ShouldStretch")) -Brandon
|
|
|
|
|
Forum Guru
      
Group: Forum Members
Last Login: 2 days ago @ 5:23:48 PM
Posts: 137,
Visits: 380
|
|
Brandon,
Thanks, that did the trick. I put your first option, with documentation, in an inline called "ImageStretchPatch", all is well.
-- David McFarlane, Professional Faultfinder
|
|
|
|