Page 2 of 4

background image not appearing in tiggzi test app

Posted: Thu Mar 08, 2012 7:17 pm
by Jgc

Im trying to understand where the picture is coming from...Am I correct in assuming the picture is coming from an external source? (flickr, photobucket, etc.)

Im trying to get a background picture as well and having a really hard time getting it to happen.....


background image not appearing in tiggzi test app

Posted: Thu Mar 08, 2012 7:19 pm
by Jgc

Is their any plans to be able to upload a picture from your computer? (hint,hint...)^^


background image not appearing in tiggzi test app

Posted: Thu Mar 08, 2012 7:26 pm
by maxkatz

Just drag and drop the Image component into a screen, then go to properties to upload the image.

Just one thing to keep in mind. When the image is uploaded, we change the name to this form: asset-xxxxx. It will be changed soon, we will keep the uploaded file name.


background image not appearing in tiggzi test app

Posted: Tue Oct 09, 2012 7:59 am
by Eric Brouwer

I know this is an old subject.

but is it possible to load a picture from the mobile itself?
If yes. how do you put in the location of the folder where the picture is located?


background image not appearing in tiggzi test app

Posted: Tue Oct 09, 2012 12:01 pm
by Maryna Brodina

background image not appearing in tiggzi test app

Posted: Wed Jan 30, 2013 6:02 am
by David Fung

Hi,

The above syntax url("http://tiggzi.com/assets/asset-xxxxx") is still valid? The image is uploaded to my asset folder but I can't retrieve it.


background image not appearing in tiggzi test app

Posted: Wed Jan 30, 2013 7:12 am
by Maryna Brodina

Hello! Please check your mobilecontainer name, also ensure you are using correct image name.


background image not appearing in tiggzi test app

Posted: Wed Jan 30, 2013 9:37 am
by David Fung

When I use url("http://cdn1.iconfinder.com/data/icons...") , it works. i.e. mobilecontainer name is correct.

Here is my code in CSS file:
[dsid=fblikeButton] .ui-icon {
background: url("http://tiggzi.com/assets/asset-1969896");
background-size: 74px 33px;
height: 33px !important;
margin-top: -15px !important;
margin-right: -5px !important;
width: 74px !important;
}


background image not appearing in tiggzi test app

Posted: Wed Jan 30, 2013 12:14 pm
by Maryna Brodina

Working on it... Could you clarify what builder you use - old Flash-based builder or the new HTML5 one?


background image not appearing in tiggzi test app

Posted: Wed Jan 30, 2013 1:37 pm
by Maryna Brodina

After you add image to Assets (for example image with name img.png)

CSS solution:

.mobileContent {
background: url("../image/img.png");
}

JS solution:

Tiggzi('mobilecontainer1').css('background-image','url("' + Tiggzi.getImagePath('img.png') + '")');