0
votes
1answer
249 views
Flex doesn’t export resources to release build
I'm trying to set image source conditionaly using the following line:
source="{data.muted ? '/assets/audioMuted.gif' : '/assets/audio.gif'}"
Apps run fine when run from Flex builder, but when I try …
4
votes
5answers
177 views
Partial builds versus full builds in Visual C++
For most of my development work with Visual C++, I am using partial builds, e.g. press F7 and only changed C++ files and their dependencies get rebuilt, followed by an incremental link. Before …
