Newbie: How can I include external assets?

  • Thread starter Thread starter Steve Howard
  • Start date Start date
S

Steve Howard

I am building my first ever VB.NET PPC application. This is also my first
..NET and first VB project, so there is a lot I don't know.

I have an external Flash file that I would like to include in my assembly
.... I want the latest version of the file to be deployed automatically
whenever I select Deploy during testing, and with my final package.

So far I have only been able to find was to attach development files (dll,
xml, txt etc.), but no way to attach a Flash (.swf) file. I will really
appreciate any pointers to the appropriate dialogue and/or help file.

TIA


Steve


--
http://www.eurotaac.com
You Know You Wish You Had

AMGAC
http://amgac.magnoliamultimedia.com

Team Macromedia Volunteer - Authorware
My blog - http://stevehoward.blogspot.com/
 
Just include the swf in the project and ensure that it's "Build Action" is
set to "Content". VS.Net should ship it to the device/emulator when you
deploy.

--
Tim Wilson
..Net Compact Framework MVP

<Feedback>
Do have an opinion on the effectiveness of Microsoft Windows Mobile and
Embedded newsgroups? Let us know!
https://www.windowsembeddedeval.com/community/newsgroups
</Feedback>
 
Just include the swf in the project and ensure that it's "Build Action" is
set to "Content". VS.Net should ship it to the device/emulator when you
deploy.


Thanks, but I have been unable to figure out how to include it. A search in
the help for Include, External files, assets ... various things, has not
given me the answer yet.

Steve

p.s.

I hate being a newbie with a tool ;-)
 
Open your solution (project) in VS.Net, select "Add Existing Item..." from
the File menu, change the "Files of type:" combo option to "All Files", then
navigate to the swf file, now click "Open" to include it in your project.
Next ensure that it's "Build Action" is set to "Content" by selecting the
swf file in the Solution Explorer and then looking at the files "Build
Action" property in the Properties window.

--
Tim Wilson
..Net Compact Framework MVP

<Feedback>
Do have an opinion on the effectiveness of Microsoft Windows Mobile and
Embedded newsgroups? Let us know!
https://www.windowsembeddedeval.com/community/newsgroups
</Feedback>
 
Open your solution (project) in VS.Net, select "Add Existing Item..." from
the File menu, change the "Files of type:" combo option to "All Files",
then
navigate to the swf file, now click "Open" to include it in your project.
Next ensure that it's "Build Action" is set to "Content" by selecting the
swf file in the Solution Explorer and then looking at the files "Build
Action" property in the Properties window.


Perfect. Thanks Tim!!!



Steve
 
Back
Top