Setting False for me seems to overwrite EVERYTHING; the attributes, layer name, all of it.
It seems to have simple ran a Remove Layer and then an Add Layer rather than commuting the layer properties.
I simply want my layer to be 50% transparent and have the labels displayed with 15 point Y offset and Halo around the text.
Anyone experience this?
With UpdateLayer, are you using False for the symbology_only parameter? It defaults to True, so the label properties will only come across if you specify it as False.
For example: arcpy.mapping.UpdateLayer(df, updateLayer, sourceLayer, False)
Keep in mind this will bring all layers properties including symbology, font, font size, label expression, etc., so everything will need to be defined in the update .lyr file.
David