Hi All
I need to do the cookie thing when Screen1 initiates
Question is
How do I read back the value (ip) stored in the cookie later in the app?*
I know it works
Thanks
t
Hi All
I need to do the cookie thing when Screen1 initiates
Question is
How do I read back the value (ip) stored in the cookie later in the app?*
I know it works
Thanks
t
If you have use webviewer and set cookie then use document.cookie;
in evaluate JS to get cookie.
like this??
Use evaluate javascript
Thanks
If I use this, how do I get the value out?
ah, of course. How stupid can one be.
Thanks
So, would this make sense to you
I create the cookie with a php file???
<?phpwill this hekp identify the cookie?
LOOKS A IF IT WORKED???
just use document.cookie to get cookies
Thanks
I was thinking if there were many cookies how would it know which one?
I read it returns all the cookie values in an array of sorts???
am I wrong?
if I wanted to use the blocks to create instead of php
what would the URL be???
Can you clearly explain what do you want to do ?
Ok, so Im trying to negate the neccecity fo someone to log in depending on the value in the cookie
So I create the cookie the first Login
and thereafter
Whenever the login screen pops up, it reads the value of the cookie and if the value is there, it auto goes to another screen
BTW
Thanks
I removed the extra stuff after the document.cookie but Im getting a null
As you asked earlier, document.cookie
returns all the cookies but not in an array format. it returns by separating cookies using ;
Example- cookie1=value; cookie2=value; cookie3=value;
You can easily split them using
will it work in Companion???
might that be the problem