I have a wpf project in microsoft expression blend 4, and i need to pause the storyboard at a especific time, and resume it later. without any user control button or something like that =)
How to resume the storyboard in a especific time without user control in blend 4
Collapse
X
-
yes lets say i have a text. and when its there it pause, and after a music file with a voice reads that text it resumes, so like 0:02.100 pause, 0:12.100 resumes. how can i control this?
im doing my presentation in expression blend lol i dont want to use powerpoint. ive done everything right but i cant control this.. =(Comment
-
after searching the code in the XAML i found this.
its an event trigger if somebody knows what is necessary to stop the storyboard at 0:12.100 please help =)Code:<EventTrigger RoutedEvent="UIElement.MouseLeftButtonDown" SourceName="textBlock_CopyControl1"> <PauseStoryboard BeginStoryboardName="OnLoaded1_BeginStoryboard"/> <ResumeStoryboard BeginStoryboardName="OnLoaded1_BeginStoryboard"/> </EventTrigger>
Comment
Comment