Tagged Questions
The asset tag has no wiki summary.
3
votes
1answer
486 views
Symfony2 theming
I want basic theming support in my Symfony2 project, so I wanted to have separated static files (css, js, img) for each theme.
I have tried to add
assetic:
read_from: ...
3
votes
5answers
489 views
Why aren't my asset files updated?
My program opens a .txt file from the assets folder and reads from it. Here is the code:
AssetManager myAssetManager = myContext.getAssets();
try{
...
3
votes
5answers
9k views
Android path to asset txt file
I'm doing:
FileReader fin = new FileReader("file:///android_asset/myFile.txt");
in an Android project and many variations. At runtime I get a file not found exception. The file is present and ...
2
votes
1answer
30 views
How to keep hdpi,mdpi,ldpi and xhdpi files in the Android asset folder?
I know it's not possible to create subfolders in android drawable folder and we can use the asset folder to keep our external files. My problem is how do we store the hdpi,mdpi,ldpi and xhdpi ...
2
votes
1answer
97 views
How to save back into a file in assets folder
I understand I can open a file in assets folder like this.
InputStream is = ((Activity) mView).getAssets().open("some.txt");
But what should I do to save back to the same file? I mean how do I get ...
2
votes
2answers
289 views
Load an image to UIImage from a file path to the asset library
Related to my previous question here.
I have a path to an image in the asset library , for example:
assets-library://asset/asset.JPG?id=1000000001&ext=JPG
Now, how could I load the image from ...
2
votes
1answer
142 views
Rails 3.1 Netzke Asset Pipeline Issue
Walking through this tutorial and am having problems with Rails Asset Pipeline.
http://blog.writelesscode.com/blog/2010/06/14/extjs-rails-crud-application-in-7-minutes/
I make the symlink:
> ln ...
2
votes
1answer
116 views
Using “path” and “asset” for non-template data
When creating templates with Twig, it's easy to use the path and asset functions.
<a href="{{ path('my_route') }}"><img src="{{ asset('bundles/acmedemo/my_image.png') }}" /></a>
...
2
votes
1answer
1k views
Load web-application into a webview using local paths for images stored in the application
I want to be able to create an app that uses WebView to request a url
from an external web application which returns html and css that
references images that are assets within the actual ...
2
votes
1answer
1k 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 ...
1
vote
0answers
137 views
Accessing remote resource from Android WebView with local android_asset base directory?
Here is the problem I'm having trouble solving.
I have a WebView in which I load a page with file:///android_asset/ base directory in order to be able to access some local resources, among which are ...
1
vote
1answer
173 views
Symfony2 - Using CSS assets in PHP templates
I have installed my assets using:
php app/console assets:install web/
and the public resources have been moved to the web folder without problems.
I now want to access these assets from my php ...
1
vote
1answer
327 views
Rails 3.1 Asset Pipeline: Precompiled MD5 Fingerprints don't match
I'm having a Rails 3.1 rc6 app on Heroku's cedar stack (ruby 1.9.2).
I precompile assets using rake assets:precompile RAILS_ENV=production locally on my development machine.
The problem is the ...
1
vote
3answers
404 views
How to get the sqlite path, in asset folder?
I'm a beginner here.
I've got two problem in android programming:
How can i open a Sqlite database, which is stored in the asset folder, in android?
Which path i have to use to access to my app ...
1
vote
1answer
198 views
Override an asset host in rails, via the helper methods?
I was wondering if there was a way to override the asset host of an image.
For example lets say I have the following asset host and image tag
config.asset_host = "www.xxx.com
image_tag "blerg.gif"
...
1
vote
3answers
7k views
How to get URI from an asset File?
I have been trying to get the URI path for an asset file.
uri = Uri.fromFile(new File("//assets/mydemo.txt"));
When I check if the file exists I see that file doesn't exist
File f = new ...
1
vote
2answers
225 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="";
...
1
vote
1answer
567 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
520 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 ...
1
vote
4answers
6k 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 ...
0
votes
1answer
12 views
flash - rescale an asset that's a hierarchy of bitmaps?
I have some FLA/SWF assets which are hierarchies of bitmaps.
They have timelines which page-flip through different bitmaps.
I'd like to scale these assets down in pixel-size, including the bitmaps ...
0
votes
0answers
19 views
How do I remove old assets during an update?
To make a long story short, we have released an app that has hundreds of images stored in the application bundle. The file structure for the images is something like:
...
0
votes
0answers
36 views
[cell imageView] in UITableView doesn't appear until selected
I have a problem when trying to set the image for the [cell imageView] in a UITableView from the asset library.
The image is loaded but it doesn't appear in the cell until I touch (select) that cell. ...
0
votes
1answer
131 views
Path to web directory and assets in .js files in symfony2
I'm googling and googling and can't find what I need.
How to get path to "web" directory in symfony2 in
action [no idea, i only found solution for older versions of symfony:
$sf_relative_url_root = ...
0
votes
2answers
77 views
Problems loading html asset into webview
I am having difficulty in loading a html file from my project assets folder into a webview. I have looked at dozens of tutorials and solutions but none seem to work for me.
In my project's assets ...
0
votes
1answer
36 views
mootools: help loading multiple, per-page, Asset.javascript files
i want to load an array of page-specific external .js files. in the past, i did it through PHP at the top of each page, like so:
<?php
$jsFiles = array("file01.js", "file02.js", ...);
...
0
votes
2answers
69 views
android get Bitmap or sound from assets
I need to get Bitmap and sound from assets. I try to do like this:
BitmapFactory.decodeFile("file:///android_asset/Files/Numbers/l1.png");
And like this:
...
0
votes
1answer
71 views
How to get exif information from ALAsset?
I need to get exif information from selected asset and to display part of it on the screen.
0
votes
1answer
66 views
how to access my assets folder videos?
I have some videos in assets folder, I wish to view that videos in grid view.
I don't know how to view in grid view. If I click in particular video in grid view then only I want to play.
I am ...
0
votes
0answers
56 views
Opening text file in assets folder throws a FileNotFound exception
I'm currently developing an app where I need to open a text file. I put that file in the assets folder and try to open it with the following code:
try {
AssetManager manage = ...
0
votes
0answers
50 views
Media asset management solution php, mysql, cloud
I'm looking for a media asset management solution which is ...
free/opensource
runs preferetly on php, mysql
stores assets in the cloud.
has customizable rights for usergroups and assets
cdn ...
0
votes
0answers
51 views
JMonkey 3 Asset Cache
I'm in the process of learning JMonkey for the purpose of building a framework on top of it.
How do I manage the asset cache?
Is there any way to clear it?
Is there any way to delete a specific ...
0
votes
0answers
81 views
Enable compression, Minify JavaScript rails 3.1 in development mode
Hi Guys I am checking the page speed from my web page in development mode with plugin for mozilla firefox page speed for firebug.
I want to know if is possible Enable compression and Minify ...
0
votes
1answer
74 views
How do applications that run on iOS3 and earlier select multiple images at a time like Image Picker?
I search through the web and only find that iOS 3 and earlier versions can only use the image picker control to select the photos. Is it the only way that we can give for user to select the photo?
I ...
0
votes
0answers
302 views
How to add video files Programmatically in sharepoint 2010? [closed]
Possible Duplicate:
How do you upload a file to a document library in sharepoint?
I am doing a project which requires uploading of video files.I am using sharepoint 2010 as my backend. I ...
0
votes
0answers
546 views
Symfony2 Asset Resource Path
In my apache2 setting for /etc/apache2/sites-available/default,
I make my website configuration like this:
Alias /new/ "/var/www/symfony/web/"
Alias /new"/var/www/symfony/web/"
<Directory ...
0
votes
1answer
187 views
Symfony: Inculde css and js on a php templete
How to include .css and .js files in a php file (index.html.php for example) on Symfony? (I'm using Symfony2 if that matters), I read that I must include the src/link within an asset function like ...
0
votes
0answers
467 views
Show a thumbnail preview on the upload form of Asset Library in Sharepoint 2010
I would like to be able to show a thumbnail preview on the form that needs to be filled out when you upload an image to a asset library in Sharepoint 2010. A picture library seems to do this, but I ...
0
votes
1answer
64 views
which is the better way to keep and load images at run time in android?
I have up to 200 large scale fixed images and i need to handle it at run time.
[Consider performance and apk size]
1.where i can keep this images(Asset folder or drawables)?
2.currently ...
0
votes
3answers
848 views
How to open a pdf stored either in res/raw or assets folder?
I'm going to show a pdf in my application, and the pdf has to be bundled with the application.
What is a good way to do this?
I have read that it might be possible to do this by adding the pdf file ...
0
votes
0answers
84 views
Load multiple assets and show page when done
Using jQuery, how can I load multiple assets from an array of assets with paths to file relative to the HTML file and after all are loaded into cache, not necessarily add to the DOM (yet), do ...
0
votes
2answers
294 views
Moving asset to /data/data/APP_NAME/files
Quick reference on what I have read
http://thedevelopersinfo.com/2009/11/17/using-assets-in-android/
http://www.wiseandroid.com/post/2010/06/14/Android-Beginners-Intro-to-Resources-and-Assets.aspx
...
0
votes
2answers
273 views
Android assets allocation error
I need to create a new Typeface every time a change occurres in app (a Live Wallpaper) font preferences.
To do this, I create a Typeface in onSharedPreferenceChanged() in my wallpaper Engine, this ...
0
votes
3answers
124 views
Is it possible to create a view from an xml file in the assets directory?
I have an application and putting all of the layouts inside of the res/layout folder is getting pretty large and hard to manage. I would like to have folders for all the layouts. I have read that ...
0
votes
2answers
821 views
ActionScript - BeginBitmapFill With BitmapData Library Asset?
i've imported an image asset (Background.jpg) to my Flash CS5 library and exported it to ActionScript as class Bitmap with a base type of BitmapData.
the following code returns the following error:
...
0
votes
2answers
3k views
Android: How to find the absolute path of the assets folder?
I need to get the absolute path of the assets folder in my app as I want to serve the files within using a webserver and it needs the absolute path. Is this possible?
I would have thought there might ...
0
votes
3answers
2k views
How to make an iOS asset bundle?
I saw a custom asset bundle in an iOS project I evaluated, so at least I know it's possible.
My issue is that I'm using a CATiledLayer with about 22,000 tiles for a given image and it takes a very ...
0
votes
1answer
269 views
how copy audio file from iPhone's filesystem to asset library programatically
i have an audio file that i saved from stream into ~/Documents folder on iPhone.
i just wanted to make this file visible to user as (s)he can play it using iPod program or put that file into his/her ...
0
votes
2answers
434 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
310 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 ...