How to configure In-App Rich Media ad creative in DFP? - google-dfp

I created a html for In-App Rich Media ad for expandable banner. It contains 2 Image files and .js and .css file. How to configure and upload files and create a creative in DFP it will show my apps.
I need some link to configure my own custom MRAID creative in DFP.

You have to create separate server on which you can upload related .js and .css files.
For creative you have to write one sampleCreative.js file in that you can add your html content using document.write() function.
Upload below code as a creative in DFP which will call your sampleCreative.js.
<script type=\"text/javascript\" src=\"http://localserver/sampleCreative.js\"></script>

Related

Share a custom text that contains a link

I'm following a tutorial on how to share images, files, texts using share plus package.
I was wondering if it is possible to share a link or url for example a link to download a file that when a user clicks on it, it will automatically download.
The link to automatically download the file is done. But if I want to send it to messenger, email, or other platforms, I don't want to share the link itself. Instead I want to use a custom name.

Download PDF in Android using Ionicv4

I am using ionic v4. I have a web page where when completing a form, a PDF file is downloaded. I want to perform this same action on the Android device.
How can I do it using webview?
Can you provide more information?
You just want do download a specific PDF link file? Maybe something like this:
Using href
Define a variable with the desired URL link:
var url="https://www.w3schools.com?name=ADAM"
Insert into your html file:
< a target="_blank" href="{{url}}">PDF< / a>
If you share some code I can help you out more...

Is there a way through which I can embed external HTML page as a component at run time in ionic 3

We know that we can use pages or components in ionic. These pages and components contain .html files, which have html markup. When we build the app, all these files are bundled into the app.
My question is whether we can use or embed external .html files and act on that .html file.
For example: if we have a login page which contains username and password fields and submit button. We have already defined css for this page. There is a requirement for my project to embed external .html file and use it as login page. It may have a different css.
if you mean that you have html tags in JSON response for example and you want to add them to ionic just do :
<div [innerHTML]="your-JSON-response-Html"></div>

How to add a joomla form in frontend then add media to form data in backend?

I want to add a form in the front end of the
website .. then submitted data needed to display in the backend.. I want to add a media to every data that submitted. after that I want to publish selected form data with uploaded media in front end... how can I do.? Am new in Joomla
There are several form extensions check this link
http://extensions.joomla.org/extensions/extension?searchall=forms&filter%5Btags%5D%5B%5D=&filter%5Bcore_catid%5D=&filter%5Bincludes%5D=&filter%5Bversions%5D=&filter%5Btype%5D=&filter%5Bhasdemo%5D=&filter%5Bnewupdated%5D=&filter%5Bscore%5D=&dir=DESC&limitstart=&controller=filter&view=extension&layout=list&Itemid=145&clearorders=0&clearfilters=1
I picked up this extension for you
http://extensions.joomla.org/extensions/extension/contacts-and-feedback/forms/visforms
What you have to do is. Install a free extension. Create a form for the frontend. Remember not to give access to the upload field as you are going to upload the media. There is Visforms, Chronoforms etc that can solve your purpose. You can save to database, edit your form at backend, upload and do lots of stuff.

Coldfusion iPhone image upload

We have an existing web page which lets users upload images to the server. We would like to stretch it out so that iphone users can also upload images in this web form. Any ideas or third party tools?
I also found http://www.cliqcliq.com/support/quickpic/ but there no sample in coldfusion.
Thanks!
phonegap's your friend...
http://www.phonegap.com/
Use HTML CSS & JS to make an app
Camera photo (jpeg) can be posted to CF as a base64 encoded string
Jquery also has a mobile library that came out that may be of use to you.