Search found 50 matches
- 09 Apr 2015, 14:15
- Forum: General Discussion
- Replies: 8
- Views: 1898
Re: Logo Animation
Is there a specific project type I should use for Blend? They have Store Apps or WPF and in Store Apps they have Universal Apps, Windows Apps, Windows Phone Apps. Does it matter at all? I assume I'm just taking the xaml and moving it to my Noesis app? Not sure if some of the controls aren't "importe...
- 09 Apr 2015, 03:21
- Forum: General Discussion
- Replies: 8
- Views: 1898
Re: Logo Animation
Wow, I never heard of this VS Community package. Installing now. Thanks, this looks great!
- 09 Apr 2015, 02:12
- Forum: General Discussion
- Replies: 8
- Views: 1898
Re: Logo Animation
Am I right in my exploring that there is no express (free) version of Blend? I can't seem to find one. Do I have to buy VS Pro just to get blend? I hope not as I don't have that kind of cash
. If so any other options besides manual editing xaml?

- 09 Apr 2015, 00:58
- Forum: General Discussion
- Replies: 8
- Views: 1898
Re: Logo Animation
Man that's pretty verbose.
So your exporter for TexturePacker (which I've never used before) generates all that xaml in your example? I just have to copy and paste it into my xaml I assume?
The Storyboard looks like a ton of text. Is there anything that makes making that easier and more manageable?
So your exporter for TexturePacker (which I've never used before) generates all that xaml in your example? I just have to copy and paste it into my xaml I assume?
The Storyboard looks like a ton of text. Is there anything that makes making that easier and more manageable?
- 09 Apr 2015, 00:10
- Forum: General Discussion
- Replies: 8
- Views: 1898
Logo Animation
Where can I find some examples of playing 2D Animation like at the start of games where it shows the logo's? I have a bunch of individual images that I want to animate. I saw something animating a rect but doesn't seem like it's what I want given my external images to animate.
- 08 Apr 2015, 23:27
- Forum: General Discussion
- Replies: 6
- Views: 1606
Re: Leadwerks integration issue
I'm not using anything at the moment. I'm just testing in a blank Leadwerks project.
- 08 Apr 2015, 20:56
- Forum: General Discussion
- Replies: 6
- Views: 1606
Re: Leadwerks integration issue
Yeah, not sure if I can just overwrite the existing code that's out there or if you guys were able to contact the original author of that?
- 08 Apr 2015, 20:24
- Forum: General Discussion
- Replies: 3
- Views: 1415
Re: Button click delegate for class method
Thank you for the explanation. I'm person who learns better with english explanations vs weeding through code. This helped a lot.
- 08 Apr 2015, 18:52
- Forum: General Discussion
- Replies: 9
- Views: 2042
Re: Is there a generic event for all events?
Code: Select all
Button* button3 = root->FindName<Button>("Button3");
- 08 Apr 2015, 18:33
- Forum: General Discussion
- Replies: 9
- Views: 2042
Re: Is there a generic event for all events?
If user has a Button3_Click() function defined in Lua, then you can look for an element named Button3 in the xaml tree (as I just explained), find the Click event using that element: Good idea. My mind was having the starting point be the xaml to determine if an event should be attached but startin...