Search found 76 matches
- Thu Sep 08, 2011 12:08 pm
- Forum: Internet
- Topic: How can I emulate a Javascript dopostback in Livecode?
- Replies: 5
- Views: 8427
Re: How can I emulate a Javascript dopostback in Livecode?
In order to do so my script reads a HTML page (works) and capture some variable data(works as well). Now, not all data are in the same HTML page. Therefor, I need to grab the links in HTML und proceed to the next page. So far so good. I think, I have that (more or less) under control. Hello Bernd, ...
- Wed Jul 27, 2011 2:40 pm
- Forum: Internet
- Topic: Internet Library Question - How to retrieve every link?
- Replies: 12
- Views: 15442
Re: Internet Library Question - How to retrieve every link?
Hi again, I completed another project and now I have time to work on this tool again!^^ Just needed some time to understand my own code but I already came up with a new challenge for you!!! So this code: put revBrowserGet(gBrowserInstance,"htmlText") into myHtmlText and this code: put url "http://go...
- Mon May 23, 2011 3:27 pm
- Forum: Internet
- Topic: Internet Library Question - How to retrieve every link?
- Replies: 12
- Views: 15442
Re: Internet Library Question - How to retrieve every link?
Thank you very much Mark,
but could you give me an example on how to parse HTML code. I am sorry but this is totally new to me.
Best,
Masterchief
but could you give me an example on how to parse HTML code. I am sorry but this is totally new to me.
Best,
Masterchief
- Tue May 10, 2011 3:59 pm
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: Is it possible to send and recieve emails via Livecode?
- Replies: 5
- Views: 4075
Re: Is it possible to send and recieve emails via Livecode?
I am sorry! Thanks for your help, the mailing list is great!
@bangkok: Next time I will definitly do a google/forum search before asking my questions. I am sorry!

@bangkok: Next time I will definitly do a google/forum search before asking my questions. I am sorry!

- Mon May 09, 2011 7:27 pm
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: Is it possible to send and recieve emails via Livecode?
- Replies: 5
- Views: 4075
Is it possible to send and recieve emails via Livecode?
Well the question is: Can I send and recieve emails within livecode and without any external mail application?
Regards,
Masterchief
Regards,
Masterchief
- Mon May 09, 2011 6:39 pm
- Forum: Internet
- Topic: Internet Library Question - How to retrieve every link?
- Replies: 12
- Views: 15442
Internet Library Question - How to retrieve every link?
So I was able to open the revbrowser and I am able to navigate to a specified website using the following code revBrowserNavigate tBrowserId, "http://www.ybbo.de/member/index.php" There are several links on this website and I would like to retrieve a list of all available links. Then my app should n...
- Mon May 09, 2011 6:32 pm
- Forum: Internet
- Topic: Internet Library Question - How to URL encode a variable?
- Replies: 2
- Views: 3815
Re: Internet Library Question - How to URL encode a variable?
Wow Klaus!
Thanks for the fast answer!
Got the picture! Now everything works right now!
Cheers!
Masterchief
Thanks for the fast answer!
Got the picture! Now everything works right now!
Cheers!
Masterchief
- Mon May 09, 2011 5:13 pm
- Forum: Internet
- Topic: Internet Library Question - How to URL encode a variable?
- Replies: 2
- Views: 3815
Internet Library Question - How to URL encode a variable?
Basically I want to use a variable for the following Login script. I just posted the relevant lines of my script as everything else would be quite confusing. So instead of a static value I would like to use a variable to fill in the WebForm of my TestWebsite. Using the code below I am able to succes...
- Fri May 06, 2011 10:10 pm
- Forum: Internet
- Topic: How to - Pass variables to a webform?
- Replies: 5
- Views: 5576
Re: How to - Pass variables to a webform?
Thanks Larry and Mark! I just tried to pass variables to a webform using the following structure: get revBrowserExecuteScript(tBrowserId, "document.getElementsByName('sign_in').click();") Works perfect! I would like to know wheter it would be possible to handle captcha codes with LiveCode? - I mean:...
- Sat Jan 22, 2011 2:44 pm
- Forum: Databases
- Topic: A little SQL Error ... And I fail to identify it!
- Replies: 19
- Views: 15007
Re: A little SQL Error ... And I fail to identify it!
Thanks again bangkok! Your help is really appreciated and by now I got almost every feature working! The last thing I have to deal with requieres further database knowledge and it seems I need help again. This time I would like to enable the User to register to the database (Add Record Username, Pas...
- Sun Jan 09, 2011 3:21 pm
- Forum: Databases
- Topic: A little SQL Error ... And I fail to identify it!
- Replies: 19
- Views: 15007
Re: A little SQL Error ... And I fail to identify it!
Thanks bangkok! Your code simply works great! I am currently trying to embend Pictures into my Database, so i can import an image into my application and add it as a record to the database. Later I would like to read the record and display the picture in a predefined field. To be honest I don´t have...
- Tue Dec 28, 2010 6:58 pm
- Forum: Databases
- Topic: A little SQL Error ... And I fail to identify it!
- Replies: 19
- Views: 15007
Re: A little SQL Error ... And I fail to identify it!
Thanks bangkok! This script comes very close to my idea. I added some code to it so you might understand my idea a littlebit better if you are interested. The code works very well but rather than answering the result I would like to list the result in a list field. And the search field should displa...
- Tue Dec 28, 2010 4:19 pm
- Forum: Databases
- Topic: A little SQL Error ... And I fail to identify it!
- Replies: 19
- Views: 15007
Re: A little SQL Error ... And I fail to identify it!
Thanks for the advice! I changed the primary key to a column called ID which will auto increase each time a record is added, so now everything works as it should! :D 8) Thank you very much for your help! Everybody! After two days I was able to get my app working and now I am almost at a point to rel...
- Tue Dec 28, 2010 1:13 pm
- Forum: Databases
- Topic: A little SQL Error ... And I fail to identify it!
- Replies: 19
- Views: 15007
Re: A little SQL Error ... And I fail to identify it!
Well I think we solved it by now! 8) This is what I did: 1. I deleted all the spaces in the field names i.e. "ModName" instead of "Mod Name" 2. I added bangkok´s code put "INSERT INTO mods (ModName,UploadDate) VALUES (toto','2010-12-25)" into tSQL revExecuteSQL gConnectionID, tSQL put the result int...
- Mon Dec 27, 2010 5:11 pm
- Forum: Databases
- Topic: A little SQL Error ... And I fail to identify it!
- Replies: 19
- Views: 15007
Re: A little SQL Error ... And I fail to identify it!
I don´t think I understood your suggestion but I changed the table name of my MySQL database to mods and I am still getting the same error. Could you give me an example how to use the reserve quotes. I guess they should be used like this: put "INSERT INTO `mods` (Mod Name,Upload Date) VALUES ('toto'...