Problema web vew

vertical arrangement

With a blank space in the middle? I don't think so

Maybe i'm making a mistake.

For showing (only) a web site page in a screen i've done linke this and it works well:

so i'm following the same reasoning for putting another web page in a screen with multiple elements.

For doing this i've done like this (the code below is the entire code of the screen when i wan to put, at the end of the screen, the view of another web page):

so, if everything is correct, i thing that i need to put gotourl into a command, but i don't know why, considering that the space circle by red is just a vertical arrangement
3

you can place it in Initialize block. One thing is WHEN and other WHERE.

WHEN: If you want to see the url from you are starting the screen, then place the GoToUrl in the Initialize block.

WHERE: If you want to see that URL in the arrangement with the red circle then set CreateWebView.container to that arrangement.

let me know if you have it, and if not, share your aia

Project.aia (774.6 KB)

i don't have it. My aia uploaded. Thank you

You have correctly assigned the arrangement to the customWebView, the problem is that the arrangement is very small and if if you set the height of the arrangement it does not allow you to scroll.

I don't know if there is away to increase the height and to allow scrolling...

I found this trick by @TIMAI2

but I don't know if there is a better way.

what a pity! What i really need is to create a feed rss reader into the area circled in red, but i haven't found any instructions or aia (just many but no one works). Do you have any suggestion about this? A user sent me this aia, but it doesn't work (and however i would like to see the feed in the botton of the screen and not by clicking the button).
rss_oggieunaltropost.aia (3.1 KB)

If you look at the aia you posted, it uses the web component to fetch the rss feed, and displays this in a textbox.

No webviewer is used.

If you need it to continually update, then use a clock timer.

hi Timai. I have tried to use this feed rss reader but when i click on the button nothing appears. and you? However i need that the feed rss is displayed into the circle area without click anything. Thank you

I had a look at the rss_ogg... aia.

You need to give the web component a user-agent in the headers....the receiving url is expecting one, and it seems the web component does not have one as default...

This returns the xml which is then "parsed" (only partially) by the titoli procedure.

(Added to: FAQ Section: Web Services Examples)

Hi Timai and really thank you for your help. However i'm incompetent in this matter so i don't think very well what you are telling me to do. I edited the rss_ogg... aia as in your screen but the button however doesn't work.
Beyond that, i wanna see the rss feed not by clicking a button but automatically in the red circle area, when the user will be on my app's main screen.
3

Do you think is possible starting by the rss_ogg... aia i've posted? Or do you know if there is a place where i can find a ready .aia project to use?

Thank you so much.

If you do not want to click a button, then put the web1.get in your Screen.initialise.

I'm not able to make it works, i think i will abandon the idea. I've done all that you advised me but in every way i cannot see the feed rss in the page. Thank you for your time.

Show your relevant blocks

Here there is the original aia (rss_ogg...) that i have modified (maybe) as you suggest
RSS 1_way.aia (2.6 KB)

Here there is the aia created by your suggest in this pic
RSS 2_way (TIMAI).aia (2.7 KB)

timai

Try this, your url and user agent were not correct.

RSS_2_way_TIMAI1_revised.aia (2.9 KB)

Thank you.

If i open your aia project it works well with the sample rss that you insert, but if i insert the rss feed that i need it doesn't work.

If i bring your code in my app, adapting it to my code, it doesn't work neither with the sample rss link you inserted, nor with the rss link I need.

i have attached the aia of my official project with the rss that i need, so you can see. (consider that i wanna read the feed into the red circle area)
3

MYAPP+FEED TIMAI_NotWork.aia (771.2 KB)

Disable that block:

MYAPPFEED_TIMAI_NotWork1_revised.aia (771.3 KB)

You did not look at the feed from the new url. Needed to replace the <title type=text> with just <title>

You may need to do some formatting/layout work on that screen and more work in the titolo procedure to return the results from the xml that you want.

ok, thank you so very very much, now i think i understood how to proceed. But let me ask a question: all this procedure for having only the title on the screen? i thought that the procedure would return the last news on the site :woozy_face:
isn't that?