Community Page
- fortes.com/ Jump to website »
-
Subscribe -
Community
-
Top Commenters
-
Popular Threads
-
Recent Comments
- Salut, I would like to know if you have a solution to remove also "tag/" and "page/" from permalinks. Merci !
- Hi Firstly, thanks for the plugin. It (generally) works fine. Just a small issue that I have found. I run this plugin, as well as the flickr plugin (http://tantannoodles.com/toolkit/photo-album/),...
- Hello! I had the same problem like Leo and many others. Just use /%category%/%page%/%postname%/
- I have solved the sub categories problem just enter /%category%/%category%/%postname%/ on the permalinks and it works fine
- I am also getting the above problem, but only on sub categories? Is this something to do with my wordpress setup?
Jump to original thread »
Comments are closed for this post.
TextEffects is a poorly-documented property that allows you to apply an effect to a portion of text. Itâs not the best of name for the property (at least in this first version of WPF), because the only âeffectsâ supported in the current version are Clip, Foreground,
... Continue reading »
1 year ago
Just looked at your page and it solved a problem for me when doing the same thing in code.
Dim run As New Run
Dim translateTransform As New TranslateTransform
translateTransform.Y = -10
translateTransform.X = 0
Dim textEffect As New TextEffect
textEffect.PositionStart = 0
textEffect.PositionCount = 100
textEffect.Transform = translateTransform
run.TextEffects.Add(textEffect)
If you ever work out why the PositionCount seems to need to be such a large number then I'd be grateful if you let me know.
Best wishes
Sean