chadski021 Posted October 7, 2013 Posted October 7, 2013 is there a way automatically adjust the height if the text is cut off in the address when i hover the mouse on it it should expand the height https://www.dropbox.com/s/p20rmnibufuzqtp/Resize%20height.fmp12
No_access Posted October 7, 2013 Posted October 7, 2013 I am unaware of any technique to physically change the size of a field, other than sliding up, but I don't think that's what you are looking for. You can however write a simple custom function to change the font size based on the length of the text so it shows all in one line. the obvious downside is if their is too much text it can be made two small. you can experiment with this in a calculation field If (Length(Street) < "25"; Street; TextSize ( Street ; 20* 25/Length(Street) ) )
doughemi Posted October 7, 2013 Posted October 7, 2013 Would a Tooltip work instead? Resize height_TT.fmp12.zip
No_access Posted October 7, 2013 Posted October 7, 2013 You could actually do a combination of the 2, a tool tip as mentioned by doughemi and a custom function , that way your users can use the one they want.
Raybaudi Posted October 7, 2013 Posted October 7, 2013 You could also impose another style ( say "Condense" ) or another size ( say 10 points ) on mouse hover that field. Resize heightMod.zip
Recommended Posts
This topic is 4222 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now