Disable caching embedded SWF

Hello!
How to disable using cached embedded SWF at compilation temporarily?
Always compilation uses old version, when need new version.

[Embed(source="../../output/EmbedSWF.swf", mimeType="application/octet-stream")]

0
3 comments


EmbedSWF.swf is produced by a separate Flash build configuration, right? As it is not possible to configure app-on-app dependency you need to Make embedded swf manually each time before starting the main app. Right click the module node in the Project View and select Make Module or just make the whole project (Ctrl+F9 on Windows).

0
Avatar
Permanently deleted user

Yes, I know. I use it. But there was a cache sometimes. Now I don't see this, maybe I just had to get some sleep =)

0

'Make' is incremental in IntelliJ IDEA. That means that if there's no changes in source folders of the module that produces EmbedSWF.swf since previous compilation then compilation is skipped. So it is potentially possible that some resource that is required for EmbedSWF.swf compilation is changed but the change is not noticed by IntelliJ IDEA because the resource is not located within source folders.

0

Please sign in to leave a comment.