The asset tag has no wiki summary.
7
votes
1answer
3k views
Android assets, C, JNI
How do you access an Android asset, such as a .txt file, from C with the JNI?
I'm trying "file:///android_asset/myFile.txt", and locally "myFile.txt" with a duplicate of myFile.txt in the jni folder ...
0
votes
2answers
949 views
how do i store a static html page in android emulator and later on view it from WebView while running?
how do i store a static html page in android emulator and later on view it from WebView while running?
0
votes
2answers
835 views
CakePHP AssetCompress: Not generating compressed files in cache folders
Has anyone here used Mark Story's Asset Compress (https://github.com/markstory/asset_compress/) plugin ?
I've followed the installation instructions to the last bit and have the plugin up and ...
1
vote
2answers
450 views
Android java open from assets->fast
public static String openAssetFile(Context ctx) {
BufferedReader br=new BufferedReader(new InputStreamReader(ctx.getResources().openRawResource(R.raw.hung)));
String readLine;
String sout="";
...
0
votes
1answer
1k views
Trying to get bytes and append using NSMutableData for a video through Asset Library gives memory full error
I’m trying to upload a video of size 100MB through Asset Library. But when i try to use -(NSUInteger)getBytes:(uint8_t *)buffer fromOffset:(long long)offset length:(NSUInteger)length error:(NSError ...
1
vote
2answers
3k views
Android AssetManager/InputStream Exception
Doing Android 2.1 development. Can anybody explain to me why the following code generates a IOException and doesn't load the file? This exact code used to work, and as far as I can tell, it should ...
1
vote
1answer
796 views
How do I upload an image as a File and display it as a Thumbnail with Tapestry 5?
Using the 3rd party tapestry-upload component, I can upload a File from the client on the server.
Using the chenillekit's thumbnail component, a can make a thumbnail from an Asset.
How can I convert ...
1
vote
2answers
691 views
Prevent image caching in rails on a per tag basis
We are using gravtars for a site currently being developed in rails 2.3.4 and i am finding that the rails side tends to cache the images even after there is a change at the gravtar side. I know with ...
0
votes
3answers
562 views
Developing an asset/node based CMS
I'd like to develop a CMS for fun/personal using asset-based architecture rather than page-based (why, is the purpose of this question), but I can't find much information on the subject. All I've ...
0
votes
2answers
325 views
ASP.NET: change link to static asset dynamically
We are building a internal static asset server. Each environment (dev, staging, prod) has its own asset server, and the asset is reference throughout the web application (html, aspx, ascx, css, ...
1
vote
4answers
9k views
Passing parameters to constructor for an AS3 auto-created asset class
I'm creating a MovieClip subclass (let's call it MyClip) that I want to use for several library assets. I'll be instantiating these movie clips from ActionScript code. MyClip has a constructor ...
